header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-light);
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav ul li a {
    color: var(--color-light);
    font-size: 1rem;
    padding: 0.5rem;
    transition: color var(--transition);
}

.nav ul li a:hover {
    color: var(--color-accent);
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-light);
    transition: all var(--transition);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-bg);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition);
    }

    .nav.open {
        max-height: 300px;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .burger {
        display: flex;
    }
}

footer {
    background: #111;
    color: var(--color-light);
    padding: 60px 0 20px;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    max-width: 300px;
    margin: 0 auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-brand .footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li a {
    display: block;
    margin-bottom: 10px;
    color: var(--color-light);
    transition: color var(--transition);
}

.footer-nav ul li a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--color-light);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 15px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--color-light);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        max-width: 400px;
        flex: none;
    }

}

/* Hero Section */
.hero {
    /* Full viewport height minus header */
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    /* Background image with dark overlay for contrast */
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    color: var(--color-light);
    text-align: center;
    padding: 0 15px;
}

/* Responsive Typography */
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    /* Optional subtle entrance animation */
    animation: fadeInDown 1s ease both;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    opacity: 0.9;
    animation: fadeInUp 1s ease both 0.5s;
}

/* CTA Button uses existing .btn-primary styling */
.hero-content .btn-primary {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    animation: fadeInUp 1s ease both 0.7s;
}

/* Keyframes for fade-in animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-content p {
        font-size: clamp(0.9rem, 3vw, 1.25rem);
    }

    .hero-content .btn-primary {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero-content p {
        font-size: clamp(0.85rem, 4vw, 1rem);
    }

    .hero-content .btn-primary {
        width: 100%;
        max-width: 260px;
        padding: 0.6rem;
    }
}

/* Carousel Section */
.carousel-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.carousel-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-light);
    text-transform: uppercase;
}

/* Swiper container adjustments */
.carousel-swiper {
    width: 100%;
    padding-bottom: 40px;
    /* space for pagination/navigation */
}

/* Slide images */
.carousel-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    /* Optionally fix aspect ratio: 
       max-height: 400px; 
       For narrower screens, height adjusts automatically */
}

/* Swiper pagination bullets */
.carousel-swiper .swiper-pagination-bullet {
    background: var(--color-accent);
    opacity: 0.7;
}

.carousel-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Swiper navigation arrows */
.carousel-swiper .swiper-button-prev,
.carousel-swiper .swiper-button-next {
    color: var(--color-light);
    transition: color var(--transition);
}

.carousel-swiper .swiper-button-prev:hover,
.carousel-swiper .swiper-button-next:hover {
    color: var(--color-accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-section {
        padding: 60px 0;
    }

    .carousel-section h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 480px) {
    .carousel-section {
        padding: 40px 0;
    }

    .carousel-swiper .swiper-slide img {
        border-radius: 6px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    color: var(--color-light);
    text-transform: none;
    /* Heading text already capitalized properly */
}

/* Grid container */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Individual feature item */
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform var(--transition), background var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-light);
    text-transform: none;
    /* “Win real prizes”, etc. First letter uppercase in HTML */
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .features h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 40px 0;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-item img {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .feature-item p {
        font-size: 0.85rem;
    }
}

/* Demo Game Section */
.demo-game {
    padding: 80px 0;
    background: rgba(255, 174, 0, 0.05);
    text-align: center;
    color: var(--color-light);
}

.demo-game h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    text-transform: none;
    /* Already correctly cased */
}

.demo-game p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive iframe wrapper */
.iframe-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    /* 16:9 aspect ratio */
    padding-top: 56.25%;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    background: var(--color-bg);
}

/* CTA button below iframe */
.demo-cta {
    display: inline-block;
    margin-top: 10px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-game {
        padding: 60px 0;
    }

    .demo-game h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .demo-game p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 20px;
    }

    .iframe-wrapper {
        max-width: 100%;
        padding-top: 56.25%;
        margin-bottom: 20px;
    }

    .demo-cta {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .demo-game {
        padding: 40px 0;
    }

    .demo-game h2 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }

    .demo-game p {
        font-size: clamp(0.85rem, 4vw, 1rem);
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .iframe-wrapper {
        padding-top: 56.25%;
        margin-bottom: 15px;
    }

    .demo-cta {
        width: 100%;
        max-width: 260px;
        padding: 0.6rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-light);
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    text-transform: none;
    /* Already correctly cased */
    color: var(--color-light);
}

/* Swiper container adjustments */
.testimonials-swiper {
    width: 100%;
    padding-bottom: 40px;
    /* space for pagination/navigation */
}

/* Individual slide styling */
.testimonial-item {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform var(--transition), background var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* Optional avatar styling */
.testimonial-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
}

/* Blockquote styling */
.testimonial-item blockquote {
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    color: var(--color-light);
}

.testimonial-item blockquote::before,
.testimonial-item blockquote::after {
    content: '“';
    position: absolute;
    font-size: 2rem;
    color: var(--color-accent);
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-item blockquote::after {
    content: '”';
    top: auto;
    bottom: -10px;
    right: -10px;
    left: auto;
}

/* Author styling */
.testimonial-author {
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-accent);
}

/* Swiper pagination bullets */
.testimonials-swiper .swiper-pagination-bullet {
    background: var(--color-accent);
    opacity: 0.7;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Swiper navigation arrows */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    color: var(--color-light);
    transition: color var(--transition);
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    color: var(--color-accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .testimonial-item {
        padding: 15px;
    }

    .testimonial-item blockquote {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 12px;
    }

    .testimonial-author {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonials h2 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        margin-bottom: 20px;
    }

    .testimonial-item {
        padding: 12px;
    }

    .testimonial-item blockquote {
        font-size: clamp(0.85rem, 4vw, 1rem);
        margin-bottom: 10px;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }
}

/* How It Works - Timeline Style */
.how-it-works-timeline {
    position: relative;
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-light);
}

.how-it-works-timeline h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 60px;
    text-transform: none;
    /* Already correctly cased */
    color: var(--color-light);
}

/* Timeline container */
.timeline {
    position: relative;
    margin: 0 auto;
    padding: 0;
    /* max-width for readability */
    max-width: 800px;
}

/* Vertical line in the middle */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--color-accent);
    opacity: 0.3;
}

/* Each timeline item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

/* Alternate left/right */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Connector circle */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    /* aligns with icon center */
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent);
}

/* Position connector circle on the line */
.timeline-item:nth-child(odd)::after {
    right: -7px;
    /* half of width to center on line */
}

.timeline-item:nth-child(even)::after {
    left: -7px;
}

/* Icon and step number */
.timeline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-accent);
    margin-bottom: 15px;
    /* For odd items, float right; for even, float left */
}

.timeline-item:nth-child(odd) .timeline-icon {
    float: right;
    margin-left: 10px;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-icon {
    float: left;
    margin-right: 10px;
    margin-left: 0;
}

/* If using step number */
.step-number {
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-bg);
}

/* If using icon image */
.timeline-icon img {
    width: 70%;
    object-fit: contain;
}

/* Content box */
.timeline-content {
    display: inline-block;
    max-width: calc(100% - 80px);
    vertical-align: top;
}

/* Clear floats */
.timeline-item::before {
    content: '';
    display: table;
    clear: both;
}

/* Headings */
.timeline-content h3 {
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--color-light);
    text-transform: none;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-light);
    margin: 0;
}

/* Hover effect */
.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
}

.timeline-item:hover .timeline-content {
    /* subtle glow or highlight */
    text-shadow: 0 0 8px var(--color-accent);
}

/* Responsive: center items on mobile */
@media (max-width: 768px) {
    .how-it-works-timeline {
        padding: 60px 0;
    }

    .how-it-works-timeline h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 40px;
    }

    .timeline::before {
        left: 20px;
        /* move line to left for mobile */
    }

    .timeline-item {
        width: 100%;
        padding: 20px 20px 20px 60px;
        text-align: left !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 13px;
        /* position dot over the line */
    }

    .timeline-icon {
        float: left !important;
        margin: 0 10px 15px 0 !important;
    }

    .timeline-content {
        max-width: calc(100% - 80px);
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

/* Smaller mobile adjustments */
@media (max-width: 480px) {
    .how-it-works-timeline {
        padding: 40px 0;
    }

    .how-it-works-timeline h2 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        margin-bottom: 30px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding: 15px 15px 15px 50px;
    }

    .timeline-item::after {
        left: 11px;
        width: 12px;
        height: 12px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        box-shadow: 0 0 10px var(--color-accent);
        margin-right: 8px;
    }

    .step-number {
        font-size: 1rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }
}

/* FAQ Simple Section */
.faq-simple {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-light);
}

.faq-simple h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 60px;
    text-transform: none;
    color: var(--color-light);
}

/* Grid for FAQ items: two columns on desktop, one on mobile */
.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Each FAQ item */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

/* Question button */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-light);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    position: relative;
    transition: background var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Arrow indicator */
.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--color-accent);
    transition: transform var(--transition), color var(--transition);
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

/* Paragraph inside answer */
.faq-answer p {
    margin: 10px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-light);
}

/* Link styling inside answer if any */
.faq-answer a {
    color: var(--color-accent);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--color-accent-2);
}

/* Active/open state */
.faq-item.active {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px var(--color-accent-2);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    color: var(--color-accent-2);
}

/* When active, allow max-height large enough for content (adjust max-height if answers longer) */
.faq-item.active .faq-answer {
    max-height: 500px;
    /* ensure this covers the tallest answer; increase if needed */
    padding-top: 10px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-simple {
        padding: 60px 0;
    }

    .faq-simple h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 40px;
    }

    .faq-list {
        gap: 20px;
    }

    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-question::after {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        max-height: 400px;
        /* adjust if needed */
        padding-top: 8px;
        padding-bottom: 16px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-simple {
        padding: 40px 0;
    }

    .faq-simple h2 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        margin-bottom: 30px;
    }

    .faq-list {
        gap: 16px;
    }

    .faq-question {
        padding: 12px;
        font-size: 0.9rem;
    }

    .faq-question::after {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 12px;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        /* adjust if needed */
        padding-top: 6px;
        padding-bottom: 12px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    /* Optional neon glow overlay */
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(255, 174, 0, 0.4), transparent 60%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--color-light);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 10px;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    text-transform: none;
    color: var(--color-light);
    /* Optionally add glow */
    text-shadow:
        0 0 4px var(--neon-blue),
        0 0 8px var(--neon-pink);
    transition: text-shadow 300ms;
}

.cta-content h2:hover {
    text-shadow:
        0 0 8px var(--neon-blue),
        0 0 16px var(--neon-pink);
}

.cta-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--txt);
    opacity: 0.9;
}

/* Buttons container */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CTA button overrides or enhancements */
.cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-transform: none;
    /* width auto; flex-shrink default */
    transition: transform var(--transition), box-shadow var(--transition);
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* If you want one button larger on mobile: */
@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Adjust padding on smaller screens */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 18px;
    }

    .cta-content p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: clamp(0.9rem, 4vw, 1rem);
        margin-bottom: 20px;
    }
}

/* Game Hero Section */
.game-hero {
    padding: 100px 0;
    background: url('../images/hero-bg-2.jpg') center/cover no-repeat;
    /* optional background */
    position: relative;
    color: var(--color-light);
}

.game-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.game-hero .hero-content {
    flex: 1 1 400px;
    text-align: left;
}

.game-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    text-transform: none;
    color: var(--color-light);
    text-shadow: 0 0 6px var(--neon-blue);
}

.game-hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--txt);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-transform: none;
    transition: transform var(--transition);
}

.hero-buttons .btn:hover {
    transform: scale(1.05);
}

.hero-visual {
    flex: 1 1 300px;
    text-align: center;
}

.hero-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .game-hero {
        padding: 80px 0;
    }

    .game-hero .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .game-hero .hero-content {
        flex: 1 1 auto;
    }

    .hero-visual {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .game-hero {
        padding: 60px 0;
    }

    .game-hero h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 15px;
    }

    .game-hero p {
        font-size: clamp(0.9rem, 4vw, 1rem);
        margin-bottom: 20px;
    }

    .hero-visual img {
        max-width: 300px;
    }
}

/* Container and Layout */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;

    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: #111;
    /* dark background for neon theme */
    color: #eee;
    font-family: sans-serif;
}

.section.fade-in {
    padding: 50px 0;
}

.section.fade-in>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-form .form-group {
    flex: 1 1 45%;
    /* two columns on large screens */
}

.checkbox-group {
    display: flex;
    gap: 10px;
}

.checkbox-group label {
    margin: 0 !important;
}

/* Stack fields on small screens */
@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form .form-group {
        flex: 1 1 100%;
        /* full width fields on mobile */
    }
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    background: #222;
    color: #eee;
    border: 2px solid #444;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Glow effect on hover/focus */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus,
.contact-form input[type="text"]:hover,
.contact-form input[type="email"]:hover,
.contact-form textarea:hover {
    border-color: #00e5ff;
    /* neon cyan */
    box-shadow: 0 0 8px #00e5ff, 0 0 12px #00e5ff;
    outline: none;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ddd;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.contact-form .checkbox-label input {
    margin-right: 0.5rem;
    accent-color: #00e5ff;
    /* sets checkbox color in supported browsers */
}

.contact-form .checkbox-label span {
    color: #ccc;
    font-size: 0.9rem;
}

.contact-form button[type="submit"] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #00e5ff;
    border: 2px solid #00e5ff;
    border-radius: 4px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.contact-form button[type="submit"]:hover {
    background: #00e5ff;
    color: #111;
    box-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff;
}


main:has(.thanks-container),
body:has(.thanks-container) {
    height: 100%;
}

.thanks-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;

    height: 100vh;
}