/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Jewel Tone Color Palette */
    --emerald-green: #0d7c66;
    --emerald-light: #2d5a48;
    --sapphire-blue: #1e3a8a;
    --sapphire-light: #3b4a9a;
    --ruby-red: #991b1b;
    --ruby-light: #dc2626;
    
    /* Accent Colors */
    --gold: #d4af37;
    --gold-light: #f7d794;
    --silver: #c0c0c0;
    --cream: #f5f5dc;
    
    /* Neutral Tones */
    --charcoal: #2c2c2c;
    --off-white: #fafafa;
    --warm-white: #ffffff;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--charcoal);
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(13, 124, 102, 0.95) 0%, rgba(30, 58, 138, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 0.9rem;
    color: var(--gold-light);
    font-style: italic;
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(
        135deg, 
        rgba(13, 124, 102, 0.8) 0%, 
        rgba(30, 58, 138, 0.8) 50%, 
        rgba(153, 27, 27, 0.8) 100%
    ),
    url('/assets/78iuojkl\,.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Features Section */
#features{
    /* height: 200vh; */
    background-attachment: scroll;
    margin-top: 250px;
}

.features-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald-green);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--charcoal);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--sapphire-blue) 100%);
    color: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    color: var(--gold);
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.image-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* Games Section */
.games-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.game-card {
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: var(--gold);
}

.game-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-info {
    padding: 2rem;
    text-align: center;
}

.game-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--emerald-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.game-info p {
    color: var(--charcoal);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-button {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--warm-white);
    background: linear-gradient(135deg, var(--emerald-green) 0%, var(--sapphire-blue) 100%);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(13, 124, 102, 0.3);
}

.game-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 124, 102, 0.4);
    background: linear-gradient(135deg, var(--sapphire-blue) 0%, var(--ruby-red) 100%);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--sapphire-blue) 0%, var(--emerald-green) 100%);
    color: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(245, 245, 220, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.submit-button {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    color: var(--cream);
    text-align: center;
}

.disclaimer-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.disclaimer-text {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, #0a0a0a 100%);
    color: var(--cream);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-brand p {
    font-style: italic;
    opacity: 0.8;
}

.footer-links h4 {
    font-family: var(--font-primary);
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}