/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sofia Sans', sans-serif;
    line-height: 1.6;
    background-color: #ebf1ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header styles */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 20px;
}

.header__nav {
    display: block;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header__nav-link {
    text-decoration: none;
    color: #2e3192;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.header__nav-link:hover {
    color: #1e2180;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.header__hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #2e3192;
    transition: all 0.3s;
    border-radius: 2px;
}

.header__hamburger.active .header__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__hamburger.active .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active .header__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header__buttons {
    display: flex;
    gap: 10px;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    font-family: 'Sofia Sans', sans-serif;
}

.btn--primary {
    background-color: #2e3192;
    color: #ffffff;
}

.btn--primary:hover {
    background-color: #1e2180;
}

.btn--secondary {
    background-color: #2e3192;
    color: #ffffff;
}

.btn--secondary:hover {
    background-color: #1e2180;
}

.btn--cta {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn--cta:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Hero section */
.hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__video--desktop {
    display: block;
}

.hero__video--mobile {
    display: none;
}

.hero__fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero__fallback--desktop {
    background-image: url('img/herobgpc.webp');
}

.hero__fallback--mobile {
    background-image: url('img/herobgmobile.webp');
}

.hero__content {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.hero__text {
    margin-bottom: 25px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    backdrop-filter: blur(5px);
}

.hero__badge {
    display: inline-block;
    background-color: #ffd700;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero__title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: 'Sofia Sans', sans-serif;
}

.hero__subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero__highlight {
    color: #ffd700;
    display: block;
    font-size: 2.8rem;
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px;
    font-weight: 400;
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero__feature-icon {
    color: #00ff00;
    font-weight: bold;
    font-size: 1.1rem;
}

.hero__cta-section {
    text-align: center;
}

.hero__cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

/* Responsive styles */
@media (min-width: 391px) and (max-width: 768px) {
    .hero {
        height: 100vh;
    }
    
    .hero__content {
        height: 100vh;
        justify-content: center;
        padding: 20px;
    }
}

@media (min-width: 391px) and (max-width: 429px) {
    .hero {
        height: 58vh;
        min-height: 450px;
        max-height: 550px;
    }
    
    .hero__content {
        height: 58vh;
        min-height: 450px;
        max-height: 550px;
        justify-content: center;
        padding: 20px 15px;
    }
    
    .hero__title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 18px 15px;
        margin-bottom: 15px;
    }
    
    .hero__features {
        gap: 8px;
        margin-top: 12px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero__feature {
        font-size: 0.8rem;
    }
    
    .hero__badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        margin-bottom: 10px;
    }
    
    .btn--cta {
        padding: 12px 24px;
        font-size: 1rem;
        margin: 15px 0;
    }
    
    .hero__cta-note {
        font-size: 0.75rem;
        margin-top: 8px;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .header__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .header__nav.active {
        display: block;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .header__nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1rem;
    }

    .header__nav-link:last-child {
        border-bottom: none;
    }

    .header__logo {
        display: flex;
        align-items: center;
    }
    
    .header__logo img {
        height: 18px;
    }

    .header__right {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .header__buttons {
        display: flex;
    }
    
    .header__hamburger {
        display: flex;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero__content {
        height: 100vh;
        justify-content: center;
        padding: 35px 10px 25px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__highlight {
        font-size: 1.8rem;
    }
    
    .hero__description {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .hero__text {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .hero__features {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }
    
    .hero__feature {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .hero__badge {
        font-size: 12px;
        padding: 6px 10px;
        margin-bottom: 10px;
    }
    
    .btn--cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero__cta-note {
        font-size: 0.8rem;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .header__nav.active {
        display: block;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 0;
        padding: 15px;
    }

    .header__nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.95rem;
    }

    .header__nav-link:last-child {
        border-bottom: none;
    }

    .header__logo {
        display: flex;
        align-items: center;
    }
    
    .header__logo img {
        height: 16px;
    }

    .header__right {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .header__buttons {
        display: flex;
    }
    
    .header__hamburger {
        display: flex;
    }
    
    .btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .hero {
        height: 50vh;
        min-height: 320px;
        max-height: 420px;
    }
    
    .hero__content {
        height: 50vh;
        min-height: 320px;
        max-height: 420px;
        justify-content: center;
        padding: 8px 6px;
    }
    
    .hero__video--desktop {
        display: none;
    }
    
    .hero__video--mobile {
        display: block;
    }
    
    .hero__title {
        font-size: 1.2rem;
        line-height: 1;
        margin-bottom: 3px;
    }
    
    .hero__subtitle {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .hero__highlight {
        font-size: 1.1rem;
    }
    
    .hero__description {
        font-size: 0.65rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .hero__text {
        padding: 8px 6px;
        margin-bottom: 6px;
        max-width: 100%;
    }
    
    .hero__features {
        gap: 3px;
        margin-top: 4px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__feature {
        font-size: 0.6rem;
        text-align: center;
    }
    
    .hero__badge {
        font-size: 0.55rem;
        padding: 2px 4px;
        margin-bottom: 4px;
    }
    
    .btn--cta {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin: 6px 0;
        border-radius: 4px;
    }
    
    .hero__cta-note {
        font-size: 0.55rem;
        margin-top: 3px;
        line-height: 1.1;
    }
}

@media (max-width: 414px) and (min-height: 800px) {
    .hero {
        height: 68vh;
        min-height: 500px;
        max-height: 620px;
    }
    
    .hero__content {
        height: 68vh;
        min-height: 500px;
        max-height: 620px;
        padding: 25px 12px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__description {
        font-size: 1rem;
    }
    
    .hero__text {
        padding: 20px 18px;
    }
    
    .btn--cta {
        padding: 16px 32px;
        font-size: 1.2rem;
    }
}

/* iPhone 15/16 Pro - 393px width */
@media (max-width: 393px) and (max-height: 852px) and (min-height: 820px) {
    .hero {
        height: 42vh;
        min-height: 320px;
        max-height: 370px;
    }
    
    .hero__content {
        height: 42vh;
        min-height: 320px;
        max-height: 370px;
        padding: 14px 10px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.35rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .hero__description {
        font-size: 0.7rem;
        margin-bottom: 9px;
        line-height: 1.2;
    }
    
    .hero__text {
        padding: 13px 9px;
        margin-bottom: 9px;
    }
    
    .hero__features {
        gap: 5px;
        margin-top: 7px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero__feature {
        font-size: 0.65rem;
    }
    
    .hero__badge {
        font-size: 0.65rem;
        padding: 4px 7px;
        margin-bottom: 5px;
    }
    
    .btn--cta {
        padding: 9px 18px;
        font-size: 0.85rem;
        margin: 9px 0;
    }
    
    .hero__cta-note {
        font-size: 0.63rem;
        margin-top: 4px;
    }
}

@media (max-width: 360px) and (min-height: 780px) and (max-height: 780px) {
    .hero {
        height: 45vh;
        min-height: 300px;
        max-height: 350px;
    }
    
    .hero__content {
        height: 45vh;
        min-height: 300px;
        max-height: 350px;
        padding: 6px 4px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1rem;
        margin-bottom: 2px;
        line-height: 1;
    }
    
    .hero__subtitle {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    
    .hero__description {
        font-size: 0.55rem;
        margin-bottom: 4px;
        line-height: 1.1;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__text {
        padding: 6px 4px;
        margin-bottom: 4px;
    }
    
    .hero__features {
        gap: 2px;
        margin-top: 3px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__feature {
        font-size: 0.5rem;
    }
    
    .hero__badge {
        font-size: 0.5rem;
        padding: 1px 3px;
        margin-bottom: 3px;
    }
    
    .btn--cta {
        padding: 5px 10px;
        font-size: 0.65rem;
        margin: 4px 0;
    }
    
    .hero__cta-note {
        font-size: 0.5rem;
        margin-top: 2px;
        line-height: 1;
    }
}

@media (max-width: 360px) and (min-height: 760px) and (max-height: 800px) {
    .hero {
        height: 55vh;
        min-height: 380px;
        max-height: 430px;
    }
    
    .hero__content {
        height: 55vh;
        min-height: 380px;
        max-height: 430px;
        padding: 10px 8px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.3rem;
        margin-bottom: 5px;
        line-height: 1.05;
    }
    
    .hero__subtitle {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .hero__description {
        font-size: 0.7rem;
        margin-bottom: 8px;
        line-height: 1.25;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__text {
        padding: 10px 8px;
        margin-bottom: 8px;
    }
    
    .hero__features {
        gap: 4px;
        margin-top: 6px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__feature {
        font-size: 0.65rem;
    }
    
    .hero__badge {
        font-size: 0.6rem;
        padding: 3px 6px;
        margin-bottom: 6px;
    }
    
    .btn--cta {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 8px 0;
    }
    
    .hero__cta-note {
        font-size: 0.6rem;
        margin-top: 4px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) and (min-height: 640px) and (max-height: 736px) {
    .hero {
        height: 55vh;
        min-height: 380px;
        max-height: 420px;
    }
    
    .hero__content {
        height: 55vh;
        min-height: 380px;
        max-height: 420px;
        padding: 15px 10px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.4rem;
        margin-bottom: 6px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .hero__description {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 12px 10px;
        margin-bottom: 8px;
    }
    
    .hero__features {
        gap: 5px;
        margin-top: 8px;
    }
    
    .hero__feature {
        font-size: 0.7rem;
    }
    
    .hero__badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        margin-bottom: 6px;
    }
    
    .btn--cta {
        padding: 10px 18px;
        font-size: 0.85rem;
        margin: 8px 0;
    }
    
    .hero__cta-note {
        font-size: 0.6rem;
        margin-top: 5px;
    }
}

@media (max-width: 414px) and (min-height: 736px) and (max-height: 736px) {
    .hero {
        height: 58vh;
        min-height: 400px;
        max-height: 450px;
    }
    
    .hero__content {
        height: 58vh;
        min-height: 400px;
        max-height: 450px;
        padding: 18px 12px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.5rem;
        margin-bottom: 8px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .hero__description {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 15px 12px;
        margin-bottom: 10px;
    }
    
    .hero__features {
        gap: 6px;
        margin-top: 10px;
    }
    
    .hero__feature {
        font-size: 0.75rem;
    }
    
    .hero__badge {
        font-size: 0.65rem;
        padding: 5px 10px;
        margin-bottom: 8px;
    }
    
    .btn--cta {
        padding: 12px 22px;
        font-size: 0.9rem;
        margin: 10px 0;
    }
    
    .hero__cta-note {
        font-size: 0.65rem;
        margin-top: 6px;
    }
}

/* iPhone 12/13 Pro Max */
@media (max-width: 414px) and (min-height: 896px) {
    .hero {
        height: 65vh;
        min-height: 550px;
        max-height: 620px;
    }
    
    .hero__content {
        height: 65vh;
        min-height: 550px;
        max-height: 620px;
        padding: 25px 15px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .hero__features {
        gap: 8px;
        margin-top: 12px;
    }
    
    .hero__feature {
        font-size: 0.8rem;
    }
    
    .hero__badge {
        font-size: 0.8rem;
        padding: 7px 12px;
        margin-bottom: 12px;
    }
    
    .btn--cta {
        padding: 15px 30px;
        font-size: 1.05rem;
        margin: 15px 0;
    }
    
    .hero__cta-note {
        font-size: 0.75rem;
        margin-top: 8px;
    }
}

/* iPhone XS Max and similar */
@media (max-width: 375px) and (min-height: 812px) and (max-height: 896px) {
    .hero {
        height: 62vh;
        min-height: 500px;
        max-height: 550px;
    }
    
    .hero__content {
        height: 62vh;
        min-height: 500px;
        max-height: 550px;
        padding: 20px 12px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.7rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .hero__description {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 18px 12px;
        margin-bottom: 12px;
    }
    
    .hero__features {
        gap: 6px;
        margin-top: 10px;
    }
    
    .hero__feature {
        font-size: 0.75rem;
    }
    
    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 10px;
        margin-bottom: 10px;
    }
    
    .btn--cta {
        padding: 13px 26px;
        font-size: 1rem;
        margin: 12px 0;
    }
    
    .hero__cta-note {
        font-size: 0.7rem;
        margin-top: 6px;
    }
}

@media (max-width: 360px) and (min-height: 640px) and (max-height: 740px) {
    .hero {
        height: 52vh;
        min-height: 340px;
        max-height: 380px;
    }
    
    .hero__content {
        height: 52vh;
        min-height: 340px;
        max-height: 380px;
        padding: 12px 8px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.25rem;
        margin-bottom: 5px;
        line-height: 1.05;
    }
    
    .hero__subtitle {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .hero__description {
        font-size: 0.7rem;
        margin-bottom: 7px;
        line-height: 1.25;
    }
    
    .hero__text {
        padding: 10px 8px;
        margin-bottom: 7px;
    }
    
    .hero__features {
        gap: 4px;
        margin-top: 6px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__feature {
        font-size: 0.65rem;
    }
    
    .hero__badge {
        font-size: 0.6rem;
        padding: 3px 6px;
        margin-bottom: 5px;
    }
    
    .btn--cta {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 7px 0;
    }
    
    .hero__cta-note {
        font-size: 0.6rem;
        margin-top: 4px;
    }
}

@media (max-width: 320px) {
    .hero {
        height: 55vh;
        min-height: 320px;
        max-height: 380px;
    }
    
    .hero__content {
        height: 55vh;
        min-height: 320px;
        max-height: 380px;
        padding: 10px 6px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.2rem;
        margin-bottom: 4px;
        line-height: 1;
    }
    
    .hero__subtitle {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    
    .hero__description {
        font-size: 0.7rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .hero__text {
        padding: 10px 6px;
        margin-bottom: 6px;
    }
    
    .hero__features {
        gap: 3px;
        margin-top: 4px;
    }
    
    .hero__feature {
        font-size: 0.6rem;
    }
    
    .hero__badge {
        font-size: 0.55rem;
        padding: 2px 5px;
        margin-bottom: 4px;
    }
    
    .btn--cta {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 6px 0;
    }
    
    .hero__cta-note {
        font-size: 0.55rem;
        margin-top: 3px;
    }
}

@media (max-width: 280px) {
    .hero {
        height: 50vh;
        min-height: 280px;
        max-height: 320px;
    }
    
    .hero__content {
        height: 50vh;
        min-height: 280px;
        max-height: 320px;
        padding: 8px 4px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1rem;
        margin-bottom: 3px;
        line-height: 1;
    }
    
    .hero__subtitle {
        font-size: 0.6rem;
        margin-bottom: 3px;
    }
    
    .hero__description {
        font-size: 0.6rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    
    .hero__text {
        padding: 6px 4px;
        margin-bottom: 5px;
    }
    
    .hero__features {
        gap: 2px;
        margin-top: 3px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__feature {
        font-size: 0.5rem;
    }
    
    .hero__badge {
        font-size: 0.5rem;
        padding: 2px 4px;
        margin-bottom: 3px;
    }
    
    .btn--cta {
        padding: 5px 10px;
        font-size: 0.7rem;
        margin: 5px 0;
    }
    
    .hero__cta-note {
        font-size: 0.5rem;
        margin-top: 2px;
    }
}

@media (max-width: 540px) and (min-height: 960px) {
    .hero {
        height: 62vh;
        min-height: 520px;
        max-height: 600px;
    }
    
    .hero__content {
        height: 62vh;
        min-height: 520px;
        max-height: 600px;
        padding: 25px 15px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero__description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 18px 15px;
        margin-bottom: 15px;
    }
    
    .hero__features {
        gap: 8px;
        margin-top: 12px;
    }
    
    .hero__feature {
        font-size: 0.8rem;
    }
    
    .hero__badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 10px;
    }
    
    .btn--cta {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 15px 0;
    }
    
    .hero__cta-note {
        font-size: 0.7rem;
        margin-top: 8px;
    }
}

/* General iPhone Max models catch-all */
@media (max-width: 430px) and (min-height: 850px) {
    .hero {
        height: 65vh;
        min-height: 550px;
        max-height: 620px;
    }
    
    .hero__content {
        height: 65vh;
        min-height: 550px;
        max-height: 620px;
        padding: 25px 15px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.9rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }
    
    .hero__description {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .hero__features {
        gap: 8px;
        margin-top: 12px;
    }
    
    .hero__feature {
        font-size: 0.85rem;
    }
    
    .hero__badge {
        font-size: 0.85rem;
        padding: 7px 12px;
        margin-bottom: 12px;
    }
    
    .btn--cta {
        padding: 15px 30px;
        font-size: 1.1rem;
        margin: 15px 0;
    }
    
    .hero__cta-note {
        font-size: 0.8rem;
        margin-top: 8px;
    }
}

/* iPhone 14/15 Pro Max and similar large devices */
@media (max-width: 430px) and (min-height: 926px) {
    .hero {
        height: 65vh;
        min-height: 550px;
        max-height: 620px;
    }
    
    .hero__content {
        height: 65vh;
        min-height: 550px;
        max-height: 620px;
        padding: 25px 15px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.9rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }
    
    .hero__description {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .hero__features {
        gap: 8px;
        margin-top: 12px;
    }
    
    .hero__feature {
        font-size: 0.85rem;
    }
    
    .hero__badge {
        font-size: 0.85rem;
        padding: 7px 12px;
        margin-bottom: 12px;
    }
    
    .btn--cta {
        padding: 15px 30px;
        font-size: 1.1rem;
        margin: 15px 0;
    }
    
    .hero__cta-note {
        font-size: 0.8rem;
        margin-top: 8px;
    }
}

/* iPhone 13/14 Pro Max */
@media (max-width: 428px) and (min-height: 926px) {
    .hero {
        height: 65vh;
        min-height: 550px;
        max-height: 620px;
    }
    
    .hero__content {
        height: 65vh;
        min-height: 550px;
        max-height: 620px;
        padding: 25px 15px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.85rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }
    
    .hero__description {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero__text {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .hero__features {
        gap: 8px;
        margin-top: 12px;
    }
    
    .hero__feature {
        font-size: 0.85rem;
    }
    
    .hero__badge {
        font-size: 0.85rem;
        padding: 7px 12px;
        margin-bottom: 12px;
    }
    
    .btn--cta {
        padding: 15px 30px;
        font-size: 1.1rem;
        margin: 15px 0;
    }
    
    .hero__cta-note {
        font-size: 0.8rem;
        margin-top: 8px;
    }
}

@media (max-width: 375px) and (max-height: 667px) {
    .hero {
        height: 58vh;
        min-height: 350px;
        max-height: 420px;
    }
    
    .hero__content {
        height: 58vh;
        min-height: 350px;
        max-height: 420px;
        padding: 12px 8px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.4rem;
        margin-bottom: 6px;
        line-height: 1.05;
    }
    
    .hero__subtitle {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .hero__description {
        font-size: 0.75rem;
        margin-bottom: 8px;
        line-height: 1.25;
    }
    
    .hero__text {
        padding: 12px 8px;
        margin-bottom: 8px;
    }
    
    .hero__features {
        gap: 4px;
        margin-top: 6px;
    }
    
    .hero__feature {
        font-size: 0.65rem;
    }
    
    .hero__badge {
        font-size: 0.6rem;
        padding: 3px 6px;
        margin-bottom: 6px;
    }
    
    .btn--cta {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin: 8px 0;
    }
    
    .hero__cta-note {
        font-size: 0.6rem;
        margin-top: 4px;
    }
}

/* iPhone 15/16 Pro - 390px width */
@media (max-width: 390px) and (max-height: 844px) and (min-height: 800px) {
    .hero {
        height: 42vh;
        min-height: 320px;
        max-height: 370px;
    }
    
    .hero__content {
        height: 42vh;
        min-height: 320px;
        max-height: 370px;
        padding: 14px 10px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.35rem;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    
    .hero__subtitle {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    
    .hero__description {
        font-size: 0.7rem;
        margin-bottom: 9px;
        max-width: 95%;
        line-height: 1.2;
    }
    
    .hero__text {
        padding: 13px 9px;
        margin-bottom: 9px;
        border-radius: 8px;
    }
    
    .hero__features {
        gap: 5px;
        margin-top: 7px;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero__feature {
        font-size: 0.65rem;
    }
    
    .hero__badge {
        font-size: 0.65rem;
        padding: 4px 7px;
        margin-bottom: 5px;
    }
    
    .btn--cta {
        padding: 9px 18px;
        font-size: 0.85rem;
        margin: 9px 0;
    }
    
    .hero__cta-note {
        font-size: 0.63rem;
        margin-top: 4px;
    }
}

@media (max-width: 480px) and (orientation: landscape) {
    .hero {
        height: 85vh;
        min-height: 320px;
        max-height: 450px;
    }
    
    .hero__content {
        height: 85vh;
        min-height: 320px;
        max-height: 450px;
        padding: 15px 20px;
        justify-content: center;
    }
    
    .hero__title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .hero__description {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .hero__text {
        padding: 12px 10px;
        margin-bottom: 10px;
    }
    
    .hero__features {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-top: 8px;
    }
    
    .hero__feature {
        font-size: 0.7rem;
    }
    
    .btn--cta {
        padding: 10px 20px;
        font-size: 0.95rem;
        margin: 10px 0;
    }
    
    .hero__cta-note {
        font-size: 0.65rem;
        margin-top: 5px;
    }
}

/* JavaScript fallback for video */
.no-video .hero__video {
    display: none;
}

.no-video .hero__fallback--desktop {
    display: block;
}

@media (max-width: 480px) {
    .no-video .hero__fallback--desktop {
        display: none;
    }
    
    .no-video .hero__fallback--mobile {
        display: block;
    }
}

/* Advantages section */
.advantages {
    padding: 80px 0 40px 0;
    background-color: #ebf1ff;
}

.advantages__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advantages__logo {
    background-color: #ff3333;
    color: #ffffff;
    padding: 8px 16px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.advantages__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.advantages__intro {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.advantages__item {
    margin-bottom: 30px;
}

.advantages__item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantages__item p {
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

.advantages__cta {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.advantages__cta:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.advantages__image {
    text-align: center;
}

.advantages__text {
    text-align: left;
}

.advantages__cta-wrapper {
    text-align: center;
    margin-top: 20px;
}

.advantages__image {
    margin-bottom: 0;
}

.advantages__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .advantages {
        padding: 60px 0;
    }
    
    .advantages__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
    
    .advantages__item h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .advantages {
        padding: 40px 0;
    }
    
    .advantages__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .advantages__item {
        margin-bottom: 25px;
    }
    
    .advantages__item h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .advantages__item p {
        font-size: 18px;
    }
}

/* Pros and Cons section */
.pros-cons {
    padding: 40px 0;
    background-color: #ebf1ff;
}

.pros-cons__content {
    text-align: left;
}

.pros-cons__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.pros-cons__intro {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.pros-cons__table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.pros-cons__table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pros-cons__table th {
    background: #dc2626;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.pros-cons__table th.pro-col {
    background: #16a34a;
}

.pros-cons__table th.con-col {
    background: #dc2626;
}

.pros-cons__table td {
    padding: 20px 15px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.pros-cons__table td ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-cons__table td li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.pros-cons__table td li:last-child {
    margin-bottom: 0;
}

.pros-cons__table .icon {
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pros-cons__table .icon-pro {
    color: #16a34a;
}

.pros-cons__table .icon-con {
    color: #dc2626;
}

.pro-header-mobile,
.con-header-mobile {
    display: none;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.pro-header-mobile {
    background: #16a34a;
    color: white;
}

.con-header-mobile {
    background: #dc2626;
    color: white;
}

@media (max-width: 768px) {
    .pros-cons__table,
    .pros-cons__table thead,
    .pros-cons__table tbody,
    .pros-cons__table th,
    .pros-cons__table td,
    .pros-cons__table tr {
        display: block;
    }
    
    .pros-cons__table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .pros-cons__table tr {
        border: 1px solid #ccc;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        background: white;
    }
    
    .pros-cons__table td {
        border: none;
        position: relative;
        padding: 15px;
    }
    
    .pro-header-mobile,
    .con-header-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .pros-cons {
        padding: 40px 0;
    }
    
    .pros-cons__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .pros-cons__intro {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

/* Popular Games section */
.popular-games {
    padding: 40px 0;
    background-color: #ebf1ff;
}

.popular-games__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.popular-games__intro {
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 25px;
}

.popular-games__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.popular-games__item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.popular-games__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.popular-games__item-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.popular-games__item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.popular-games__item-description {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 8px;
}

.popular-games__item-provider {
    font-size: 10px;
    color: #dc2626;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-games__cta-wrapper {
    text-align: center;
    margin-top: 25px;
}

.popular-games__cta {
    display: inline-block;
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.popular-games__cta:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .popular-games {
        padding: 35px 0;
    }
    
    .popular-games__title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .popular-games__intro {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .popular-games__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .popular-games__item {
        padding: 12px;
    }
    
    .popular-games__item-icon {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .popular-games__item-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .popular-games {
        padding: 30px 0;
    }
    
    .popular-games__title {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }
    
    .popular-games__intro {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .popular-games__grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }
    
    .popular-games__item {
        padding: 10px;
    }
    
    .popular-games__item-icon {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .popular-games__item-title {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }
    
    .popular-games__item-description {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .popular-games__cta {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Registration section */
.registration {
    padding: 40px 0 80px 0;
    background-color: #ebf1ff;
}

.registration__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.registration__text {
    text-align: left;
}

.registration__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.registration__intro {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.registration__steps {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
    counter-reset: step-counter;
}

.registration__steps li {
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    counter-increment: step-counter;
}

.registration__steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ff0000;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.registration__outro {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 0;
}

.registration__cta-wrapper {
    text-align: center;
    margin-top: 20px;
}

.registration__cta {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.registration__cta:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .registration {
        padding: 60px 0;
    }
    
    .registration__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .registration {
        padding: 40px 0;
    }
    
    .registration__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .registration__intro,
    .registration__steps,
    .registration__outro {
        font-size: 18px;
    }
}

/* Bonus section */
.bonus {
    padding: 40px 0 80px 0;
    background-color: #ebf1ff;
}

.bonus__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bonus__text {
    text-align: left;
}

.bonus__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.bonus__intro,
.bonus__welcome,
.bonus__outro {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.bonus__list {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
    counter-reset: bonus-counter;
}

.bonus__list li {
    margin-bottom: 15px;
    padding-left: 50px;
    position: relative;
    counter-increment: bonus-counter;
}

.bonus__list li::before {
    content: counter(bonus-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ff0000;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.bonus__cta-wrapper {
    text-align: center;
    margin-top: 20px;
}

.bonus__cta {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.bonus__cta:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.bonus__image {
    text-align: center;
}

.bonus__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .bonus {
        padding: 30px 0 60px 0;
    }
    
    .bonus__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bonus__title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .bonus {
        padding: 20px 0 40px 0;
    }
    
    .bonus__title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .bonus__intro,
    .bonus__welcome,
    .bonus__outro,
    .bonus__list {
        font-size: 18px;
    }
}

/* Payment Methods section */
.payment-methods {
    padding: 0 0 80px 0;
    background-color: #ebf1ff;
}

.payment-methods__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.payment-methods__text {
    text-align: left;
}

.payment-methods__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.payment-methods__intro,
.payment-methods__description {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.payment-methods__table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.payment-methods__table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.payment-methods__table thead {
    background-color: #ff0000;
    color: #ffffff;
}

.payment-methods__table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    border: none;
}

.payment-methods__table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 16px;
    color: #333333;
}

.payment-methods__table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.payment-methods__table tbody tr:hover {
    background-color: #f0f0f0;
    transition: background-color 0.3s;
}

.payment-methods__table tbody tr:last-child td {
    border-bottom: none;
}

.payment-methods__cta-wrapper {
    text-align: center;
    margin-top: 20px;
}

.payment-methods__cta {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.payment-methods__cta:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .payment-methods {
        padding: 30px 0 60px 0;
    }
    
    .payment-methods__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
    
    .payment-methods__table th,
    .payment-methods__table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .payment-methods {
        padding: 20px 0 40px 0;
    }
    
    .payment-methods__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .payment-methods__intro,
    .payment-methods__description {
        font-size: 18px;
    }
    
    .payment-methods__table th,
    .payment-methods__table td {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .payment-methods__table th {
        font-size: 14px;
    }
}

/* Slot Machines section */
.slot-machines {
    padding: 0 0 80px 0;
    background-color: #ebf1ff;
}

.slot-machines__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.slot-machines__text {
    text-align: left;
}

.slot-machines__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.slot-machines__intro,
.slot-machines__description {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.slot-machines__providers {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 0;
    padding-left: 20px;
}

.slot-machines__providers li {
    margin-bottom: 8px;
    color: #333333;
}

@media (max-width: 768px) {
    .slot-machines {
        padding: 0 0 60px 0;
    }
    
    .slot-machines__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .slot-machines {
        padding: 0 0 40px 0;
    }
    
    .slot-machines__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .slot-machines__intro,
    .slot-machines__description,
    .slot-machines__providers {
        font-size: 18px;
    }
}

/* Live Casino section */
.live-casino {
    padding: 0 0 80px 0;
    background-color: #ebf1ff;
}

.live-casino__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.live-casino__text {
    text-align: left;
}

.live-casino__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.live-casino__intro,
.live-casino__description {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.live-casino__description {
    margin-bottom: 0;
}

.live-casino__image {
    text-align: center;
}

.live-casino__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .live-casino {
        padding: 0 0 60px 0;
    }
    
    .live-casino__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .live-casino {
        padding: 0 0 40px 0;
    }
    
    .live-casino__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .live-casino__intro,
    .live-casino__description {
        font-size: 18px;
    }
}

/* Casino Mobile section */
.casino-mobile {
    padding: 0 0 80px 0;
    background-color: #ebf1ff;
}

.casino-mobile__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.casino-mobile__text {
    text-align: left;
}

.casino-mobile__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.casino-mobile__intro,
.casino-mobile__description {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.casino-mobile__description {
    margin-bottom: 0;
}

.casino-mobile__intro em {
    font-style: italic;
    color: #333333;
}

.casino-mobile__cta-wrapper {
    text-align: center;
    margin-top: 20px;
}

.casino-mobile__cta {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.casino-mobile__cta:hover {
    background-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.casino-mobile__image {
    text-align: center;
}

.casino-mobile__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .casino-mobile {
        padding: 0 0 60px 0;
    }
    
    .casino-mobile__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .casino-mobile__image {
        order: 2;
    }
    
    .casino-mobile__text {
        order: 1;
    }
    
    .casino-mobile__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .casino-mobile {
        padding: 0 0 40px 0;
    }
    
    .casino-mobile__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .casino-mobile__intro,
    .casino-mobile__description {
        font-size: 18px;
    }
}

/* Customer Support section */
.customer-support {
    padding: 0 0 80px 0;
    background-color: #ebf1ff;
}

.customer-support__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.customer-support__text {
    text-align: left;
}

.customer-support__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.customer-support__intro,
.customer-support__description {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.customer-support__methods {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    counter-reset: support-counter;
}

.customer-support__methods li {
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
    counter-increment: support-counter;
}

.customer-support__methods li::before {
    content: counter(support-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #ff0000;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 768px) {
    .customer-support {
        padding: 0 0 60px 0;
    }
    
    .customer-support__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .customer-support {
        padding: 0 0 40px 0;
    }
    
    .customer-support__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .customer-support__intro,
    .customer-support__description,
    .customer-support__methods {
        font-size: 18px;
    }
}

/* Security and Legality section */
.security-legality {
    padding: 0 0 80px 0;
    background-color: #ebf1ff;
}

.security-legality__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.security-legality__text {
    text-align: left;
}

.security-legality__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.security-legality__intro,
.security-legality__description {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 30px;
}

.security-legality__description {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .security-legality {
        padding: 0 0 60px 0;
    }
    
    .security-legality__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .security-legality {
        padding: 0 0 40px 0;
    }
    
    .security-legality__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .security-legality__intro,
    .security-legality__description {
        font-size: 18px;
    }
}

/* FAQ section */
.faq {
    padding: 0 0 80px 0;
    background-color: #ebf1ff;
}

.faq__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq__question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 20px;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__question:hover {
    background-color: #e9ecef;
}

.faq__question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0000;
    transition: transform 0.3s;
}

.faq__item.active .faq__question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq__item.active .faq__answer {
    padding: 20px;
    max-height: 500px;
}

.faq__answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 0 0 60px 0;
    }
    
    .faq__title {
        font-size: 2.1rem;
        margin-bottom: 30px;
    }
    
    .faq__question {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .faq__answer {
        padding: 0 15px;
    }
    
    .faq__item.active .faq__answer {
        padding: 15px;
    }
    
    .faq__answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 0 0 40px 0;
    }
    
    .faq__title {
        font-size: 1.9rem;
        margin-bottom: 25px;
    }
    
    .faq__question {
        font-size: 1rem;
        padding: 12px;
    }
    
    .faq__answer {
        padding: 0 12px;
    }
    
    .faq__item.active .faq__answer {
        padding: 12px;
    }
    
    .faq__answer p {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* Footer */
.footer {
    background-color: #95acff;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer__content {
    text-align: center;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.footer__logo img {
    height: 40px;
}

.footer__nav {
    display: flex;
    gap: 30px;
}

.footer__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #dc2626;
}

.footer__organizations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer__org-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer__org-link:hover {
    opacity: 0.8;
}

.footer__org-link img {
    width: 80px;
    height: 40px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 3px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__warning {
    background-color: #1a365d;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__warning p {
    font-size: 12px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

.footer__warning a {
    color: #dc2626;
    text-decoration: none;
}

.footer__warning a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer__top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .footer__nav {
        gap: 20px;
    }
    
    .footer__organizations {
        gap: 18px;
        margin-bottom: 25px;
    }
    
    .footer__org-link img {
        width: 70px;
        height: 35px;
        padding: 4px;
    }
    
    .footer__warning {
        padding: 15px;
    }
    
    .footer__warning p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0 12px;
        margin-top: 30px;
    }
    
    .footer__top {
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .footer__logo img {
        height: 30px;
    }
    
    .footer__nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer__link {
        font-size: 13px;
    }
    
    .footer__organizations {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .footer__org-link img {
        width: 60px;
        height: 30px;
        padding: 3px;
    }
    
    .footer__warning {
        padding: 12px;
    }
    
    .footer__warning p {
        font-size: 10px;
    }
}

/* Static Page Styles */
.static-page {
    padding: 60px 0;
    background-color: #ebf1ff;
}

.static-page h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 10px;
}

.static-page .last-updated {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 40px;
    font-style: italic;
}

.static-page article h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.static-page article p,
.static-page article li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 15px;
}

.static-page article ul,
.static-page article ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.static-page article ul {
    list-style: disc;
}

.static-page article a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.static-page article a:hover {
    text-decoration: underline;
}

.static-page article .btn {
    color: inherit;
}

.static-page article .btn--cta {
    color: #ffffff !important;
    font-family: 'Sofia Sans', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

@media (max-width: 768px) {
    .static-page {
        padding: 40px 0;
    }

    .static-page h1 {
        font-size: 2.2rem;
    }

    .static-page article h2 {
        font-size: 2.1rem;
    }
}

@media (max-width: 480px) {
    .static-page h1 {
        font-size: 1.8rem;
    }

    .static-page article h2 {
        font-size: 1.9rem;
    }

    .static-page article p,
    .static-page article li {
        font-size: 0.95rem;
    }

    .static-page article ul,
    .static-page article ol {
        padding-left: 20px;
    }
}

/* Hero section for app page */
.hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-content {
    flex: 1;
}

.hero-subheading {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-image {
    flex: 0 0 auto;
    max-width: 300px;
}

.hero-image__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-section {
        gap: 20px;
    }
    
    .hero-image {
        max-width: 200px;
    }
}

/* Content image styles */
.content-image {
    margin: 30px 0;
    text-align: center;
}

.content-image__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Login content layout */
.login-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.login-content__text {
    flex: 1;
}

.login-content__image {
    flex: 0 0 300px;
}

.login-content__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .login-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .login-content__image {
        flex: none;
        text-align: center;
    }
    
    .login-content__image img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .login-content {
        gap: 1rem;
    }
    
    .login-content__image img {
        max-width: 90%;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(46, 49, 146, 0.95);
    color: #ffffff;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.cookie-banner__description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: #ffffff;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Sofia Sans', sans-serif;
}

.cookie-banner__btn--accept {
    background-color: #ff0000;
    color: #ffffff;
}

.cookie-banner__btn--accept:hover {
    background-color: #e60000;
    transform: translateY(-1px);
}

.cookie-banner__btn--reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-banner__btn--reject:hover {
    background-color: #ffffff;
    color: #2e3192;
}

.cookie-banner__link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.cookie-banner__link:hover {
    color: #ff0000;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 0;
    }
    
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-banner__actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .cookie-banner__title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .cookie-banner__description {
        font-size: 0.85rem;
    }
    
    .cookie-banner__btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px 0;
    }
    
    .cookie-banner__actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-banner__btn {
        width: 100%;
        max-width: 200px;
    }
}