@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=League+Spartan:wght@400;600;700&display=swap');

/* ========================
   RESET & BASE STYLES
======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'League Spartan', Arial, sans-serif;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ========================
   BACKGROUND CONTAINER
======================== */
.background-container {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ========================
   HEADER & NAVIGATION
======================== */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    width: 100%;
    position: relative;
    z-index: 100;
}

.logo-container {
    z-index: 10;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Buttons */
.nav-container {
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-button {
    background: linear-gradient(135deg, #FF68C9 0%, #2121ff 100%);
    border: none;
    padding: 12px 25px;
    box-shadow: 0 4px 15px rgba(255,104,201,0.4);
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.nav-button i {
    margin-right: 8px;
}

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

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

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,104,201,0.6);
}

/* ========================
   MAIN CONTENT WRAPPER
======================== */
.main-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: fit-content;
    /* align-items: center; */
    /* justify-content: center; */
    padding: 20px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ========================
   CAROUSEL
======================== */
.carousel-container {
    width: 100%;
    max-width: 800px;
    margin-left: 5.5rem;
    height: 300px;
    position: relative;
    margin-bottom: 40px;
    z-index: 5;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 3px solid rgba(255,104,201,0.3);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit:fill;
    display: block;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255,104,201,0.9);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255,104,201,0.4);
}

.carousel-btn:hover {
    background: #2E0152;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #FF68C9;
}

.indicator.active {
    background: #FF68C9;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255,104,201,0.8);
}

/* ========================
   HERO TEXT SECTION
======================== */
.hero-text-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    z-index: 4;
}

.lottery-text {
    font-family: 'Paytone One', sans-serif;
    font-size: 42px;
    width: 70%;
    text-align: center;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255,104,201,0.5);
    text-align: center;
    animation: textGlow 3s ease-in-out infinite;
}

.lottery-word {
    display: inline;
}

.launch-text {
    background: linear-gradient(135deg, #2E0152 0%, #4A0178 100%);
    box-shadow: 0px -11px 13.9px 0px rgba(255,255,255,0.53), 0 20px 40px rgba(0,0,0,0.5);
    font-family: 'Paytone One', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: white;
    padding: 10px 60px;
    clip-path: polygon(100% 0%, 0% 0%, 6% 100%, 94% 100%);
    text-align: center;
    transition: all 0.3s ease;
}

.launch-text i {
    margin-right: 15px;
}

.launch-text:hover {
    transform: scale(1.05);
    box-shadow: 0px -11px 13.9px 0px rgba(255,255,255,0.53), 0 25px 50px rgba(0,0,0,0.6);
}

/* ========================
   PARTNER BADGES
======================== */
.partner-container {
    /* position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); */
    display: flex;
    gap: 20px;
    margin-top: 5rem;
    z-index: 5;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: 95%;
    padding: 0 20px;
}

.partner-image {
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.partner-image:hover {
    transform: scale(1.1);
}

.eighteen-plus-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.eighteen-plus-image:hover {
    transform: rotate(360deg) scale(1.1);
}

/* ========================
   FLOATING PARTICLES
======================== */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255,104,201,0.8), rgba(255,104,201,0));
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 12s; }
.particle:nth-child(2) { left: 80%; top: 30%; animation-duration: 14s; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 60%; animation-duration: 16s; animation-delay: 4s; }
.particle:nth-child(4) { left: 30%; top: 80%; animation-duration: 13s; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; top: 70%; animation-duration: 15s; animation-delay: 3s; }

/* ========================
   CONTENT PAGES
======================== */
.content-page {
    min-height: 100vh;
    background-image: url('images/bgcontent.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.content-container {
    max-width: 1200px;
    width: 100%;
    padding: 60px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header i {
    font-size: 60px;
    color: #FF68C9;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s infinite;
}

.content-container h2 {
    font-family: 'Paytone One', sans-serif;
    font-size: 52px;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.content-container h3 {
    font-family: 'Paytone One', sans-serif;
    font-size: 32px;
    color: #FFFFFF;
    margin-top: 40px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF68C9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.content-container h3 i {
    margin-right: 15px;
    color: #FF68C9;
}

.intro-text {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 40px !important;
    text-align: center;
    padding: 30px;
    background: rgba(255,104,201,0.1);
    border-radius: 15px;
    border-left: 5px solid #FF68C9;
}

.content-container p {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    background: rgba(255,104,201,0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255,104,201,0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255,104,201,0.25);
    box-shadow: 0 20px 40px rgba(255,104,201,0.3);
}

.feature-icon {
    font-size: 60px;
    color: #FF68C9;
    margin-bottom: 20px;
}

/* Target Audience */
.target-audience {
    margin-top: 50px;
}

.subtitle {
    text-align: center;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-style: italic;
}

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

.audience-card {
    background: rgba(46,1,82,0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,104,201,0.4);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.audience-card:hover {
    background: rgba(255,104,201,0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,104,201,0.4);
}

.audience-card i {
    font-size: 40px;
    color: #FF68C9;
    margin-bottom: 15px;
    display: block;
}

.audience-card span {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: rgba(255,104,201,0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255,104,201,0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,104,201,0.25);
    box-shadow: 0 20px 40px rgba(255,104,201,0.4);
}

.game-icon {
    font-size: 60px;
    color: #FF68C9;
    margin-bottom: 20px;
}

.game-card h4 {
    font-family: 'Paytone One', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.game-card p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Technology Section */
.tech-section {
    margin: 40px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tech-item {
    background: rgba(46,1,82,0.6);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255,104,201,0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255,104,201,0.3);
    transform: translateX(10px);
    box-shadow: -5px 5px 20px rgba(255,104,201,0.3);
}

.tech-item i {
    font-size: 40px;
    color: #FF68C9;
}

.tech-item span {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
}

/* Tech Highlights */
.tech-highlights {
    margin-top: 50px;
}

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

.highlight-card {
    background: rgba(255,104,201,0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255,104,201,0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(255,104,201,0.25);
    box-shadow: 0 20px 40px rgba(255,104,201,0.4);
}

.highlight-card i {
    font-size: 50px;
    color: #FF68C9;
    margin-bottom: 20px;
    display: block;
}

.highlight-card h4 {
    font-family: 'Paytone One', sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

/* Syndicate Section */
.syndicate-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.syndicate-visual {
    flex: 0 0 200px;
    text-align: center;
}

.syndicate-visual i {
    color: #FF68C9;
    filter: drop-shadow(0 10px 30px rgba(255,104,201,0.5));
}

.syndicate-text {
    flex: 1;
}

.syndicate-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(46,1,82,0.6);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(255,104,201,0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255,104,201,0.3);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 24px;
    color: #FF68C9;
}

.benefit-item span {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 600;
}

.highlight-text {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #FF68C9 !important;
    text-align: center;
    padding: 25px;
    background: rgba(255,104,201,0.2);
    border-radius: 15px;
    margin-top: 30px;
}

/* Contact Section */
.contact-info {
    text-align: center;
    margin: 40px 0;
}

.info-box {
    background: rgba(255,104,201,0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255,104,201,0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    background: rgba(255,104,201,0.25);
    box-shadow: 0 15px 35px rgba(255,104,201,0.4);
}

.info-box i {
    font-size: 50px;
    color: #FF68C9;
    margin-bottom: 20px;
    display: block;
}

.info-box h4 {
    font-family: 'Paytone One', sans-serif;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.info-box a {
    font-size: 24px;
    color: #FF68C9;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 15px;
}

.info-box a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255,104,201,0.8);
}

.info-box p {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
    background: rgba(255,104,201,0.1);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(255,104,201,0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.form-group label i {
    margin-right: 10px;
    color: #FF68C9;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid #FF68C9;
    border-radius: 15px;
    padding: 18px 25px;
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    color: #2E0152;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 104, 201, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E0152;
    background: #FFFFFF;
    box-shadow: 0 8px 25px rgba(46, 1, 82, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    border: none;
    border-radius: 50px;
    padding: 20px 60px;
    font-family: 'Paytone One', sans-serif;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 104, 201, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    align-self: center;
    position: relative;
    overflow: hidden;
}

.submit-btn i {
    margin-right: 15px;
}

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

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 104, 201, 0.6);
    background: linear-gradient(135deg, #2E0152 0%, #FF68C9 100%);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF68C9 0%, #2E0152 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255,104,201,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,104,201,0.7);
}

/* ========================
   ANIMATIONS
======================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-100px) scale(1.5);
        opacity: 1;
    }
}

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

@keyframes textGlow {
    0%, 100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255,104,201,0.5);
    }
    50% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255,104,201,0.8);
    }
}

/* ========================
   RESPONSIVE DESIGN
======================== */

/* Desktop (max-width: 1200px) */
@media screen and (max-width: 1200px) {
    .logo {
        max-width: 180px;
    }
    
    .nav-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .carousel-container {
        max-width: 800px;
        height: 320px;
    }
    
    .lottery-text {
        font-size: 42px;
    }
    
    .launch-text {
        font-size: 26px;
        padding: 20px 60px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet (max-width: 992px) */
@media screen and (max-width: 992px) {
    .logo {
        max-width: 140px;
    }
    
    .nav-container {
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        flex-wrap: wrap;
        justify-content: center;
        max-width: 95%;
        background: rgba(46,1,82,0.95);
        padding: 15px;
        border-radius: 20px;
    }
    
    .nav-button {
        padding: 12px 18px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .carousel-container {
        height: 280px;
    }
    
    .lottery-text {
        font-size: 36px;
    }
    
    .launch-text {
        font-size: 22px;
        padding: 18px 40px;
    }
    
    .partner-container {
        bottom: 100px;
    }
    
    .content-container {
        padding: 40px 30px;
    }
    
    .syndicate-content {
        flex-direction: column;
    }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .logo {
        max-width: 100px;
    }
    
    .carousel-container {
        height: 250px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: -15px;
    }
    
    .carousel-btn.next {
        right: -15px;
    }
    
    .lottery-text {
        font-size: 28px;
    }
    
    .launch-text {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .partner-image {
        max-width: 100px;
        height: 55px;
    }
    
    .eighteen-plus-image {
        width: 55px;
        height: 55px;
    }
    
    .content-container h2 {
        font-size: 36px;
    }
    
    .content-container h3 {
        font-size: 26px;
    }
    
    .intro-text {
        font-size: 18px !important;
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Small Mobile (max-width: 576px) */
@media screen and (max-width: 576px) {
    .logo {
        max-width: 80px;
    }
    
    .carousel-container {
        height: 220px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .lottery-text {
        font-size: 22px;
    }
    
    .launch-text {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .nav-button {
        padding: 10px 15px;
        font-size: 12px;
        min-width: 80px;
    }
    
    .partner-image {
        max-width: 90px;
        height: 50px;
    }
    
    .eighteen-plus-image {
        width: 50px;
        height: 50px;
    }
    
    .content-container {
        padding: 30px 15px;
    }
    
    .content-container h2 {
        font-size: 28px;
    }
    
    .content-container h3 {
        font-size: 22px;
    }
    
    .intro-text {
        font-size: 16px !important;
        padding: 15px;
    }
    
    .games-grid,
    .audience-grid,
    .tech-grid,
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        padding: 15px 40px;
        font-size: 18px;
        width: 100%;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}