/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    word-wrap: break-word;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F4FCFF;
    color: #110B39;
    line-height: 1.2;
}

/* Container system */
.container {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 900px) {
    .container {
        max-width: 1200px;
        padding: 0 150px;
    }
}

/* Grid Architecture with Transform */
.grid-container {
    display: grid;
    gap: 20px;
    width: 100%;
}

.grid-2-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .grid-2-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.grid-3-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .grid-4-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Transform utilities */
.transform-scale {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.transform-scale:hover {
    transform: scale(1.05);
}

.transform-translate {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.transform-translate:hover {
    transform: translateY(-5px);
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border: none;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.171875em;
}

.btn-primary {
    background-color: #5ADEEB;
    color: #110B39;
    box-shadow: 0px 0px 8px rgba(90, 222, 235, 0.5);
}

.btn-primary:hover {
    box-shadow: 0px 0px 12px rgba(90, 222, 235, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #5ADEEB;
    border: 2px solid #5ADEEB;
}

.btn-secondary:hover {
    background-color: #5ADEEB;
    color: #110B39;
    transform: translateY(-2px);
}

.btn-cta {
    background-color: #5ADEEB;
    color: #110B39;
    box-shadow: 0px 0px 8.2px rgba(90, 222, 235, 1);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.171875em;
    padding: 10px 30px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.btn-purple {
    background-color: #B17DE2;
    color: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(177, 125, 226, 0.5);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: #110B39;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}

@media (min-width: 900px) {
    .header-content {
        justify-content: space-between;
        align-items: center;
        padding: 0 150px;
    }
    
    .logo {
        order: 1;
    }
    
    .desktop-auth {
        order: 3;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    color: #fff;
}

.logo-img {
    width: 61px;
    height: 58px;
}

/* Burger Menu */
.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.burger-menu img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

@media (min-width: 900px) {
    .burger-menu {
        display: none;
    }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 999;
    transition: left 0.3s ease;
}

@media (max-width: 899px) {
    .desktop-auth {
        display: none !important;
    }
}

.main-nav.active {
    left: 0;
}

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 11, 57, 0.8);
}

.nav-content {
    position: relative;
    background: #110B39;
    width: 80%;
    max-width: 350px;
    height: 100%;
    padding: 60px 20px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.main-nav.active .nav-content {
    transform: translateX(0);
}

.nav-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow: visible;
    min-width: 0;
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 3px 6px;
        white-space: nowrap;
    }
    
    .nav-star {
        width: 7px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .nav-menu {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 10px;
        padding: 2px 5px;
    }
    
    .nav-star {
        width: 6px;
        height: 7px;
    }
}

@media (max-width: 320px) {
    .nav-menu {
        gap: 6px;
    }
    
    .nav-link {
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .nav-star {
        width: 5px;
        height: 6px;
    }
}

@media (min-width: 768px) {
    .nav-menu {
        gap: 30px;
    }
}

.nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    line-height: 1.171875em;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link.active {
    background-color: #5ADEEB;
    color: #110B39;
    padding: 5px 10px;
    border-radius: 100px;
}

.nav-link:hover {
    color: #5ADEEB;
}

.nav-star {
    width: 9px;
    height: 10px;
    margin: 0;
    filter: brightness(0) saturate(100%) invert(75%) sepia(30%) saturate(3462%) hue-rotate(265deg) brightness(90%) contrast(85%);
}

.auth-buttons {
    display: grid;
    gap: 10px;
}

/* Desktop Navigation */
@media (min-width: 900px) {
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        left: 0;
        flex: 1;
        display: flex;
        justify-content: center;
        order: 2;
    }
    
    .nav-overlay {
        display: none;
    }
    
    .nav-content {
        background: none;
        width: auto;
        height: auto;
        padding: 0;
        transform: none;
        display: flex;
        align-items: center;
    }
    
    .nav-close {
        display: none;
    }
    
    .nav-menu {
        margin: 0;
    }
    
    .auth-buttons {
        display: none;
    }
}

.desktop-auth {
    display: none;
    gap: 10px;
}

@media (min-width: 900px) {
    .desktop-auth {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 101px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text h1 {
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    line-height: 1.4;
    margin-bottom: 30px;
}

.hero-image {
    display: grid;
    place-items: center;
}

.hero-balls {
    height: 431px;
    transform: scale(1);
}

.hero-lines {
    position: absolute;
    top: 18px;
    right: -20px;
    width: 400px;
    height: 350px;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-balls {
        height: 300px;
    }
    
    .hero-lines {
        width: 300px;
        height: 250px;
        right: -30px;
        top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-balls {
        height: 250px;
    }
    
    .hero-lines {
        width: 250px;
        height: 200px;
        right: -20px;
        top: 20px;
    }
}

.line {
    position: absolute;
    border: none;
    background: none;
}

.line-1,
.line-2 {
    background: repeating-linear-gradient(
        to bottom,
        #110B39 0px,
        #110B39 10px,
        transparent 10px,
        transparent 20px
    );
    width: 1px;
}

.line-3,
.line-4 {
    background: repeating-linear-gradient(
        to right,
        #110B39 0px,
        #110B39 10px,
        transparent 10px,
        transparent 20px
    );
    height: 1px;
}

.line-1 {
    height: 469px;
    left: 46px;
    top: 0;
}

.line-2 {
    height: 469px;
    left: 487px;
    top: 0;
}

.line-3 {
    width: 536px;
    left: 0;
    top: 416px;
}

.line-4 {
    width: 536px;
    left: 0;
    top: 81px;
}

.star {
    position: absolute;
    width: 25px;
    height: 28px;
}

.star img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(75%) sepia(30%) saturate(3462%) hue-rotate(265deg) brightness(90%) contrast(85%);
}

.star-1 {
    left: 33px;
    top: 71px;
}

.star-2 {
    left: 476px;
    top: 402px;
}

/* Welcome Section */
.welcome {
    background-color: #110B39;
    padding: 60px 0;
}

.welcome-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 900px) {
    .welcome-container {
        padding: 0 150px;
    }
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .welcome-content {
        flex-direction: row;
        align-items: center;
    }
}

.welcome-bg {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    min-height: 300px;
}

.welcome-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
}

@media (min-width: 900px) {
    .welcome-bg {
        min-height: 400px;
    }
}

.welcome-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 900px) {
    .welcome-text {
        width: 545px;
        flex-shrink: 0;
    }
}

.welcome-text h2 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    line-height: 1.171875em;
    color: #FFFFFF;
    margin: 0;
}

.welcome-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.171875em;
    color: #FFFFFF;
    margin: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: #110B39;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 15px;
    color: #110B39;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 20px;
    border-radius: 30px;
    color: #FFFFFF;
    display: grid;
    gap: 10px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-purple {
    background-color: #B17DE2;
}

.feature-cyan {
    background-color: #5ADEEB;
    color: #110B39;
}

.feature-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}

.feature-icon {
    width: 58px;
    height: 58px;
}

.icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    padding: 7px;
    display: grid;
    place-items: center;
}

.icon-circle.purple {
    background-color: #C89BF2;
}

.icon-circle.cyan {
    background-color: #92F1FA;
}

.icon-inner {
    width: 100%;
    height: 100%;
    background-color: #E3C6FF;
    border-radius: 100px;
    padding: 7px;
    display: grid;
    place-items: center;
}

.icon-circle.cyan .icon-inner {
    background-color: #C3FAFF;
}

.icon-inner img {
    width: 12px;
    height: 14px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.4;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background-color: #F4FCFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.stat-card {
    background-color: #FFFFFF;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    color: #110B39;
    box-shadow: 0px 4px 20px rgba(17, 11, 57, 0.1);
    transform: scale(1);
    transition: all 0.3s ease;
    border: 1px solid rgba(90, 222, 235, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 30px rgba(17, 11, 57, 0.15);
    border-color: rgba(90, 222, 235, 0.4);
}

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    color: #5ADEEB;
    text-shadow: 0px 2px 4px rgba(90, 222, 235, 0.3);
}

.stat-title {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    margin-bottom: 15px;
    color: #110B39;
    line-height: 1.3;
}

.stat-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(17, 11, 57, 0.7);
    max-width: 250px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .statistics {
        padding: 60px 0;
    }
    
    .stats-grid {
        gap: 20px;
        padding: 0 16px;
    }
    
    .stat-card {
        padding: 40px 25px;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .stat-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .stat-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .statistics {
        padding: 50px 0;
    }
    
    .stats-grid {
        gap: 15px;
        padding: 0 12px;
    }
    
    .stat-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .stat-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .stat-desc {
        font-size: 12px;
        max-width: 200px;
    }
}

/* Your Moment Section */
.your-moment {
    padding: 60px 0;
}

.moment-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

@media (min-width: 900px) {
    .moment-content {
        grid-template-columns: 1fr 1fr;
    }
}

.moment-text {
    display: grid;
    gap: 20px;
}

.moment-text h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: #110B39;
}

.moment-text p {
    font-size: 15px;
    line-height: 1.4;
    color: #110B39;
}

.moment-bg {
    width: 100%;
    height: 300px;
    background: url('../images/game-bg.png') center/cover;
    border-radius: 30px;
}

@media (min-width: 900px) {
    .moment-bg {
        height: 398px;
    }
}

/* Contact CTA Section */
.contact-cta {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(90deg, #B17DE2 0%, #5ADEEB 100%);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    color: #FFFFFF;
}

.cta-card h2 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #110B39;
    color: #FFFFFF;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 70px 60px;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .footer-main {
        flex-direction: row;
        justify-content: stretch;
        align-items: stretch;
    }
}

.footer-content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.footer-text h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.171875em;
    margin: 0 0 20px 0;
}

.footer-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.171875em;
    margin: 0 0 15px 0;
}

.cookie-notice {
    margin-top: 10px;
}

.cookie-notice p {
    margin: 0;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .footer-logos {
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        gap: 50px;
        max-width: 500px;
        width: 100%;
    }
}

.footer-logo {
    height: auto;
    width: auto;
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

@media (min-width: 900px) {
    .footer-logo {
        max-height: 50px;
        max-width: 150px;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

@media (min-width: 900px) {
    .footer-links {
        flex-direction: row;
        gap: 50px;
        justify-content: center;
        align-self: center;
    }
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.171875em;
    text-align: center;
    transition: color 0.3s ease;
}

@media (min-width: 900px) {
    .footer-links a {
        text-align: center;
    }
}

.footer-links a:hover {
    color: #5ADEEB;
}

.footer-copyright {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.171875em;
    margin: 0;
}

.footer-copyright p {
    margin: 0;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #110B39;
    border-radius: 20px;
    padding: 40px;
    z-index: 2001;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    display: none;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .modal {
        padding: 30px 20px;
    }
    
    .form-group input,
    .auth-form .btn {
        width: 100%;
        max-width: 285px;
    }
    
    .modal.success-modal {
        min-width: 300px;
        min-height: 250px;
    }
}

.modal.active {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    align-self: flex-end;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-close svg {
    width: 14px;
    height: 14px;
    fill: #FFFFFF;
}

.modal-tabs {
    display: flex;
    align-self: stretch;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: stretch;
    align-items: stretch;
}

.tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #FFFFFF;
    padding: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.171875em;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    opacity: 0.7;
}

.tab-btn.active {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    opacity: 1;
}

.tab-btn:hover {
    opacity: 1;
}

.auth-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 10px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 325px;
}

.form-group label {
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.171875em;
}

.form-group input {
    width: 325px;
    height: 39px;
    padding: 5px 18px;
    border: none;
    border-radius: 3px;
    background: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #110B39;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(90, 222, 235, 0.5);
}

.auth-form .btn {
    width: 325px;
    height: 39px;
    padding: 5px 30px;
    background-color: #5ADEEB;
    color: #110B39;
    border: none;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.171875em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 222, 235, 0.4);
}

/* Success Modal */
.modal.success-modal {
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-width: 405px;
    min-height: 305px;
}

.success-content {
    display: flex;
    align-self: stretch;
    gap: 29px;
    align-items: stretch;
    flex-direction: column;
}

.success-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    flex: 1;
}

.success-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 22px;
    height: 17px;
    fill: #5ADEEB;
}

.success-message {
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.171875em;
    text-align: center;
    margin: 0;
}

.success-button {
    width: 100%;
    padding: 10px 30px;
    background-color: #5ADEEB;
    color: #110B39;
    border: none;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.171875em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: stretch;
}

.success-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 222, 235, 0.4);
}

/* Responsive utilities */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .feature-card,
    .stat-card,
    .cta-card {
        padding: 20px;
    }
}

/* Horizontal scroll prevention */
@media (max-width: 768px) {
    .hero-lines {
        display: none;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .stats-grid {
        gap: 15px;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Additional anti-scroll protection */
body {
    width: 100vw;
    overflow-x: hidden !important;
}

.container,
.grid-container,
.features-grid,
.stats-grid {
    max-width: 100% !important;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Force word wrapping for all text elements */
h1, h2, h3, h4, h5, h6, p, span, div, a, button {
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* Page Hero Styles */
.page-hero {
    padding: 20px 0;
    background-color: #F4FCFF;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    color: #110B39;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 15px;
    line-height: 1.4;
    color: #110B39;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #110B39;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

@media (min-width: 900px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-bg {
    width: 100%;
    height: 300px;
    background: url('../images/about-bg.png') center/cover;
    border-radius: 30px;
    order: 1;
}

@media (min-width: 900px) {
    .about-bg {
        height: 100%;
        order: 2;
    }
}

.about-text {
    display: grid;
    gap: 20px;
    order: 2;
}

@media (min-width: 900px) {
    .about-text {
        order: 1;
    }
}

.about-text h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: #FFFFFF;
}

.about-text p {
    font-size: 15px;
    line-height: 1.4;
    color: #FFFFFF;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(17, 11, 57, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.faq-question h3 {
    font-size: 24px;
    font-weight: 700;
    color: #110B39;
    margin: 0;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.4;
    color: #110B39;
    margin: 0;
}

/* Contact Banner Styles */
.contact-banner {
    padding: 20px 0;
    background-color: #F4FCFF;
}

.contact-banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 16px;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .contact-banner-container {
        padding: 0 150px;
    }
}

.contact-banner h1 {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    line-height: 1.171875em;
    color: #110B39;
    margin: 0;
    text-align: center;
}

.contact-banner p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.171875em;
    color: #110B39;
    margin: 0;
    text-align: center;
    max-width: 800px;
}

/* Contact Form Section Styles */
.contact-form-section {
    padding: 60px 0;
    background-color: #110B39;
    display: flex;
    justify-content: center;
}

.contact-form-wrapper {
    padding: 0 16px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

@media (min-width: 900px) {
    .contact-form-wrapper {
        padding: 0 150px;
    }
}

.contact-form-figma {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 549px;
    max-width: 100%;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-figma {
    display: flex;
    flex-direction: column;
}

.form-group-figma input,
.form-group-figma textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #CACACA;
    border-radius: 5px;
    background: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1em;
    color: rgba(54, 68, 117, 0.8);
    box-sizing: border-box;
}

.form-group-figma input::placeholder,
.form-group-figma textarea::placeholder {
    color: rgba(54, 68, 117, 0.5);
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1em;
}

.form-group-figma.message-field textarea {
    padding: 14px 20px 40px 20px;
    min-height: 120px;
    resize: vertical;
}

.form-group-figma input:focus,
.form-group-figma textarea:focus {
    outline: none;
    border-color: #5ADEEB;
    box-shadow: 0 0 5px rgba(90, 222, 235, 0.3);
}

.form-submit-figma {
    width: 100%;
    padding: 14px 20px;
    background-color: #5ADEEB;
    color: #110B39;
    border: none;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 0px 8.199999809265137px 0px rgba(90, 222, 235, 1);
}

.form-submit-figma:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(90, 222, 235, 0.8);
}

/* Responsible Gaming Page Styles */
.responsible-section {
    padding: 60px 0;
}

.responsible-content {
    max-width: 800px;
    margin: 0 auto;
}

.responsible-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: #110B39;
    margin-bottom: 30px;
    text-align: center;
}

.responsible-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #110B39;
    margin: 30px 0 15px;
}

.responsible-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #110B39;
    margin-bottom: 20px;
}

.responsible-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.responsible-content li {
    font-size: 15px;
    line-height: 1.6;
    color: #110B39;
    margin-bottom: 10px;
}

.help-links {
    background: linear-gradient(90deg, #B17DE2 0%, #5ADEEB 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.help-links h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.help-links p {
    color: #FFFFFF;
    margin-bottom: 25px;
}

.help-links a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 700;
}

.help-links a:hover {
    text-decoration: none;
}

/* Privacy Policy Styles */
.privacy-section {
    padding: 60px 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: #110B39;
    margin-bottom: 30px;
}

.privacy-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #110B39;
    margin: 30px 0 15px;
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #110B39;
    margin-bottom: 20px;
}

.privacy-content ol,
.privacy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-content li {
    font-size: 15px;
    line-height: 1.6;
    color: #110B39;
    margin-bottom: 10px;
}

/* Interactive FAQ */
.faq-interactive .faq-item {
    cursor: pointer;
}

.faq-interactive .faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: bold;
    color: #5ADEEB;
    transition: transform 0.3s ease;
}

.faq-interactive .faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-interactive .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-interactive .faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

/* Animation delays for elements */
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Error states */
.form-error {
    border-color: #ff4444 !important;
    box-shadow: 0 0 5px rgba(255, 68, 68, 0.3) !important;
}

.error-message {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Success states */
.form-success {
    border-color: #4CAF50 !important;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3) !important;
}

/* Contact page specific styles */
.contact-hero {
    background: linear-gradient(135deg, #110B39 0%, #2A1B5A 100%);
    color: #FFFFFF;
    padding: 40px 0;
}

.contact-hero h1 {
    color: #FFFFFF;
}

.contact-hero p {
    color: #FFFFFF;
    opacity: 0.9;
}