/* Base Styles - Futuristic Neon Gaming Theme */
:root {
    /* Primary Colors - Futuristic Neon */
    --primary-color: #8b5cf6;
    --primary-light: #a855f7;
    --primary-dark: #7c3aed;
    
    /* Secondary Colors */
    --secondary-color: #06b6d4;
    --secondary-light: #22d3ee;
    --secondary-dark: #0891b2;
    
    /* Accent Colors */
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    
    /* Neutral Colors */
    --dark-color: #0a0a0a;
    --light-color: #1f2937;
    --white: #ffffff;
    --black: #000000;
    --text-color: #8b5cf6;
    
    /* Neon Gaming Colors */
    --neon-purple: #8b5cf6;
    --neon-cyan: #06b6d4;
    --neon-orange: #f59e0b;
    --neon-pink: #ec4899;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s;
    --transition-medium: 0.5s;
    --transition-slow: 0.8s;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-magic: 0 10px 20px rgba(114, 9, 183, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    --gradient-neon: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    --gradient-gaming: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

ul, li, strong {
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    box-shadow: var(--shadow-magic);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-magic);
    transform: translateY(-3px);
}

.btn-play {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-gold);
    color: var(--dark-color);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    border: none;
}

.btn-play:hover {
    box-shadow: 0 5px 15px rgba(255, 214, 10, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* Section Styles */
section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
    font-family: var(--font-secondary);
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header .underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--space-sm) auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-color);
    opacity: 0.8;
}

/* Modern Header Styles */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(31, 41, 55, 0.9));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-fast);
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.logo-icon {
    position: relative;
    margin-right: var(--space-md);
}

.logo-icon img {
    height: 45px;
    width: 45px;
    transition: all var(--transition-fast);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: -1;
}

.logo:hover .logo-glow {
    opacity: 1;
}

.logo:hover .logo-icon img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    transition: all var(--transition-fast);
}

.logo:hover .logo-text {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left var(--transition-medium);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-icon {
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.nav-text {
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.nav-link:hover .nav-icon {
    transform: scale(1.2);
}

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

.nav-link.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.nav-link.active .nav-text {
    color: var(--accent-color);
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn-play-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-medium);
}

.btn-play-header:hover .btn-glow {
    left: 100%;
}

.btn-play-header:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 0;
    height: 100vh;
    min-height: 700px;
    background: var(--dark-color);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    font-family: var(--font-secondary);
}

.hero-content h1 span {
    display: block;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
}

.hero-image {
    position: relative;
    width: 45%;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-image svg {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--white);
    clip-path: polygon(0 60%, 100% 100%, 100% 100%, 0 100%);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-chips {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.chip {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: float 6s ease-in-out infinite;
}

.chip-1 {
    top: 20%;
    left: -15%;
    animation-delay: 0s;
}

.chip-2 {
    top: 60%;
    right: -10%;
    animation-delay: 1s;
}

.chip-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--dark-color) 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.about-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    opacity: 0.7;
}

/* Games Section - Neon Gaming Style */
.games-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-color) 100%);
    position: relative;
    overflow: hidden;
}

.games-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 10;
}

.game-card-wrapper {
    position: relative;
    z-index: 10;
}

.game-card {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    border: 2px solid transparent;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-medium);
    position: relative;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-cyan), var(--neon-orange));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3),
                0 0 30px rgba(6, 182, 212, 0.2);
}

.game-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 20;
}

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

.btn-play-hover {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient-gaming);
    color: var(--white);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 30;
    position: relative;
}

.btn-play-hover:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.game-card:hover .game-img img {
    transform: scale(1.1);
}

.game-content {
    padding: var(--space-md);
    text-align: center;
}

.game-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
    font-weight: 700;
}

.game-content p {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    color: var(--neon-cyan);
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-color) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(114, 9, 183, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-info {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Features Section */
.features-section {
    background: var(--gradient-neon);
    color: var(--white);
}

.features-section .section-header h2,
.features-section .section-header h2 span,
.features-section .section-header p {
    color: var(--white);
}

.features-section .underline {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--dark-color) 100%);
    padding: var(--space-xl) 0;
}

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

.disclaimer-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.disclaimer-content h2 span {
    color: var(--primary-color);
}

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.age-icon {
    font-size: 2.5rem;
    font-weight: 800;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.age-restriction p {
    text-align: left;
    font-size: 1rem;
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.footer-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-purple);
    border-radius: 50%;
    animation: footerParticleFloat 15s linear infinite;
    box-shadow: 0 0 6px var(--neon-purple);
}

.footer-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.footer-particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.footer-particle:nth-child(3) {
    left: 60%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.footer-particle:nth-child(4) {
    left: 80%;
    animation-delay: 9s;
    animation-duration: 14s;
}

@keyframes footerParticleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.footer-content {
    position: relative;
    z-index: 10;
    padding: var(--space-xxl) 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xxl);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.logo-container {
    position: relative;
}

.logo-container img {
    height: 50px;
    width: 50px;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    transition: all var(--transition-fast);
}

.logo-glow-footer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.7;
    z-index: -1;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.brand-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-xs);
}

.brand-info p {
    color: var(--neon-cyan);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-description {
    max-width: 400px;
}

.footer-description p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    color: var(--white);
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--accent-color);
    font-weight: 700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.social-link img {
    width: 20px;
    height: 20px;
    transition: all var(--transition-fast);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    border-color: #3b5998;
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}

.social-link.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.social-link.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
}

.social-link.discord:hover {
    border-color: #7289da;
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    color: var(--accent-color);
    font-weight: 700;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: var(--space-sm);
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: var(--space-md);
}

.footer-column ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 0.8rem;
    opacity: 0;
    transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
}

.footer-bottom {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(13, 2, 33, 0.5));
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: var(--space-lg) 0;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.copyright p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.copyright a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.copyright a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.badge-icon {
    font-size: 1rem;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top img {
    width: 20px;
    height: 20px;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Game Page Styles */
.game-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--light-color) 100%);
    min-height: 100vh;
}

.game-header {
    display: flex;
    align-items: center;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xxl);
}

.game-info {
    flex: 1;
}

.game-info h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-sm);
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-subtitle {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.game-description {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.feature-tag {
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--neon-purple);
    border-radius: var(--border-radius-sm);
    color: var(--neon-purple);
    font-size: 0.9rem;
    font-weight: 500;
}

.game-preview {
    flex: 1;
}

.game-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-preview-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.game-image-container:hover .play-overlay {
    opacity: 1;
}

.btn-play-now {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: var(--gradient-gaming);
    color: var(--white);
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-play-now:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
}

.game-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xxl);
}

.detail-card {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(10px);
}

.detail-card h3 {
    color: var(--neon-purple);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.detail-card ul, .detail-card ol {
    list-style: none;
}

.detail-card li {
    color: var(--white);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    position: relative;
}

.detail-card ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

.detail-card ol li {
    counter-increment: item;
}

.detail-card ol {
    counter-reset: item;
}

.detail-card ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: 600;
}

.back-to-games {
    padding: var(--space-xl) 0;
    text-align: center;
}

.back-to-games .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Game Iframe Styles */
.game-iframe-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
}

.game-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius-lg);
}



.game-iframe-container iframe:not([src=""]) + ::before {
    opacity: 0;
}

/* Responsive iframe */
@media (max-width: 768px) {
    .game-iframe-container {
        height: 400px;
    }
    
    .game-header {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .game-details {
        grid-template-columns: 1fr;
    }
}

/* Particle System Styles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-purple);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
    box-shadow: 0 0 10px var(--neon-purple);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 13s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}