/* Base Variables */
:root {
    --bg-primary: #0F212E;
    --bg-secondary: #1A2C38;
    --accent-color: #00FF00;
    --accent-hover: #1FFF7E;
    --text-primary: #FFFFFF;
    --text-secondary: #B1BAD3;
    --card-hover-bg: rgba(0, 0, 0, 0.5);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========== Unified Navigation Bar ========== */
.olympus-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.olympus-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.olympus-logo .logo-icon {
    color: #ff6b35;
}

.olympus-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.olympus-link {
    color: #ccc;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.olympus-link:hover {
    color: #ffd700;
}

.olympus-link.active {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: #fff;
    border: 1px solid #ffd700;
}

@media (max-width: 768px) {
    .olympus-nav {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .olympus-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .olympus-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* ========== End Navigation Bar ========== */


/* Header */
.main-header {
    background-color: var(--bg-primary);
    padding: 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.logo .highlight {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

/* Search Bar */
.search-container {
    position: relative;

    .search-container {
        position: relative;
        width: 300px;
    }
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    width: 20px;
    height: 20px;
}

#gameSearch {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background-color: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#gameSearch:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
}

#gameSearch::placeholder {
    color: var(--text-secondary);
}

/* Navigation */
.category-nav {
    background-color: rgba(15, 33, 46, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-links {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
    padding-bottom: 5px;
    /* Space for scrollbar if visible, or ensuring touch targets aren't cut off */
    scrollbar-width: none;
    /* Firefox: Hide scrollbar */
    -ms-overflow-style: none;
    /* IE/Edge: Hide scrollbar */
}

/* Chrome/Safari/Webkit: Hide scrollbar */
.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-item {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    /* Use pill shape as per mockup */
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    /* Prevent shrinking */
    white-space: nowrap;
    /* Prevent text wrapping */
}

.nav-item i {
    width: 16px;
    height: 16px;
}

.nav-item:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
    color: var(--bg-primary);
    background-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
    /* Slightly reduced gap for tighter packing */
}

/* Game Card */
.game-card {
    position: relative;
    aspect-ratio: 4/5;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #1a2c38;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

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

/* Card Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 33, 46, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 1rem;
}

.game-card:hover .card-overlay {
    opacity: 1;
}

.play-button {
    background: linear-gradient(to bottom, #4dff4d 0%, #00d200 100%);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: none;

    /* 3D & Glossy Effects */
    box-shadow:
        inset 0 4px 2px rgba(255, 255, 255, 0.8),
        /* Top Highlight (Glass) */
        inset 0 -4px 4px rgba(0, 70, 0, 0.6),
        /* Bottom Inner Shadow */
        0 6px 0 #009000,
        /* 3D Bevel/Depth */
        0 12px 15px rgba(0, 0, 0, 0.4);
    /* Drop Shadow */

    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateY(20px);
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    margin: 0 auto;
}

.game-card:hover .play-button {
    transform: translateY(0);
}

.play-button:hover {
    transform: translateY(3px);
    /* Press Check */
    box-shadow:
        inset 0 4px 2px rgba(255, 255, 255, 0.9),
        inset 0 -4px 4px rgba(0, 70, 0, 0.6),
        0 3px 0 #009000,
        /* Reduced Bevel */
        0 6px 10px rgba(0, 0, 0, 0.4);
    /* Reduced Shadow */
    background: linear-gradient(to bottom, #66ff66 0%, #00e000 100%);
    /* Brighter */
}

.game-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(15, 33, 46, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.game-card:hover .game-info {
    transform: translateY(0);
}

.game-title {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

.game-provider {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.hidden {
    display: none;
}

/* Footer */
.site-footer {
    background-color: #0f212e;
    color: #b1bad3;
    padding: 3rem 1rem;
    margin-top: 4rem;
    font-size: 0.875rem;
    text-align: center;
    border-top: 1px solid #2f4553;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.copyright {
    font-weight: 600;
    color: #fff;
}

.footer-legal p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #00e701;
}

.disclaimer {
    color: #8b9bb4;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.responsible-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #fff;
}

.responsible-links .separator {
    color: #2f4553;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 1rem 1rem;
        /* Reduced padding */
    }

    .header-container {
        align-items: center;
        padding: 0.5rem;
        /* Reduced padding */
    }

    .logo {
        font-size: 1.4rem;
    }

    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .search-container {
        order: -1;
        /* Move search bar to top */
        width: 100%;
    }

    .search-container .search-container {
        width: 100%;
        /* Ensure inner container takes full width if nested */
    }

    #gameSearch {
        width: 100%;
        padding: 0.8rem 1rem 0.8rem 2.8rem;
        font-size: 0.9rem;
    }

    /* Compact Game Card Text for mobile */
    .game-title {
        font-size: 0.75rem;
        margin-bottom: 0rem;
    }

    .game-provider {
        font-size: 0.65rem;
    }

    .play-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Olympus Header */
.olympus-header {
    background: #0f212e;
    border-bottom: 2px solid #b8860b;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.olympus-header .logo {
    color: #b8860b;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

.olympus-header .nav-links {
    display: flex;
    gap: 2rem;
}

.olympus-header .nav-item {
    color: #8b9bb4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.olympus-header .nav-item:hover,
.olympus-header .nav-item.active {
    color: #ffffff;
    background: rgba(184, 134, 11, 0.1);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

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

.ranking-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.ranking-header h1 {
    font-size: 3rem;
    color: #b8860b;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
    margin-bottom: 0.5rem;
}

/* Ranking List & Cards */
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rank-card {
    background: #1a2c38;
    border: 1px solid #2f4553;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Featured Rank #1 */
.rank-card.featured {
    background: linear-gradient(145deg, #1a2c38 0%, #0d1921 100%);
    border: 2px solid #b8860b;
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.15);
    padding: 3rem;
    flex-direction: column;
    text-align: center;
}

.rank-card:not(.featured) {
    flex-direction: row;
    justify-content: space-between;
}

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

/* Badges */
.rank-badge {
    background: linear-gradient(135deg, #FFD700 0%, #b8860b 100%);
    color: #000;
    font-weight: 800;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
}

.rank-badge-small {
    background: #2f4553;
    color: #fff;
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #b8860b;
}

/* Content */
.rank-content {
    width: 100%;
}

.featured .rank-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.rank-card:not(.featured) .rank-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.rank-info h2 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
}

.rank-subtitle {
    color: #b8860b;
    font-weight: 500;
    display: block;
    margin-top: 0.2rem;
}

/* Referral Box */
.referral-box {
    background: #0f212e;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    border: 1px solid #2f4553;
}

.referral-box .code {
    color: #00ff00;
    font-family: monospace;
    font-size: 1.1rem;
}

.copy-btn {
    background: none;
    border: none;
    color: #8b9bb4;
    cursor: pointer;
    transition: color 0.2s;
}

.copy-btn:hover {
    color: #fff;
}

/* Buttons */
.rank-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.play-button.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.star-rating {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Sports Theme Overrides */
.sports-theme .ranking-header h1 {
    color: #00ff00;
    /* Neon Green for Sports */
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.sports-featured {
    border-color: #00ff00 !important;
    background: linear-gradient(145deg, #0d1f14 0%, #0d1921 100%) !important;
}

.sports-featured .rank-badge {
    background: linear-gradient(135deg, #00ff00 0%, #00bc01 100%);
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .olympus-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .olympus-header .nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rank-card:not(.featured) {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .rank-card:not(.featured) .rank-content {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- LUXURY REDESIGN V2 --- */

/* Typography Overrides */
body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
.logo,
.olympus-header .nav-item {
    font-family: 'Cinzel', serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-bottom: 1rem;
    background: radial-gradient(circle at 70% 50%, #1e3c55 0%, #0f1823 100%);
    box-shadow: inset 0 -50px 50px -20px #090f16;
    padding-left: 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 70% 50%, rgba(184, 134, 11, 0.15) 0%, transparent 60%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px);
    z-index: 1;
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #ffd700, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    color: #00ff00;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        justify-content: center;
        padding-left: 1rem;
        padding-right: 1rem;
        min-height: 250px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-features {
        align-items: center;
    }
}

/* Category Tabs */
.category-tabs {
    background: rgba(10, 21, 32, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.tabs-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-container::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: transparent;
    border: 2px solid transparent;
    color: #8b9bb4;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: #ffd700;
    border-color: rgba(184, 134, 11, 0.3);
    background: rgba(184, 134, 11, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    color: #000;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .tabs-container {
        padding: 0 0.5rem;
    }

    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Nav Transparent Adjustment */
.olympus-header {
    background: rgba(15, 33, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

/* Game Grid Adjustment */
.grid-container {
    padding-top: 1rem;
    /* Optional: Add a subtle gold divider above grid */
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    margin-top: 1rem;
}

/* Search Box Styling update for visibility */
.hidden-search {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.hidden-search input {
    background: #0f1823;
    border: 1px solid #2f4553;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}


/* === OLYMPUS NAVIGATION BAR === */
.olympus-nav {
    background: #0a1520;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e3a50;
}

.olympus-logo {
    color: #b8860b;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 2px;
}

.olympus-menu {
    display: flex;
    gap: 2rem;
}

.olympus-link {
    color: #8b9bb4;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.olympus-link:hover {
    color: #fff;
    background: rgba(184, 134, 11, 0.15);
}

.olympus-link.active {
    color: #fff;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.3);
}

@media (max-width: 768px) {
    .olympus-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .olympus-menu {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .olympus-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}


/* === PREMIUM OLYMPUS THEME === */

/* Hero Section */
.hero-section {
    position: relative;
    height: 280px;
    background: url('images/olympus-hero-banner.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    overflow: hidden;
    border-bottom: 4px solid #b8860b;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(30, 60, 100, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.3) 50%, rgba(10, 22, 40, 0.7) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-title .gold-text {
    background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active {
    background: #b8860b;
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

/* Golden Divider */
.golden-divider {
    height: 8px;
    background: linear-gradient(90deg,
            #0a1628 0%,
            #8b6914 15%,
            #ffd700 30%,
            #b8860b 50%,
            #ffd700 70%,
            #8b6914 85%,
            #0a1628 100%);
    box-shadow: 0 2px 15px rgba(184, 134, 11, 0.4);
}

/* Updated Navigation */
.olympus-nav {
    background: linear-gradient(180deg, #0d1a2d 0%, #0a1520 100%);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(184, 134, 11, 0.3);
}

/* .olympus-logo style unified - defined at line 43 */

.olympus-menu {
    display: flex;
    gap: 2.5rem;
}

.olympus-link {
    color: #b8860b;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.olympus-link:hover,
.olympus-link.active {
    color: #ffd700;
    background: rgba(184, 134, 11, 0.15);
}

/* Game Grid Background */
.main-content {
    background: #0a1520;
    padding: 2rem 3rem;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        height: 350px;
        padding: 0 3%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .olympus-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .olympus-menu {
        width: 100%;
        gap: 0.8rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0.5rem 0;
        /* 스크롤바 숨김 */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .olympus-menu::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }

    .olympus-link {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}