/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a2f4a 100%);
    color: #ffffff;
    min-height: 100vh;
}

/* Top Header */
.top-header {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 8px 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 32px;
}

.date {
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 6px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon.discord { background: #5865f2; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.youtube { background: #ff0000; }
.social-icon.reddit { background: #ff4500; }
.social-icon.steam { background: #1b2838; }

/* Logo Section */
.logo-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 20px 0;
    position: relative;
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo i {
    color: #6366f1;
    font-size: 52px;
}

.logo-subtitle {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
}

.banner-ad {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.banner-ad::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: skewX(-15deg);
}

.banner-ad i {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

.ad-subtitle {
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    right: 20px;
    opacity: 0.8;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-item a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
}

.badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
}

.badge.hot { background: #ff5722; }
.badge.new { background: #4caf50; }
.badge.live { background: #f44336; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-icon, .theme-toggle {
    color: white;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-icon:hover, .theme-toggle:hover {
    background: rgba(255,255,255,0.3);
}

.watch-video-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.watch-video-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Breaking News Ticker */
.breaking-news {
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.breaking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.breaking-label {
    background: rgba(0,0,0,0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-ticker {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
}

.ticker-item {
    margin-right: 50px;
    color: white;
    font-size: 14px;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Enhanced Banner Carousel Section */
.enhanced-banner-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 3rem 0 2rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.enhanced-banner-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.enhanced-banner-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="%23ffffff05" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.banner-slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

.banner-slide.prev {
    transform: translateX(-100%);
}

.banner-slide.next {
    transform: translateX(100%);
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-main {
    padding: 2rem 0;
}

/* Banner Badge Variants */
.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-badge.pvp {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: #fff;
}

.banner-badge.guild {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: #fff;
}

.banner-badge.expansion {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    color: #1a1a2e;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(102, 204, 255, 0.2);
    border-color: #66ccff;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: #66ccff;
    box-shadow: 0 0 10px rgba(102, 204, 255, 0.5);
}

.indicator:hover {
    background: rgba(102, 204, 255, 0.7);
    transform: scale(1.2);
}

/* Auto-play indicator animation */
.indicator.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #66ccff;
    border-radius: 50%;
    opacity: 0;
    animation: indicatorPulse 5s infinite;
}

@keyframes indicatorPulse {
    0%, 20% { 
        opacity: 0;
        transform: scale(1);
    }
    21%, 79% { 
        opacity: 1;
        transform: scale(1.5);
    }
    80%, 100% { 
        opacity: 0;
        transform: scale(1);
    }
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #66ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-banner-primary, .btn-banner-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-banner-primary {
    background: linear-gradient(45deg, #66ccff, #4da6d9);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 204, 255, 0.3);
}

.btn-banner-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 204, 255, 0.4);
}

.btn-banner-secondary {
    background: transparent;
    color: #66ccff;
    border: 2px solid #66ccff;
}

.btn-banner-secondary:hover {
    background: #66ccff;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.banner-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.banner-video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-video-container img {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-video-container:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #66ccff, #4da6d9);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #66ccff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.banner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.banner-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-stat .stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #66ccff;
    margin-bottom: 0.5rem;
}

.banner-stat .stat-label {
    font-size: 0.9rem;
    color: #b8c5d6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.news-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title-main {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-main i {
    color: #66ccff;
    font-size: 1.6rem;
}

.view-all-btn {
    color: #66ccff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: #fff;
}

/* Featured Videos Section */
.featured-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-featured-video {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.main-featured-video:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.video-container {
    position: relative;
    overflow: hidden;
}

.video-container img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #66ccff, #4da6d9);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 204, 255, 0.4);
}

.video-container:hover .video-play-btn-large {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-info {
    padding: 1rem;
}

.video-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #888;
}

.video-views, .video-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Video Playlist */
.video-playlist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.playlist-item {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.playlist-thumbnail {
    position: relative;
    width: 120px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.playlist-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

.playlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.playlist-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.playlist-meta {
    color: #888;
    font-size: 0.8rem;
}

/* Sidebar Widgets */
.sidebar-widgets {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.widget {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border-bottom: 2px solid #66ccff;
    padding-bottom: 0.5rem;
}

/* Left Content */
.content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Content Tabs */
.content-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    align-items: center;
}

.tab {
    color: #888;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tab:hover {
    background: rgba(255,255,255,0.05);
}

.tab.active {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ec4899;
}

.main-news-title {
    margin-left: auto;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Articles List */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.article-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

.article-badge.live { background: #f44336; }
.article-badge.hot { background: #ff5722; }
.article-badge.trending { background: #9c27b0; }

.article-content h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.article-meta {
    color: #888;
    font-size: 12px;
    display: flex;
    gap: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Featured Article */
.featured-article {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.featured-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ec4899;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #db2777;
}

.featured-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.featured-badge {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.featured-content {
    padding: 25px;
}

.article-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.featured-title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    margin-bottom: 15px;
}

.featured-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.featured-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-actions {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: #6366f1;
    color: white;
}

.btn-primary:hover {
    background: #5856eb;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Trending Section */
.trending-section {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.trending-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trending-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease;
}

.control-btn:hover {
    background: rgba(255,255,255,0.2);
}

.trending-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.trending-item:hover {
    background: rgba(255,255,255,0.05);
}

.trending-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.trending-thumbnail {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.trending-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content h4 {
    font-size: 14px;
    color: white;
    line-height: 1.3;
    margin-bottom: 5px;
}

.trending-meta {
    color: #888;
    font-size: 12px;
    display: flex;
    gap: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
}

.players {
    color: #10b981;
}

/* Stats Section */
.stats-section {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
}

.stats-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stats-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #6366f1;
    margin-bottom: 5px;
}

.stat-label {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
}

/* Featured Games Section */
.featured-games {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.section-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.featured-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.featured-card-image {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-card:hover .card-overlay {
    opacity: 1;
}

.play-card-btn {
    width: 50px;
    height: 50px;
    background: #ec4899;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-card-btn:hover {
    transform: scale(1.1);
}

.featured-card-content {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-card-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background: #1a1f3a;
    border-radius: 12px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-header h3 {
    color: white;
    font-size: 18px;
}

.close-search {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-box input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 16px;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 14px;
}

.search-box input::placeholder {
    color: #888;
}

.search-submit {
    background: #6366f1;
    border: none;
    color: white;
    padding: 12px 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.suggestion-category h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}

.suggestion-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.suggestion-tag:hover {
    background: rgba(255,255,255,0.2);
}

/* Game List Page Styles */
.breadcrumb {
    background: rgba(255,255,255,0.05);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: #6366f1;
}

.breadcrumb .separator {
    color: #666;
    font-size: 12px;
}

.breadcrumb .current {
    color: white;
    font-weight: 500;
}

.games-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.filters-section {
    margin-bottom: 40px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-title {
    color: white;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-count {
    color: #888;
    font-size: 14px;
}

.count, .total {
    color: #6366f1;
    font-weight: bold;
}

.filters-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-select, .search-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.filter-select:focus, .search-input:focus {
    border-color: #6366f1;
    background: rgba(255,255,255,0.15);
}

.filter-select option {
    background: #1a1f3a;
    color: white;
}

.search-input::placeholder {
    color: #888;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-btn:hover, .view-btn.active {
    background: #6366f1;
    border-color: #6366f1;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.game-status.live { background: #10b981; }
.game-status.beta { background: #f59e0b; }
.game-status.alpha { background: #ef4444; }
.game-status.upcoming { background: #6366f1; }

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-overlay-btn {
    width: 60px;
    height: 60px;
    background: #6366f1;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-overlay-btn:hover {
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.game-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-weight: 600;
}

.game-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.game-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.game-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #888;
    font-size: 12px;
}

.stat i {
    color: #6366f1;
}

.game-actions {
    display: flex;
    gap: 10px;
}

.game-actions .btn-primary,
.game-actions .btn-secondary {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #6366f1;
    border-color: #6366f1;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-number:hover, .page-number.active {
    background: #6366f1;
    border-color: #6366f1;
}

.pagination-dots {
    color: #666;
    padding: 0 10px;
}

/* Game Detail Page Styles */
.game-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.game-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.game-hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.game-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-hero-image:hover .hero-overlay {
    opacity: 1;
}

.hero-play-btn {
    width: 80px;
    height: 80px;
    background: #6366f1;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-play-btn:hover {
    transform: scale(1.1);
}

.hero-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.hero-badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-badge.live { background: #10b981; }
.hero-badge.featured { background: #6366f1; }

.game-hero-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.game-main-title {
    font-size: 42px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.game-subtitle {
    font-size: 18px;
    color: #888;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

.rating-number {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.rating-count {
    color: #888;
    font-size: 14px;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.rating-bar span:first-child {
    width: 25px;
    color: #888;
}

.rating-bar span:last-child {
    width: 30px;
    color: #888;
    text-align: right;
}

.bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.game-tags .tag.large {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

.game-description {
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
}

.game-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-card i {
    color: #6366f1;
    font-size: 24px;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.game-actions-section {
    display: flex;
    gap: 15px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-large.btn-primary {
    background: #6366f1;
    color: white;
}

.btn-large.btn-primary:hover {
    background: #5856eb;
    transform: translateY(-2px);
}

.btn-large.btn-secondary {
    background: #10b981;
    color: white;
}

.btn-large.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-large.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-large.btn-outline:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.game-content {
    margin-top: 50px;
}

.content-tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.content-tab {
    background: none;
    border: none;
    color: #888;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.content-tab:hover {
    color: #ccc;
}

.content-tab.active {
    color: #6366f1;
}

.content-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #6366f1;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.overview-main h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.overview-main h4 {
    color: white;
    font-size: 18px;
    margin: 30px 0 15px 0;
}

.overview-main p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    margin-bottom: 10px;
}

.feature-list i {
    color: #10b981;
    font-size: 14px;
}

.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
}

.info-card h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 14px;
}

.info-row span:first-child {
    color: #888;
}

.price-option {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
}

.price-option.popular {
    border: 2px solid #6366f1;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.plan {
    color: #888;
    font-size: 14px;
}

.savings {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.screenshot-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: scale(1.05);
}

.screenshot-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.system-requirements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.requirement-section h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.requirements-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.req-item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 15px;
    color: #ccc;
}

.req-item strong {
    color: white;
    margin-right: 10px;
}

.reviews-section {
    max-width: 800px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.reviews-header h3 {
    color: white;
    font-size: 24px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.review-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.reviewer-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.review-date {
    color: #888;
    font-size: 12px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f59e0b;
}

.review-content h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.review-content p {
    color: #ccc;
    line-height: 1.6;
}

.review-actions {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.review-action {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.review-action:hover {
    color: #6366f1;
}

.load-more-reviews {
    text-align: center;
}

.news-section h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
}

.news-image {
    flex-shrink: 0;
}

.news-image img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.news-content h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
}

.news-content p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 12px;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Screenshot Modal */
.screenshot-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.screenshot-modal.active {
    opacity: 1;
    visibility: visible;
}

.screenshot-modal .modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.screenshot-modal img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(0,0,0,0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
    pointer-events: auto;
}

.modal-nav-btn:hover {
    background: rgba(0,0,0,0.9);
}

#prevScreenshot {
    margin-left: -60px;
}

#nextScreenshot {
    margin-right: -60px;
}

/* Events Section */
.events-section {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px;
}

.events-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.events-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    transition: background 0.3s ease;
}

.event-item:hover {
    background: rgba(255,255,255,0.1);
}

.event-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.event-status.live {
    background: #10b981;
    animation: pulse 2s infinite;
}

.event-status.upcoming {
    background: #6366f1;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.event-content h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 4px;
}

.event-meta {
    color: #888;
    font-size: 12px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Suggestion Links */
.suggestion-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suggestion-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    font-size: 14px;
}

.suggestion-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateX(5px);
}

.suggestion-link i {
    color: #6366f1;
    width: 16px;
}

/* Keyboard Hints Modal */
.keyboard-hints-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hints-content {
    background: #1a1f3a;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 400px;
}

.hints-content h3 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.hint-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
}

.hint-item kbd {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    color: white;
    font-family: monospace;
}

.hints-content button {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Enhanced Article Interaction */
.article-item {
    cursor: pointer;
    user-select: none;
}

.article-item:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-section {
        order: -1;
    }

    .banner-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-playlist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .system-requirements {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filters-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .view-toggle {
        grid-column: span 2;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .banner-ad {
        min-width: auto;
        width: 100%;
    }

    .enhanced-banner-section {
        padding: 2rem 0 1.5rem 0;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-banner-primary, .btn-banner-secondary {
        justify-content: center;
    }

    .banner-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .banner-stat {
        padding: 0.8rem;
    }

    .banner-stat .stat-value {
        font-size: 1.4rem;
    }

    .carousel-controls {
        gap: 1rem;
        margin-top: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .carousel-indicators {
        gap: 0.6rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .video-playlist {
        grid-template-columns: 1fr;
    }

    .playlist-item {
        flex-direction: column;
        gap: 0.8rem;
    }

    .playlist-thumbnail {
        width: 100%;
        height: 180px;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }

    .section-title-main {
        font-size: 1.4rem;
    }
    
    .main-news-title {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
    
    .featured-actions {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 6px 0;
    }
    
    .header-content,
    .logo-container,
    .nav-container {
        padding: 0 15px;
    }
    
    .header-content {
        min-height: 28px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .social-icons {
        gap: 4px;
    }
    
    .date {
        font-size: 12px;
    }
    
    .main-content {
        padding: 20px 15px;
    }

    .enhanced-banner-section {
        padding: 1.5rem 0 1rem 0;
    }
    
    .enhanced-banner-section .container {
        padding: 0 15px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 0.9rem;
    }

    .btn-banner-primary, .btn-banner-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .carousel-controls {
        gap: 0.6rem;
        margin-top: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .carousel-indicators {
        gap: 0.5rem;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .section-title-main {
        font-size: 1.2rem;
    }

    .main-featured-video {
        padding-bottom: 0.5rem;
    }

    .video-info {
        padding: 0.8rem;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-meta {
        font-size: 0.7rem;
    }

    .playlist-item {
        padding: 0.6rem;
    }

    .playlist-title {
        font-size: 0.8rem;
    }

    .playlist-meta {
        font-size: 0.7rem;
    }

    .sidebar-widgets {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .widget {
        padding: 1rem;
    }

    .widget h3 {
        font-size: 0.9rem;
    }
    
    .featured-games {
        padding: 0 15px 30px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 36px;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .article-item {
        padding: 12px;
    }
    
    .trending-section,
    .stats-section {
        padding: 20px;
    }
} 