:root {
    --primary-bg: #0e121a;          /* Dark blue instead of dark green */
    --secondary-bg: #1a1f2f;        /* Deep navy instead of forest green */
    --accent-green: #00a2ff;        /* Bright blue instead of green */
    --accent-gold: #c0c0c0;         /* Silver instead of gold */
    --text-primary: #ffffff;        /* Unchanged */
    --text-secondary: #b8c2d4;      /* Cool gray-blue instead of greenish */
    --text-muted: #7a8099;          /* Muted blue-gray instead of green-gray */
    --glow-green: rgba(0, 162, 255, 0.3);  /* Blue glow instead of green */
    --glow-gold: rgba(192, 192, 192, 0.3); /* Silver glow instead of gold */
    --shadow-dark: rgba(0, 0, 0, 0.8);     /* Unchanged */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Unchanged */
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jura', sans-serif;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #0f1b13 50%, var(--primary-bg) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, var(--glow-green) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--glow-gold) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--glow-green) 0%, transparent 40%);
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 34, 47, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    z-index: 1000;
    transition: var(--transition);
}

.navbar:hover {
    background: rgba(26, 33, 47, 0.95);
    box-shadow: 0 10px 30px var(--glow-green);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--accent-green));
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--glow-green);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-green);
    background: rgba(0, 47, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(rgba(14, 19, 26, 0.7), rgba(14, 17, 26, 0.7)),
        url('https://i.pinimg.com/736x/c1/7a/de/c17ade0a44dabe633c0623ff22944f4d.jpg') center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, var(--primary-bg) 80%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-green);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { filter: drop-shadow(0 0 20px var(--glow-green)); }
    100% { filter: drop-shadow(0 0 40px var(--glow-gold)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    text-shadow: 0 0 15px var(--glow-green);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.cta-button {
    position: relative;
    background: linear-gradient(45deg, var(--accent-green), var(--accent-gold));
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    color: var(--primary-bg);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px var(--glow-green);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

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

.fog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, var(--primary-bg));
    pointer-events: none;
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-green);
    text-shadow: 0 0 20px var(--glow-green);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--secondary-bg);
    border: 2px solid rgba(0, 60, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
    height: 300px;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-green);
    box-shadow: 
        0 20px 40px var(--glow-green),
        inset 0 0 20px rgba(0, 174, 255, 0.1);
}

.game-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 19, 26, 0.1) 0%,
        rgba(14, 16, 20, 0.7) 70%,
        rgba(14, 18, 26, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

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

.game-title {
    font-size: 1.8rem;
    color: var(--accent-green);
    margin-bottom: 8px;
    text-shadow: 0 0 10px var(--glow-green);
}

.game-tagline {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-style: italic;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.play-button {
    background: linear-gradient(45deg, var(--accent-green), var(--accent-gold));
    color: var(--primary-bg);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px var(--glow-green);
}

.games-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(26, 47, 31, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.games-cta h3 {
    color: var(--accent-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.games-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    
    background: var(--secondary-bg);
    position: relative;
}

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

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.about-feature {
    text-align: center;
    padding: 30px;
    background: rgba(14, 26, 18, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px var(--glow-green);
}

.about-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--accent-green));
}

.about-feature h4 {
    color: var(--accent-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.about-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.mystical-border {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-gold), var(--accent-green), transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: borderGlow 2s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { box-shadow: 0 0 10px var(--glow-green); }
    100% { box-shadow: 0 0 20px var(--glow-gold); }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--secondary-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(224, 225, 228, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 81, 255, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px var(--glow-green);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--accent-green));
}

.feature-title {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-highlight {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: rgba(26, 28, 47, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 119, 255, 0.2);
}

.features-highlight h3 {
    color: var(--accent-green);
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.highlight-item {
    padding: 25px;
    background: rgba(14, 26, 18, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    color: var(--text-secondary);
    line-height: 1.6;
}

.highlight-item strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(14, 16, 26, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 81, 255, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 15px 30px var(--glow-green);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--accent-green);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(0, 17, 255, 0.2);
}

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

.disclaimer-title {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.disclaimer-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.disclaimer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(0, 60, 255, 0.1);
    border: 1px solid rgba(0, 38, 255, 0.3);
    border-radius: 25px;
    color: var(--accent-green);
    font-weight: 600;
}

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

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 81, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 10px var(--accent-green));
}

.footer-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
}

.footer-info p {
    color: var(--text-muted);
    margin: 5px 0;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column h4 {
    color: var(--accent-green);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 12px 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-card {
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .disclaimer-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .game-overlay {
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .games-cta {
        padding: 30px 20px;
    }
    
    .features-highlight {
        padding: 40px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}