/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(45deg, #0a0015, #1a0033, #330066, #0066cc, #00ccff, #ff00ff, #ffaa00);
    background-size: 600% 600%;
    animation: gradientShift 20s ease infinite;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Promo Gallery */
.promo-gallery {
  padding: 40px 0;
}
.promo-gallery h3 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}
.promo-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.promo-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ccff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ccff;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00ccff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ccff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    display: flex;
    align-items: center;
}

.btn-language {
    padding: 0.5rem 0.8rem;
    border: 2px solid #00ccff;
    background: rgba(0, 204, 255, 0.1);
    color: #00ccff;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-language:hover {
    background: rgba(0, 204, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 204, 255, 0.3);
}

.btn-language i {
    font-size: 1rem;
}

#currentLang {
    font-weight: bold;
    font-size: 0.8rem;
}

.btn-download-direct {
    padding: 0.5rem 1rem;
    border: 2px solid #ff00ff;
    background: linear-gradient(45deg, #ff00ff, #cc0099);
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download-direct:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* Lobby Code Section */
.lobby-code-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 204, 255, 0.3);
    text-align: center;
}

.lobby-code-section h3 {
    color: #00ccff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.code-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    justify-content: center;
    align-items: center;
}

#lobbyCodeInput {
    padding: 0.75rem 1rem;
    border: 2px solid #00ccff;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 200px;
    transition: all 0.3s ease;
}

#lobbyCodeInput:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.btn-code {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #00ccff, #0099cc, #0066ff);
    color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 204, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-code:hover::before {
    left: 100%;
}

.btn-code:hover {
    background: linear-gradient(135deg, #ff00ff, #cc0099, #ff0066);
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6), 0 0 20px rgba(255, 0, 255, 0.4);
}

.btn-code:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.code-hint {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Lobby Download Info - Same style as lobby-code-section */
.lobby-download-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 204, 255, 0.3);
    text-align: center;
}

.lobby-download-info h3 {
    color: #00ccff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.lobby-download-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    opacity: 0.8;
}

/* Lobby Download Modal */
.lobby-download-modal {
    max-width: 600px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 204, 255, 0.1));
    border: 2px solid #00ccff;
}

/* VIP Modal Styles */
.vip-modal {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(255, 215, 0, 0.15));
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.vip-crown {
    display: inline-block;
    animation: crownBounce 2s ease-in-out infinite, crownGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    position: relative;
}

.vip-crown::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 0.8rem;
    animation: sparkle1 2.5s ease-in-out infinite;
}

.vip-crown::after {
    content: '✨';
    position: absolute;
    top: -8px;
    right: -15px;
    font-size: 0.6rem;
    animation: sparkle2 2s ease-in-out infinite;
}

@keyframes crownBounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-2px) rotate(-2deg) scale(1.05); 
    }
    50% { 
        transform: translateY(-4px) rotate(0deg) scale(1.1); 
    }
    75% { 
        transform: translateY(-2px) rotate(2deg) scale(1.05); 
    }
}

@keyframes crownGlow {
    from {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)) hue-rotate(0deg);
    }
    to {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.9)) hue-rotate(30deg);
    }
}

@keyframes sparkle1 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px) scale(1);
    }
}

@keyframes sparkle2 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.3);
    }
    60% {
        opacity: 1;
        transform: translateY(-3px) scale(0.8);
    }
}

.vip-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
    border-left: 4px solid #ffd700;
}

.vip-code {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 140, 0, 0.2));
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.5);
}

.vip-warning {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.vip-warning h3 {
    color: #ffd700;
}

.vip-download {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border: 2px solid #ffd700;
    color: #000;
}

.vip-download:hover {
    background: linear-gradient(45deg, #ffed4e, #ffa500);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.lobby-info-display {
    background: rgba(0, 204, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #00ccff;
}

.lobby-info-display p {
    margin: 0.5rem 0;
    color: #ffffff;
}

.code-display {
    background: rgba(255, 0, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #ff00ff;
    letter-spacing: 1px;
}

.download-warning {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.download-warning h3 {
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.download-warning p {
    color: #cccccc;
    margin: 0;
}

.download-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.15), rgba(0, 153, 204, 0.1));
    border: 2px solid #00ccff;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 140px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 204, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.3), rgba(0, 153, 204, 0.2));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.5), 0 0 20px rgba(0, 204, 255, 0.3);
    border-color: #00ffff;
}

.download-btn:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.download-btn.pc {
    border-color: #0078d4;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.15), rgba(0, 102, 180, 0.1));
}

.download-btn.pc:hover {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.3), rgba(0, 102, 180, 0.2));
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.5), 0 0 20px rgba(0, 120, 212, 0.3);
    border-color: #40a9ff;
}



.download-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.download-btn span {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.download-btn small {
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: url('gD07VY.png') center / cover no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ccff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: #ff69b4;
    margin-top: 0.5rem;
    font-weight: 400;
}

@keyframes titleGlow {
    from { text-shadow: 0 0 20px #00ccff; }
    to { text-shadow: 0 0 30px #ff00ff, 0 0 40px #ffff00; }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ccff, #0099cc, #0066ff);
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 204, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 204, 255, 0.7), 0 0 30px rgba(0, 204, 255, 0.5);
    background: linear-gradient(135deg, #00ffff, #00ccff, #0099ff);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: linear-gradient(135deg, #ff00ff, #cc0099, #ff0066);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 0, 255, 0.7), 0 0 30px rgba(255, 0, 255, 0.5);
    background: linear-gradient(135deg, #ff44ff, #ff00ff, #ff0088);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

/* Canlı İstatistikler */
.live-stats {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff, #ff6b6b);
    border-radius: 12px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 0.3rem;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.stat-trend.positive {
    color: #4caf50;
}

.stat-trend.negative {
    color: #f44336;
}

.stat-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 2s infinite;
}

.stat-status.online {
    color: #4caf50;
}

.stat-status.offline {
    color: #f44336;
}

.stat-status.offline .status-dot {
    background: #f44336;
}

/* Sunucu Durumu Çubuğu */
.server-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.server-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.server-name {
    font-weight: 600;
    color: #00d4ff;
}

.ping {
    padding: 0.3rem 0.8rem;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.server-load {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.load-bar {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.load-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #ffeb3b, #ff9800);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.load-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.game-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ccff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.8);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 204, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #00ccff;
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.about-card i {
    font-size: 3rem;
    color: #00ccff;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Lobby Section */
.lobby-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.9);
}

.lobby-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.lobby-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.lobby-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #00ccff;
}

.feature i {
    color: #00ccff;
    font-size: 1.5rem;
}

.lobby-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-lobby-join, .btn-lobby-spectate {
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-lobby-join {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

.btn-lobby-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.6);
}

.btn-lobby-spectate {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #00ccff;
}

.btn-lobby-spectate:hover {
    background: rgba(0, 204, 255, 0.2);
    transform: translateY(-3px);
}

/* Chat Preview */
.lobby-preview {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.lobby-preview h3 {
    color: #00ccff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.chat-preview {
    max-height: 200px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.username {
    color: #00ccff;
    font-weight: 600;
    margin-right: 0.5rem;
}

.message {
    color: #cccccc;
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.8);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 204, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-card:hover {
    transform: translateY(-10px);
    border-color: #00ccff;
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.download-card i {
    font-size: 4rem;
    color: #00ccff;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.download-card p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.btn-download {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff00ff, #cc0099);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6);
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 3rem 0 1rem;
    border-top: 2px solid #00ccff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #00ccff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ccff;
}

.random-lobbies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lobby-item {
    background: rgba(0, 204, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #00ccff;
    color: #cccccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lobby-item:hover {
    background: rgba(0, 204, 255, 0.2);
    transform: translateX(5px);
    color: #ffffff;
}

/* VIP Lobby Styles */
.vip-lobby {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.15), rgba(255, 69, 0, 0.1));
    border-left: 4px solid #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: vipPulse 3s ease-in-out infinite;
    overflow: hidden;
}

.vip-lobby::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.8s;
}

.vip-lobby:hover::before {
    left: 100%;
}

.vip-lobby:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 140, 0, 0.25), rgba(255, 69, 0, 0.2));
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.8);
}

@keyframes vipPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.vip-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ffd700, #ff8c00, #ff6347);
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    animation: vipGlow 2s ease-in-out infinite alternate, vipBounce 1.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes vipGlow {
    from {
        box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
    }
    to {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

@keyframes vipBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.1);
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 51, 102, 0.9), rgba(0, 102, 204, 0.1));
    margin: 8% auto;
    padding: 2.5rem;
    border: 2px solid #00ccff;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative;
    animation: modalSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 204, 255, 0.3), 0 0 40px rgba(0, 204, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-80px) scale(0.8) rotateX(15deg);
        box-shadow: 0 0 0 rgba(0, 204, 255, 0);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        box-shadow: 0 20px 60px rgba(0, 204, 255, 0.3), 0 0 40px rgba(0, 204, 255, 0.1);
    }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
    to {
        opacity: 0;
        transform: translateY(-80px) scale(0.8) rotateX(-15deg);
    }
}

/* Enhanced Modal Animations */
@keyframes modalBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-100px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes modalFlipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(-90deg);
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

/* VIP Modal Special Animation */
.vip-modal .modal-content {
    animation: modalBounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Download Modal Animation */
.download-modal .modal-content {
    animation: modalZoomIn 0.5s ease-out;
}

/* Lobby Modal Animation */
.lobby-modal .modal-content {
    animation: modalFlipIn 0.7s ease-out;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #00ccff;
}

.modal h2 {
    color: #00ccff;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Orbitron', monospace;
}

.lobby-join-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lobby-join-form input,
.lobby-join-form select {
    padding: 1rem;
    border: 2px solid #00ccff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 1rem;
}

.lobby-join-form input:focus,
.lobby-join-form select:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.btn-confirm {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

/* Progress Bar */
.download-progress {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #ff6b6b, #00d4ff);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
    animation: progressShine 2s linear infinite;
}

.progress-text {
    text-align: center;
    color: #00ccff;
    font-weight: 700;
}

/* ===== OYUNCU LİSTESİ VE LOBBY DETAYLARI ===== */
.players-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 55, 0.95));
    position: relative;
    overflow: hidden;
}

.players-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    pointer-events: none;
}

.players-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.active-players h3,
.lobby-details h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.active-players h3 i {
    color: #ff6b9d;
}

.lobby-details h3 i {
    color: #00d4ff;
}

/* Oyuncu Listesi */
.players-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.player-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.player-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
}

.player-item:hover::before {
    left: 100%;
}

.player-avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.level-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid rgba(15, 15, 35, 1);
    min-width: 20px;
    text-align: center;
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.player-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.player-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.player-activity {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.activity-dot.online {
    background: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.activity-dot.away {
    background: #ff9800;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

/* Lobby Detayları */
.lobby-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lobby-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.lobby-item.featured {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.lobby-item.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    animation: shimmer 2s infinite;
}

.lobby-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.lobby-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.lobby-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.lobby-item.featured .lobby-icon {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
}

.lobby-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lobby-name {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.lobby-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.lobby-players {
    display: flex;
    align-items: center;
}

.player-count {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.lobby-item.featured .player-count {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
}

.lobby-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lobby-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.lobby-stats .stat i {
    color: #00d4ff;
    font-size: 0.9rem;
}

.lobby-item.featured .lobby-stats .stat i {
    color: #ffd700;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== HABERLER VE DUYURULAR ===== */
.news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(30, 30, 60, 0.95));
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsgrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsgrid)"/></svg>') repeat;
    pointer-events: none;
}

.news-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Ana Haberler */
.featured-news {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.featured-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: newsShine 3s infinite;
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff4757, #ff6b9d);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    animation: pulse 2s infinite;
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-overlay {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-overlay i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.news-content-text {
    position: relative;
    z-index: 2;
}

.news-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.featured-news h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.featured-news p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-tags .tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Haber Listesi */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
}

.news-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.news-info {
    flex: 1;
}

.news-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
}

.news-item h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.news-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.news-status {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    flex-shrink: 0;
}

.news-status.new {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.news-status.fixed {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.news-status.tournament {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.news-status.character {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

/* Yan Panel */
.side-news {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.patch-notes,
.events-calendar,
.community-stats {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.side-news h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.side-news h3 i {
    color: #00d4ff;
}

/* Patch Notları */
.patch-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.patch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid;
}

.patch-item.added {
    border-left-color: #4caf50;
}

.patch-item.improved {
    border-left-color: #2196f3;
}

.patch-item.fixed {
    border-left-color: #ff9800;
}

.patch-item.balanced {
    border-left-color: #9c27b0;
}

.patch-item i {
    width: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.patch-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Etkinlik Takvimi */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 212, 255, 0.3);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
    padding: 10px;
    border-radius: 10px;
    min-width: 50px;
}

.event-date .day {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 0.7rem;
    opacity: 0.9;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.event-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.event-status {
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.event-status.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.event-status.upcoming {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.event-status.special {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

/* Topluluk İstatistikleri */
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.community-stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-stat .stat-number {
    display: block;
    color: #00d4ff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.community-stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

@keyframes newsShine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

/* ===== CANLI AKTİVİTE VE SOHBET FEED'İ ===== */
.activity-feed-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(25, 25, 50, 0.95));
    position: relative;
}

.activity-feed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="activitygrid" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(0,212,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23activitygrid)"/></svg>') repeat;
    pointer-events: none;
}

.activity-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Sohbet Feed'i */
.chat-feed {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 157, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.chat-feed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: chatShine 4s infinite;
}

.chat-feed h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.chat-feed h3 i {
    color: #00d4ff;
}

.chat-container {
    position: relative;
    z-index: 2;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00d4ff, #ff6b9d);
    border-radius: 3px;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    animation: messageSlideIn 0.3s ease;
}

.chat-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff6b9d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.username {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.message-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.user-badge {
    background: linear-gradient(45deg, #ff6b9d, #ff4757);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
}

.user-badge.vip {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #000;
}

.user-badge.mod {
    background: linear-gradient(45deg, #4caf50, #45a049);
}

.message-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-size: 0.9rem;
}

.chat-input-area {
    position: relative;
    z-index: 2;
}

.fake-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.fake-input:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.fake-input i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.fake-input .placeholder {
    flex: 1;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Aktivite Sidebar */
.activity-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recent-activities,
.online-players,
.server-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.activity-sidebar h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-sidebar h3 i {
    color: #00d4ff;
}

/* Son Aktiviteler */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.activity-item.kill {
    border-left-color: #ff4757;
}

.activity-item.level {
    border-left-color: #ffd700;
}

.activity-item.achievement {
    border-left-color: #4caf50;
}

.activity-item.join {
    border-left-color: #00d4ff;
}

.activity-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff6b9d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.activity-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.3;
}

.activity-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

/* Online Oyuncular */
.online-count {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.online-count .count {
    display: block;
    color: #00d4ff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.online-count .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.player-avatars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.player-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff6b9d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.player-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.player-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4caf50;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Sunucu Bilgileri */
.server-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-right: 8px;
}

.stat-value {
    color: #00d4ff;
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: 8px;
}

.ping-value {
    color: #4caf50;
}

.ping-value.medium {
    color: #ffc107;
}

.ping-value.high {
    color: #ff4757;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chatShine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

/* Enhanced Responsive Design */
/* Tablet Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .random-lobbies {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .user-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .title-main {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .game-stats {
        gap: 1rem;
        flex-direction: column;
    }
    
    .lobby-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .download-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .lobby-code-section {
        padding: 1rem;
    }
    
    .code-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    #lobbyCodeInput {
        width: 100%;
        max-width: 250px;
    }
    
    .players-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lobby-stats {
        gap: 15px;
    }

    /* Haberler Responsive */
    .news-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .news-tags {
        justify-content: center;
    }

    .featured-news {
        padding: 20px;
    }

    .news-image {
        height: 150px;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .event-date {
        min-width: auto;
        width: 60px;
    }
}

/* Small Mobile Design */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .title-main {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        max-width: 250px;
    }
    
    .about-card {
        padding: 1.5rem 1rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: 400px;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .lobby-join-form input,
    .lobby-join-form select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-code {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .title-main {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 98%;
        padding: 1rem;
        margin: 5% auto;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ccff, #ff00ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff00ff, #00ccff);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Loading Animations */
@keyframes loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    border: 4px solid rgba(0, 204, 255, 0.3);
    border-top: 4px solid #00ccff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: loading 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Advanced Loading Spinner */
.spinner-advanced {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
}

.spinner-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #00d4ff;
    border-radius: 50%;
    animation: spinGlow 1.2s linear infinite;
}

.spinner-advanced::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 2px solid transparent;
    border-bottom: 2px solid #ff6b6b;
    border-radius: 50%;
    animation: spinGlow 0.8s linear infinite reverse;
}

@keyframes spinGlow {
    0% {
        transform: rotate(0deg);
        filter: drop-shadow(0 0 5px currentColor);
    }
    50% {
        filter: drop-shadow(0 0 15px currentColor);
    }
    100% {
        transform: rotate(360deg);
        filter: drop-shadow(0 0 5px currentColor);
    }
}

/* Pulse Loading */
.pulse-loader {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.pulse-loader span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    animation: pulseWave 1.4s ease-in-out infinite;
}

.pulse-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.pulse-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulseWave {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(56, 142, 60, 0.9));
    border-left: 4px solid #4caf50;
}

.notification.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9), rgba(211, 47, 47, 0.9));
    border-left: 4px solid #f44336;
}

.notification.warning {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.9), rgba(245, 124, 0, 0.9));
    border-left: 4px solid #ff9800;
}

.notification.info {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.9), rgba(25, 118, 210, 0.9));
    border-left: 4px solid #2196f3;
}

/* Enhanced Progress Bar */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

@keyframes progressShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Button Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ===== CANLI AKTİVİTE FEED'İ RESPONSİVE =====*/
@media (max-width: 768px) {
    .activity-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chat-feed {
        padding: 20px;
    }

    .chat-feed h3 {
        font-size: 1.1rem;
    }

    .chat-messages {
        height: 300px;
        padding: 15px;
    }

    .chat-message {
        gap: 10px;
    }

    .chat-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .username {
        font-size: 0.8rem;
    }

    .message-text {
        font-size: 0.8rem;
    }

    .activity-sidebar {
        gap: 20px;
    }

    .recent-activities,
    .online-players,
    .server-info {
        padding: 20px;
    }

    .activity-sidebar h3 {
        font-size: 1rem;
    }

    .activity-item {
        padding: 10px;
        gap: 10px;
    }

    .activity-icon {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }

    .activity-text {
        font-size: 0.8rem;
    }

    .online-count .count {
        font-size: 1.5rem;
    }

    .player-avatars {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }

    .player-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
    }

    .server-stat {
        padding: 8px 12px;
    }

    .stat-label,
    .stat-value {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .activity-feed-section {
        padding: 60px 0;
    }

    .chat-feed {
        padding: 15px;
    }

    .chat-messages {
        height: 250px;
        padding: 12px;
    }

    .recent-activities,
    .online-players,
    .server-info {
        padding: 15px;
    }

    .player-avatars {
        grid-template-columns: repeat(4, 1fr);
    }

    .player-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.6rem;
    }

    .fake-input {
        padding: 10px 15px;
        gap: 10px;
    }

    .fake-input .placeholder {
        font-size: 0.8rem;
    }
}

/* ===== OYUN MODLARI VE HARİTA ÖNİZLEMELERİ ===== */
.game-modes-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.game-modes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.modes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.game-modes h3,
.map-preview h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.game-modes h3::after,
.map-preview h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mode-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mode-card:hover::before {
    left: 100%;
}

.mode-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.mode-card.active {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.mode-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.mode-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mode-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mode-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.map-image {
    position: relative;
    height: 300px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e, #2c3e50);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="%23ff6b6b" opacity="0.6"/><circle cx="80" cy="20" r="1.5" fill="%234ecdc4" opacity="0.8"/><circle cx="60" cy="70" r="1" fill="%23ffd93d" opacity="0.7"/><circle cx="30" cy="80" r="1.2" fill="%236c5ce7" opacity="0.6"/></svg>');
    animation: mapStars 20s linear infinite;
}

@keyframes mapStars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.map-info {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.map-info h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.map-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.map-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.map-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.map-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 15px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.map-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.map-btn.active {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

/* Leaderboard ve Başarım Sistemi */
.leaderboard-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.leaderboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trophy" patternUnits="userSpaceOnUse" width="50" height="50"><text x="25" y="30" text-anchor="middle" fill="%23ffffff10" font-size="20">🏆</text></pattern></defs><rect width="100" height="100" fill="url(%23trophy)"/></svg>') repeat;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.leaderboard-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.leaderboard-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.tab-btn {
    padding: 4px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    white-space: nowrap;
    height: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: #ff69b4;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(45deg, #ff69b4, #00ccff);
    border-color: #ff69b4;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.leaderboard-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 60px 1fr 100px 100px;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 2px solid rgba(255, 105, 180, 0.3);
    font-weight: 600;
    color: #ff69b4;
    margin-bottom: 15px;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 60px 1fr 100px 100px;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 10px;
    margin-bottom: 5px;
}

.leaderboard-row:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

.rank-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.rank-badge.gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.rank-badge.silver {
    background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
    color: #000;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.rank-badge.bronze {
    background: linear-gradient(45deg, #cd7f32, #daa520);
    color: #fff;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

.rank-badge.default {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-avatar-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ff69b4;
}

.player-details h4 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.player-details p {
    margin: 0;
    color: #ccc;
    font-size: 12px;
}

.score-value {
    color: #00ccff;
    font-weight: bold;
    font-size: 16px;
}

.level-badge {
    background: linear-gradient(45deg, #ff69b4, #00ccff);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.achievements-section {
    margin-top: 30px;
}

.achievements-title {
    color: #ff69b4;
    margin-bottom: 20px;
    font-size: 24px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.achievement-card.unlocked {
    border-color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
}

.achievement-card.unlocked::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s ease-in-out infinite;
}

.achievement-icon {
    font-size: 40px;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.achievement-card.unlocked .achievement-icon {
    filter: grayscale(0%);
}

.achievement-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.achievement-description {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
}

.achievement-progress {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 6px;
    overflow: hidden;
}

.achievement-progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #ff69b4, #00ccff);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.player-stats-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ff69b4;
    overflow: hidden;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info h4 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 18px;
}

.player-rank, .player-level {
    margin: 0;
    color: #ccc;
    font-size: 14px;
}

.player-rank span, .player-level span {
    color: #ff69b4;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
    color: #ccc;
    font-size: 14px;
}

.stat-value {
    color: #00ccff;
    font-weight: bold;
    font-size: 16px;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design for Leaderboard */
@media (max-width: 768px) {
    .leaderboard-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leaderboard-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 50px 1fr 80px 80px;
        gap: 10px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .achievement-card {
        padding: 15px;
    }
    
    .achievement-icon {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .leaderboard-section {
        padding: 60px 0;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 40px 1fr 60px;
        gap: 8px;
    }
    
    .level-badge {
        display: none;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .player-stats-card {
        padding: 20px;
    }
    
    .stats-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}