:root {
    --primary: #00ff88;
    --primary-dark: #00cc6d;
    --secondary: #ff0077;
    --accent: #00d4ff;
    --dark-bg: #0a0e1a;
    --darker-bg: #050810;
    --card-bg: #141824;
    --border: #1f2937;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --success: #10b981;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

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

/* Stock Ticker */
.stock-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border);
    z-index: 1001;
    height: 40px;
    overflow: hidden;
}

.ticker-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

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

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2rem;
    border-right: 1px solid var(--border);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.ticker-symbol {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ticker-price {
    color: var(--text);
}

.ticker-change {
    font-weight: 700;
}

.ticker-change.positive {
    color: var(--success);
}

.ticker-change.positive::before {
    content: '▲ ';
}

.ticker-change.negative {
    color: var(--secondary);
}

.ticker-change.negative::before {
    content: '▼ ';
}

/* Player Count Ticker */
.player-count-ticker {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: 45px;
    overflow: hidden;
}

.player-ticker-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.player-ticker-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: playerTickerScroll 40s linear infinite;
    white-space: nowrap;
}

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

.player-ticker-track:hover {
    animation-play-state: paused;
}

.player-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.5rem;
    border-right: 1px solid var(--border);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.player-rank {
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
}

.player-game {
    color: var(--text);
    font-weight: 700;
}

.player-count {
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.player-trend {
    font-weight: 700;
    font-size: 0.85rem;
}

.player-trend.positive {
    color: var(--success);
}

.player-trend.negative {
    color: var(--secondary);
}

/* Navigation */
.nav {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 2rem;
}

/* Search Container - Compact and Right-aligned */
.search-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.search-input {
    width: 180px;
    padding: 0.5rem 0.75rem;
    background: var(--darker-bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.1);
    width: 220px;
}

.search-input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.search-button {
    padding: 0.5rem 0.75rem;
    background: var(--primary);
    border: none;
    color: var(--darker-bg);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.search-icon {
    display: block;
    line-height: 1;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

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

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Subscribe Button in Nav */
.btn-subscribe-nav {
    background: var(--primary);
    color: var(--darker-bg);
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.2);
}

.btn-subscribe-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.nav-toggle {
    position: absolute;
    top: 20px;
    right: 2rem;
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 35vh;
    min-height: 280px;
    margin-top: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 119, 0.1) 100%),
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 119, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--dark-bg) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 1rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 0.75rem;
    color: var(--text);
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    box-shadow: none;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-size: 0.8rem;
    padding: 0.6rem 1.25rem;
}

.btn-primary:hover {
    background: rgba(0, 255, 136, 0.05);
    color: var(--primary);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: none;
    transform: translateY(-1px);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--darker-bg);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: var(--primary);
}

.section-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.section-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }

.news-card-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-card:not(.news-card-large) .news-image {
    height: 200px;
}

.news-card-large .news-image {
    height: 100%;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image-placeholder {
    transform: scale(1.05);
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.3;
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--darker-bg);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--primary);
}

.news-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.review-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.review-image {
    position: relative;
    height: 250px;
}

.review-score {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.review-content {
    padding: 1.5rem;
}

.review-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-verdict {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.review-genre {
    color: var(--primary);
}

/* Guides Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.guide-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.guide-card:nth-child(1) { animation-delay: 0.1s; }
.guide-card:nth-child(2) { animation-delay: 0.2s; }
.guide-card:nth-child(3) { animation-delay: 0.3s; }
.guide-card:nth-child(4) { animation-delay: 0.4s; }

.guide-card:hover {
    background: var(--darker-bg);
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.guide-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.guide-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guide-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.guide-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.guide-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 60px;
    width: auto;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Article Page Specific */
.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    padding-top: 2rem;
}

.article-category {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.article-hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

/* Page Header */
.page-header {
    margin-top: 215px;
    padding: 4rem 0;
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* RSS Feeds */
.rss-feeds-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.rss-feed-column {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.rss-feed-header {
    background: var(--darker-bg);
    padding: 1.5rem;
    border-bottom: 2px solid var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rss-feed-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.rss-feed-badge {
    background: var(--primary);
    color: var(--darker-bg);
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rss-feed-items {
    padding: 0;
}

.rss-loading {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

.rss-feed-error {
    padding: 2rem;
    text-align: center;
    color: var(--secondary);
    font-size: 0.9rem;
}

.rss-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
    cursor: pointer;
}

.rss-item:last-child {
    border-bottom: none;
}

.rss-item:hover {
    background: var(--darker-bg);
}

.rss-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.rss-item:hover .rss-item-title {
    color: var(--primary);
}

.rss-item-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rss-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rss-item-date {
    font-weight: 600;
}

.rss-item-source {
    color: var(--primary);
    font-weight: 600;
}

.rss-loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

.rss-feed-error {
    text-align: center;
    padding: 2rem;
    color: var(--secondary);
    font-style: italic;
    border: 1px dashed var(--border);
    background: rgba(255, 0, 119, 0.05);
}

/* Newsletter Subscription Section */
.newsletter-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-content {
    padding-right: 2rem;
}

.newsletter-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.newsletter-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border-left: 3px solid var(--primary);
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.newsletter-form-wrapper {
    background: var(--card-bg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    background: var(--darker-bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.btn-subscribe {
    background: var(--primary);
    color: var(--darker-bg);
    border: none;
    padding: 1.125rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-subscribe:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-subscribe .btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-subscribe:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

.subscription-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--darker-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.subscription-success h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.subscription-success p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Newsletter Subscription Section */
.subscription-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    padding: 3rem;
}

.subscription-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.subscription-title {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    font-weight: 900;
}

.subscription-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 1rem;
    background: var(--darker-bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.5;
}

.btn-subscribe {
    background: var(--primary);
    color: var(--darker-bg);
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-subscribe:hover {
    background: #00dd77;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-subscribe .btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-subscribe:hover .btn-icon {
    transform: translateX(5px);
}

.form-message {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 119, 0.1);
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

/* Responsive Design for Newsletter */
@media (max-width: 768px) {
    .subscription-container {
        padding: 2rem 1.5rem;
    }

    .subscription-title {
        font-size: 2rem;
    }

    .subscription-subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn-subscribe {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Card link wrapper */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover {
    text-decoration: none;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-mission {
    margin-bottom: 5rem;
}

.about-mission p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.founder-section {
    margin-bottom: 5rem;
}

.founder-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 3rem;
    margin-top: 2rem;
}

.founder-image-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.founder-icon {
    font-size: 4rem;
    opacity: 0.3;
}

.founder-info {
    text-align: center;
}

.founder-name {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.founder-bio {
    text-align: left;
    margin-top: 2rem;
}

.founder-bio p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.what-we-cover {
    margin-bottom: 5rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.coverage-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.coverage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coverage-item h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.coverage-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.our-values {
    margin-bottom: 5rem;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-cta {
    background: var(--darker-bg);
    border: 2px solid var(--primary);
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.contact-cta h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Streamers Page Styles */
.streamers-section {
    margin-bottom: 4rem;
}

.streamers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.platform-badge.twitch {
    background: rgba(145, 70, 255, 0.2);
    border: 1px solid rgb(145, 70, 255);
    color: rgb(145, 70, 255);
}

.platform-badge.youtube {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgb(255, 0, 0);
    color: rgb(255, 0, 0);
}

.platform-icon {
    font-size: 1.25rem;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.streamer-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.streamer-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.streamer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.streamer-initial {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.streamer-info {
    flex: 1;
}

.streamer-name {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.streamer-card:hover .streamer-name {
    color: var(--primary);
}

.streamer-game {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.streamer-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.streamer-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.streamer-card:hover .streamer-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-grid,
    .reviews-grid,
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card-large {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

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

    .rss-feeds-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stock-ticker {
        height: 35px;
    }

    .player-count-ticker {
        height: 40px;
        top: 35px;
    }

    .ticker-item {
        padding: 0 1.5rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .player-ticker-item {
        padding: 0 1.5rem;
        font-size: 0.85rem;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-icon {
        font-size: 1.75rem;
    }

    .logo-image {
        height: 70px;
    }

    .nav-container {
        height: 100px;
    }

    .nav {
        top: 75px;
        height: auto;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-container {
        height: 80px;
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .logo-image {
        height: 50px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .search-container {
        position: absolute;
        top: 15px;
        right: 60px;
    }

    .search-input {
        width: 120px;
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .search-input:focus {
        width: 150px;
    }

    .search-button {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .btn-subscribe-nav {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .hero {
        margin-top: 165px;
    }

    .page-header {
        margin-top: 165px;
    }

    .news-grid,
    .reviews-grid,
    .guides-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .news-card-large {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .guide-card {
        flex-direction: column;
        gap: 1rem;
    }

    .guide-number {
        font-size: 2rem;
    }

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

    .values-list {
        grid-template-columns: 1fr;
    }

    .streamers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .streamers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        height: 40vh;
        min-height: 250px;
    }

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

    .streamer-card {
        padding: 1.25rem;
    }

    .streamer-avatar {
        width: 60px;
        height: 60px;
    }

    .streamer-initial {
        font-size: 1.5rem;
    }
}
