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

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111111;
    padding: 15px 50px;
    border-bottom: 2px solid #6c3c9c;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c084fc;
}

.search-icon {
    font-size: 20px;
    cursor: pointer;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #c084fc;
}
.hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 50%, #0d0d0d 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid #6c3c9c;
}

.hero-overlay {
    max-width: 800px;
    padding: 40px 20px;
}

.hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h1 span {
    color: #c084fc;
}

.hero p {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #c084fc;
    color: #0a0a0a;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #a855f7;
}

.btn-secondary {
    background: transparent;
    color: #c084fc;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #c084fc;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #c084fc;
    color: #0a0a0a;
}
.section-title {
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    margin-top: 60px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #888888;
    font-size: 16px;
    margin-bottom: 40px;
}
.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 50px 40px 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.game-card {
    background: #151515;
    border-radius: 10px;
    overflow: hidden;
    width: 340px;
    border: 1px solid #252525;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: #c084fc;
    box-shadow: 0 10px 30px rgba(192, 132, 252, 0.15);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 20px;
}

.tag {
    display: inline-block;
    background: #252525;
    color: #c084fc;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tag.winner {
    background: #3d1e0a;
    color: #f59e0b;
}

.card-info h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-info p {
    font-size: 14px;
    color: #999999;
    margin-bottom: 15px;
}

.card-link {
    text-decoration: none;
    color: #c084fc;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #ffffff;
}
.why-us {
    background: #0f0f0f;
    padding: 40px 50px 60px 50px;
    border-top: 1px solid #1f1f1f;
    margin-top: 20px;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    max-width: 280px;
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #888888;
}
footer {
    background: #0a0a0a;
    border-top: 2px solid #6c3c9c;
    padding: 30px 50px;
    text-align: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

footer p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    text-decoration: none;
    color: #888888;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c084fc;
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .cards-container {
        padding: 0 20px 30px 20px;
    }

    .game-card {
        width: 100%;
        max-width: 400px;
    }

    .features-grid {
        gap: 25px;
    }
}
/* ========== PAGE HERO (Reviews, Guides, News, Community) ========== */
.page-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 50%, #0d0d0d 100%);
    text-align: center;
    padding: 80px 20px 60px 20px;
    border-bottom: 2px solid #4a4a6a;
}

.page-hero h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 16px;
    color: #a0a0a0;
}

/* ========== REVIEWS PAGE ========== */
.review-list {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 30px;
}

.review-row {
    display: flex;
    gap: 30px;
    background: #151515;
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
}

.review-row:hover {
    border-color: #c084fc;
}

.review-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    background: #0a0a0a;
    border-radius: 6px;
    padding: 10px;
}

.review-content {
    flex: 1;
}

.review-score {
    display: inline-block;
    background: #c084fc;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 18px;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.review-content h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 4px;
}

.review-meta {
    font-size: 13px;
    color: #777777;
    margin-bottom: 12px;
}

.review-content p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-verdict {
    background: #1a1a1a;
    border-left: 4px solid #c084fc;
    padding: 10px 15px;
    color: #c084fc;
    font-weight: 600;
    font-size: 14px;
}

/* ========== GUIDES PAGE ========== */
.guides-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 30px;
}

.guide-card {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 25px;
    width: 320px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.guide-card:hover {
    border-color: #c084fc;
    transform: translateY(-5px);
}

.guide-img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    background: #0a0a0a;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 15px;
}

.guide-card h3 {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 10px;
}

.guide-card p {
    font-size: 14px;
    color: #999999;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ========== NEWS PAGE ========== */
.news-list {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 30px;
}

.news-item {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.news-item:hover {
    border-color: #c084fc;
}

.news-date {
    font-size: 13px;
    color: #777777;
    margin-right: 15px;
}

.news-category {
    display: inline-block;
    background: #252525;
    color: #c084fc;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-item h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 12px 0 10px 0;
}

.news-item p {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ========== COMMUNITY PAGE ========== */
.community-layout {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 30px;
}

.forum-categories h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.forum-card {
    background: #151515;
    border: 1px solid #252525;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

.forum-card:hover {
    border-color: #c084fc;
}

.forum-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 4px;
}

.forum-card p {
    font-size: 14px;
    color: #999999;
    margin-bottom: 6px;
}

.forum-stats {
    font-size: 12px;
    color: #666666;
}

.cta-box {
    background: linear-gradient(135deg, #1a0a2e, #151515);
    border: 2px solid #c084fc;
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    margin-top: 30px;
}

.cta-box h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.cta-login {
    font-size: 13px !important;
    margin-top: 15px !important;
    color: #888888 !important;
}

.cta-login a {
    color: #c084fc;
    text-decoration: none;
}

.cta-login a:hover {
    text-decoration: underline;
}

/* ========== ACTIVE NAV LINK ========== */
.nav-links a.active {
    color: #c084fc;
    border-bottom: 2px solid #c084fc;
    padding-bottom: 3px;
}
/* ========== SEARCH BAR ========== */
.search-bar-container {
    max-width: 1000px;
    margin: 30px auto 0 auto;
    padding: 0 30px;
}

.search-bar {
    width: 100%;
    padding: 14px 20px;
    background: #151515;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-bar:focus {
    border-color: #c084fc;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.2);
}

.search-bar::placeholder {
    color: #666666;
}

/* ========== LIGHT MODE ========== */
body.light-mode {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

body.light-mode .navbar {
    background-color: #ffffff;
    border-bottom: 2px solid #6c3c9c;
}

body.light-mode .logo,
body.light-mode .nav-links a {
    color: #1a1a1a;
}

body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active {
    color: #7c3aed;
}

body.light-mode .hero,
body.light-mode .page-hero {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 50%, #ede9fe 100%);
    border-bottom: 2px solid #c4b5fd;
}

body.light-mode .hero h1,
body.light-mode .page-hero h1 {
    color: #1a1a1a;
}

body.light-mode .hero h1 span {
    color: #7c3aed;
}

body.light-mode .hero p,
body.light-mode .page-hero p {
    color: #555555;
}

body.light-mode .game-card,
body.light-mode .review-row,
body.light-mode .guide-card,
body.light-mode .news-item,
body.light-mode .forum-card,
body.light-mode .search-bar,
body.light-mode .cta-box {
    background: #ffffff;
    border-color: #d4d4d8;
}

body.light-mode .game-card:hover,
body.light-mode .review-row:hover,
body.light-mode .guide-card:hover,
body.light-mode .news-item:hover,
body.light-mode .forum-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

body.light-mode .card-info h3,
body.light-mode .review-content h3,
body.light-mode .guide-card h3,
body.light-mode .news-item h3,
body.light-mode .forum-card h3,
body.light-mode .section-title,
body.light-mode .cta-box h2,
body.light-mode .forum-categories h2 {
    color: #1a1a1a;
}

body.light-mode .card-info p,
body.light-mode .review-content p,
body.light-mode .guide-card p,
body.light-mode .news-item p,
body.light-mode .forum-card p,
body.light-mode .cta-box p {
    color: #555555;
}

body.light-mode .tag {
    background: #f4f4f5;
    color: #7c3aed;
}

body.light-mode .tag.winner {
    background: #fef3c7;
    color: #b45309;
}

body.light-mode .review-verdict {
    background: #f4f4f5;
    border-left-color: #7c3aed;
    color: #7c3aed;
}

body.light-mode .review-meta,
body.light-mode .news-date,
body.light-mode .forum-stats {
    color: #888888;
}

body.light-mode .review-img,
body.light-mode .guide-img {
    background: #f4f4f5;
}

body.light-mode footer {
    background: #ffffff;
    border-top: 2px solid #c4b5fd;
}

body.light-mode footer p,
body.light-mode .footer-links a {
    color: #666666;
}

body.light-mode .search-bar {
    background: #ffffff;
    border-color: #d4d4d8;
    color: #1a1a1a;
}

body.light-mode .search-bar::placeholder {
    color: #999999;
}

body.light-mode .btn-primary {
    background: #7c3aed;
    color: #ffffff;
}

body.light-mode .btn-primary:hover {
    background: #6d28d9;
}

body.light-mode .btn-secondary {
    border-color: #7c3aed;
    color: #7c3aed;
}

body.light-mode .btn-secondary:hover {
    background: #7c3aed;
    color: #ffffff;
}

/* ========== ANIMACIONES ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}