:root {
    /* Option 1: Sophisticated Teal & Gold */
    /*
    --primary-gradient: linear-gradient(135deg, #00D9FF 0%, #00A8CC 50%, #FFB700 100%);
    --secondary-gradient: linear-gradient(135deg, #00A8CC 0%, #005F73 100%);
    --subtle-gradient: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(255, 183, 0, 0.05) 100%);
    --accent: #00D9FF;
    --accent-alt: #FFB700;
    */
    
    /* Option 2: Muted Purple & Mint (Currently Active) */
    --primary-gradient: linear-gradient(135deg, #9B59B6 0%, #8E44AD 50%, #1ABC9C 100%);
    --secondary-gradient: linear-gradient(135deg, #8E44AD 0%, #5B2C6F 100%);
    --subtle-gradient: linear-gradient(135deg, rgba(155, 89, 182, 0.05) 0%, rgba(26, 188, 156, 0.05) 100%);
    --accent: #9B59B6;
    --accent-alt: #1ABC9C;
    
    /* Option 3: Sunset Orange & Deep Blue */
    /*
    --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    --secondary-gradient: linear-gradient(135deg, #FF6B6B 0%, #C44569 100%);
    --subtle-gradient: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(69, 183, 209, 0.05) 100%);
    --accent: #FF6B6B;
    --accent-alt: #4ECDC4;
    */
    
    /* Option 4: Monochrome with Single Accent */
    /*
    --primary-gradient: linear-gradient(135deg, #6C5CE7 0%, #6C5CE7 100%);
    --secondary-gradient: linear-gradient(135deg, #6C5CE7 0%, #4834D4 100%);
    --subtle-gradient: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(108, 92, 231, 0.05) 100%);
    --accent: #6C5CE7;
    --accent-alt: #A29BFE;
    */
    
    --bg-primary: #0A0A0A;
    --bg-secondary: #141414;
    --bg-card: #1C1C1C;
    --text-primary: #EFEFEF;
    --text-secondary: #999999;
    --border: rgba(255, 255, 255, 0.06);
    --shadow: rgba(0, 0, 0, 0.9);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--accent);
    animation: pulse 2s infinite;
}

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

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(155, 89, 182, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 188, 156, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(142, 68, 173, 0.06) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    animation: fadeInUp 1s ease-out;
}

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

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem;
    letter-spacing: 0.01em;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -10%;
    left: -10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-alt);
    top: 50%;
    right: -5%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: #3A86FF;
    bottom: -20%;
    left: 40%;
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.falling-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.falling-item {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: fall linear infinite;
    filter: blur(0.5px);
}

.falling-item:nth-child(1) {
    left: 10%;
    animation-duration: 18s;
    animation-delay: 0.2s;
    font-size: 1.2rem;
    top: -5vh;
}

.falling-item:nth-child(2) {
    left: 20%;
    animation-duration: 22s;
    animation-delay: 0.5s;
    font-size: 1.8rem;
    top: -7vh;
}

.falling-item:nth-child(3) {
    left: 30%;
    animation-duration: 20s;
    animation-delay: 0.8s;
    font-size: 2rem;
    top: -9vh;
}

.falling-item:nth-child(4) {
    left: 40%;
    animation-duration: 24s;
    animation-delay: 3s;
    font-size: 1.4rem;
    top: -10vh;
}

.falling-item:nth-child(5) {
    left: 50%;
    animation-duration: 19s;
    animation-delay: 2.5s;
    font-size: 1.6rem;
    top: -10vh;
}

.falling-item:nth-child(6) {
    left: 60%;
    animation-duration: 21s;
    animation-delay: 4s;
    font-size: 1.3rem;
    top: -10vh;
}

.falling-item:nth-child(7) {
    left: 70%;
    animation-duration: 23s;
    animation-delay: 3.5s;
    font-size: 1.5rem;
    top: -10vh;
}

.falling-item:nth-child(8) {
    left: 80%;
    animation-duration: 20s;
    animation-delay: 5s;
    font-size: 1.7rem;
    top: -10vh;
}

.falling-item:nth-child(9) {
    left: 85%;
    animation-duration: 18s;
    animation-delay: 5.5s;
    font-size: 1.1rem;
    top: -10vh;
}

.falling-item:nth-child(10) {
    left: 90%;
    animation-duration: 25s;
    animation-delay: 6s;
    font-size: 1.4rem;
    top: -10vh;
}

@keyframes fall {
    from {
        transform: translateY(-10vh) rotate(0deg);
    }
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-weight: 600;
}

.categories-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--subtle-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.05);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-secondary);
}

.games-section {
    padding: 6rem 0;
}

.games-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    color: white;
    border-color: transparent;
    font-weight: 500;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-card:hover::after {
    transform: scaleX(1);
}

.game-thumbnail {
    position: relative;
    height: 200px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-badge, .play-now-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.play-now-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.game-placeholder {
    font-size: 4rem;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.game-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.game-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(102, 126, 234, 0.2);
    color: var(--accent);
    border-radius: 15px;
    font-size: 0.875rem;
}

.about-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer {
    padding: 3rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.footer-text {
    color: var(--text-secondary);
}

.game-card.hidden {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
}