/* Game Pages Specific Styles */

/* Game Hero Sections */
.game-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.lineage2-bg {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 50%, #6c3483 100%);
}

.cs2-bg {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%);
}

.cod-bg {
    background: linear-gradient(135deg, #27ae60 0%, #229954 50%, #1e8449 100%);
}

.battlefield-bg {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #1f618d 100%);
}

.game-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
}

.game-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 0;
}

.game-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.game-badge.cs2 {
    border-color: rgba(243, 156, 18, 0.5);
}

.game-badge.cod {
    border-color: rgba(39, 174, 96, 0.5);
}

.game-badge.battlefield {
    border-color: rgba(52, 152, 219, 0.5);
}

.game-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.game-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.game-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.game-meta span {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.game-meta i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Game Info Section */
.game-info-section {
    padding: 4rem 0;
    background: var(--darker-bg);
}

.game-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.info-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-main h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-light);
}

.info-main p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--success-green);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Server Grid */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.server-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.server-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.server-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.server-card p {
    color: var(--text-gray);
    margin: 0.4rem 0;
    font-size: 0.95rem;
}

/* Sidebar */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row span {
    color: var(--text-gray);
}

.stat-row strong {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Clan/Player List */
.clan-list {
    list-style: none;
    counter-reset: clan-counter;
}

.clan-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    position: relative;
    padding-left: 3rem;
}

.clan-list li::before {
    counter-increment: clan-counter;
    content: counter(clan-counter);
    position: absolute;
    left: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.clan-name {
    color: var(--text-light);
}

.clan-score {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Event Mini Cards */
.event-mini {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    border-left: 3px solid var(--primary-color);
}

.event-mini:last-child {
    margin-bottom: 0;
}

.event-mini strong {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.event-mini p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Guides Section */
.guides-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.guide-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.guide-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.guide-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.guide-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guide-link:hover {
    color: var(--text-light);
}

.guide-link i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    display: inline;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.guide-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .game-info-grid {
        grid-template-columns: 1fr;
    }

    .game-hero h1 {
        font-size: 2.5rem;
    }

    .game-tagline {
        font-size: 1.2rem;
    }

    .game-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .game-badge {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .server-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .game-hero h1 {
        font-size: 2rem;
    }

    .info-main h2 {
        font-size: 2rem;
    }

    .info-main h3 {
        font-size: 1.5rem;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }
}