* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #e20a0a;
    background: linear-gradient(135deg, #3d075c 0%, #51067d 100%);
    min-height: 100vh;
}

.topbar_wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(61, 7, 92, 0.15);
}

.nav_container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand_zone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo_image {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.site_title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #3d075c;
}

.menu_links {
    display: flex;
    gap: 32px;
}

.nav_item {
    font-weight: 500;
    text-decoration: none;
    color: #e20a0a;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px 16px;
    border-radius: 8px;
}

.nav_item:hover,
.nav_item.active_link {
    color: #3d075c;
    background: #fff694;
    transform: translateY(-2px);
}

.hamburger_btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger_line {
    width: 25px;
    height: 3px;
    background: #3d075c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.main_showcase {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.content_wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

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

.text_area {
    color: white;
}

.primary_headline {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff694 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle_text {
    font-size: 20px;
    font-weight: 600;
    color: #fff694;
    margin-bottom: 24px;
}

.description_content {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.action_buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary_btn,
.secondary_btn {
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.primary_btn {
    background: linear-gradient(135deg, #fff694 0%, #ffffff 100%);
    color: #3d075c;
    box-shadow: 0 8px 25px rgba(255, 246, 148, 0.3);
}

.primary_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 246, 148, 0.4);
}

.secondary_btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary_btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff694;
    transform: translateY(-2px);
}

.visual_area {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero_graphic {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bonus_highlight {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fff694 0%, #ffffff 100%);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 246, 148, 0.3);
}

.bonus_label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #3d075c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus_amount {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #51067d;
    margin-top: 2px;
}

@media (max-width: 890px) {
    .nav_container {
        padding: 0 20px;
    }
    
    .menu_links {
        display: none;
    }
    
    .hamburger_btn {
        display: flex;
    }
    
    .promo_block {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .visual_area {
        order: -1;
    }
    
    .action_buttons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .main_showcase {
        padding: 40px 0;
    }
    
    .content_wrapper {
        padding: 0 16px;
    }
    
    .promo_block {
        gap: 30px;
    }
    
    .action_buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary_btn,
    .secondary_btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .bonus_highlight {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 16px;
        display: inline-block;
    }
}

.review_segment {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    padding: 80px 0;
    backdrop-filter: blur(5px);
}

.review_layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: start;
}

.review_header {
    margin-bottom: 32px;
}

.section_title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.rating_display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars_group {
    display: flex;
    gap: 3px;
}

.star_icon {
    color: #fff694;
    font-size: 24px;
    text-shadow: 0 2px 8px rgba(255, 246, 148, 0.3);
}

.rating_text {
    font-size: 20px;
    font-weight: 600;
    color: #fff694;
    background: rgba(255, 246, 148, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 246, 148, 0.2);
}

.review_description {
    margin-bottom: 42px;
}

.review_description p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature_box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.feature_box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 246, 148, 0.3);
    transform: translateY(-2px);
}

.feature_icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff694 0%, #ffffff 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.feature_content h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.feature_content span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.visual_column {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review_image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.trust_badge {
    margin-top: 24px;
    background: linear-gradient(135deg, #3d075c 0%, #51067d 100%);
    border: 2px solid #fff694;
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(255, 246, 148, 0.2);
}

.badge_text {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff694;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge_subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 1280px) {
    .review_segment {
        padding: 70px 0;
    }
    
    .review_layout {
        gap: 60px;
    }
}

@media (max-width: 890px) {
    .review_segment {
        padding: 60px 0;
    }
    
    .review_layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .features_grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .review_image {
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .review_segment {
        padding: 50px 0;
    }
    
    .review_layout {
        gap: 40px;
    }
    
    .section_title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 14px;
    }
    
    .stars_group {
        gap: 2px;
    }
    
    .star_icon {
        font-size: 20px;
    }
    
    .rating_text {
        font-size: 16px;
        padding: 4px 10px;
    }
    
    .review_description p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .features_grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .feature_box {
        padding: 16px;
        gap: 14px;
    }
    
    .feature_icon {
        font-size: 24px;
        width: 44px;
        height: 44px;
    }
    
    .feature_content h4 {
        font-size: 15px;
    }
    
    .feature_content span {
        font-size: 13px;
    }
    
    .review_image {
        max-width: 300px;
        border-radius: 14px;
    }
    
    .trust_badge {
        margin-top: 20px;
        padding: 14px 20px;
        border-radius: 12px;
    }
    
    .badge_text {
        font-size: 16px;
    }
    
    .badge_subtitle {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .review_segment {
        padding: 40px 0;
    }
    
    .section_title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .rating_display {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .review_description p {
        font-size: 14px;
    }
    
    .feature_box {
        padding: 14px;
        gap: 12px;
    }
    
    .feature_icon {
        font-size: 22px;
        width: 40px;
        height: 40px;
    }
    
    .review_image {
        max-width: 260px;
    }
}

@media (max-width: 360px) {
    .features_grid {
        gap: 12px;
    }
    
    .feature_box {
        padding: 12px;
    }
    
    .review_image {
        max-width: 220px;
    }
    
    .trust_badge {
        padding: 12px 16px;
    }
}

.special_deals {
    background: linear-gradient(135deg, #111726 0%, #3d075c 35%, #51067d 65%, #2d1b69 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.special_deals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 246, 148, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(81, 6, 125, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.deals_container {
    position: relative;
    z-index: 2;
}

.offers_header {
    text-align: center;
    margin-bottom: 60px;
}

.deals_title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff694 0%, #ffffff 70%, #fff694 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(255, 246, 148, 0.3);
}

.deals_subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bonus_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.bonus_card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.bonus_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 246, 148, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bonus_card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 246, 148, 0.4);
    box-shadow: 0 20px 60px rgba(255, 246, 148, 0.15);
}

.bonus_card:hover::before {
    opacity: 1;
}

.premium_offer {
    border: 2px solid #fff694;
    background: rgba(255, 246, 148, 0.05);
}

.standard_offer {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer_badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(135deg, #fff694 0%, #ffffff 100%);
    color: #3d075c;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 246, 148, 0.3);
}

.bonus_content {
    padding-top: 16px;
}

.bonus_title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.bonus_details {
    text-align: center;
    margin-bottom: 28px;
}

.bonus_value {
    font-size: 32px;
    font-weight: 700;
    color: #fff694;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(255, 246, 148, 0.3);
}

.bonus_extras {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.code_section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code_label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-weight: 500;
}

.code_display {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.bonus_code {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #fff694;
    background: rgba(255, 246, 148, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px dashed #fff694;
    letter-spacing: 2px;
}

.copy_btn {
    background: linear-gradient(135deg, #3d075c 0%, #51067d 100%);
    color: white;
    border: 1px solid rgba(255, 246, 148, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy_btn:hover {
    background: linear-gradient(135deg, #51067d 0%, #3d075c 100%);
    border-color: #fff694;
    transform: scale(1.05);
}

.claim_button {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.premium_btn {
    background: linear-gradient(135deg, #fff694 0%, #ffffff 100%);
    color: #3d075c;
    box-shadow: 0 8px 25px rgba(255, 246, 148, 0.4);
}

.premium_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 246, 148, 0.5);
}

.standard_btn {
    background: linear-gradient(135deg, #51067d 0%, #3d075c 100%);
    color: white;
    border: 2px solid #fff694;
    box-shadow: 0 8px 25px rgba(81, 6, 125, 0.3);
}

.standard_btn:hover {
    background: linear-gradient(135deg, #3d075c 0%, #51067d 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(81, 6, 125, 0.4);
}

.terms_notice {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms_notice p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1280px) {
    .special_deals {
        padding: 80px 0;
    }
    
    .bonus_cards {
        gap: 28px;
        margin-bottom: 45px;
    }
}

@media (max-width: 890px) {
    .special_deals {
        padding: 70px 0;
    }
    
    .bonus_cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    
    .bonus_card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .special_deals {
        padding: 60px 0;
    }
    
    .offers_header {
        margin-bottom: 50px;
    }
    
    .deals_title {
        font-size: clamp(2rem, 7vw, 2.75rem);
        margin-bottom: 14px;
    }
    
    .deals_subtitle {
        font-size: 16px;
    }
    
    .bonus_cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .bonus_card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .bonus_title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .bonus_value {
        font-size: 28px;
    }
    
    .bonus_extras {
        font-size: 15px;
    }
    
    .code_section {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .bonus_code {
        font-size: 18px;
        padding: 6px 12px;
    }
    
    .copy_btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .claim_button {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .special_deals {
        padding: 50px 0;
    }
    
    .bonus_card {
        padding: 20px;
    }
    
    .offer_badge {
        right: 16px;
        padding: 6px 16px;
        font-size: 11px;
    }
    
    .bonus_title {
        font-size: 18px;
    }
    
    .bonus_value {
        font-size: 24px;
    }
    
    .code_display {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .bonus_code {
        text-align: center;
        font-size: 16px;
    }
    
    .copy_btn {
        width: 100%;
        padding: 8px;
    }
}

@media (max-width: 360px) {
    .bonus_card {
        padding: 16px;
    }
    
    .terms_notice {
        padding: 16px;
    }
    
    .terms_notice p {
        font-size: 12px;
    }
}

.payment_zone {
    background: rgba(255, 255, 255, 0.98);
    padding: 70px 0;
    position: relative;
}

.payment_zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 7, 92, 0.02) 0%, rgba(81, 6, 125, 0.05) 100%);
    pointer-events: none;
}

.payment_header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.payment_title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: #3d075c;
    margin-bottom: 16px;
}

.payment_description {
    font-size: 16px;
    color: #e20a0a;
    font-weight: 500;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.methods_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.payment_card {
    background: white;
    border: 1px solid rgba(61, 7, 92, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(61, 7, 92, 0.08);
    position: relative;
    overflow: hidden;
}

.payment_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3d075c 0%, #51067d 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.payment_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(61, 7, 92, 0.15);
    border-color: rgba(255, 246, 148, 0.4);
}

.payment_card:hover::before {
    transform: scaleX(1);
}

.popular_method {
    border: 2px solid #fff694;
    background: linear-gradient(135deg, #fff694 0%, #ffffff 100%);
    position: relative;
}

.popular_method::after {
    content: 'Beliebt';
    position: absolute;
    top: -1px;
    right: 16px;
    background: #3d075c;
    color: #fff694;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method_label {
    font-size: 12px;
    color: rgba(150, 28, 28, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.popular_method .method_label {
    color: rgba(61, 7, 92, 0.7);
}

.method_name {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #3d075c;
    margin-bottom: 16px;
}

.method_details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.processing_time {
    font-size: 14px;
    color: #e20a0a;
    font-weight: 500;
}

.min_amount {
    font-size: 13px;
    color: rgba(150, 28, 28, 0.7);
    font-weight: 500;
}

.popular_method .processing_time {
    color: #51067d;
    font-weight: 600;
}

.popular_method .min_amount {
    color: rgba(81, 6, 125, 0.8);
}

.security_notice {
    background: linear-gradient(135deg, #3d075c 0%, #51067d 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(61, 7, 92, 0.2);
}

.security_notice p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1280px) {
    .payment_zone {
        padding: 60px 0;
    }
    
    .methods_grid {
        gap: 18px;
        margin-bottom: 35px;
    }
}

@media (max-width: 890px) {
    .payment_zone {
        padding: 55px 0;
    }
    
    .payment_header {
        margin-bottom: 45px;
    }
    
    .methods_grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .payment_card {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .payment_zone {
        padding: 50px 0;
    }
    
    .payment_title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 14px;
    }
    
    .payment_description {
        font-size: 15px;
    }
    
    .payment_header {
        margin-bottom: 40px;
    }
    
    .methods_grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 14px;
        margin-bottom: 30px;
    }
    
    .payment_card {
        padding: 18px;
    }
    
    .method_name {
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .processing_time {
        font-size: 13px;
    }
    
    .min_amount {
        font-size: 12px;
    }
    
    .security_notice {
        padding: 16px;
    }
    
    .security_notice p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .payment_zone {
        padding: 45px 0;
    }
    
    .methods_grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .payment_card {
        padding: 16px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .method_label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .method_name {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .popular_method::after {
        right: 12px;
        padding: 3px 10px;
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .payment_card {
        padding: 14px;
    }
    
    .security_notice {
        padding: 14px;
    }
    
    .security_notice p {
        font-size: 12px;
    }
}

.bottom_section {
    background: linear-gradient(135deg, #111726 0%, #3d075c 50%, #51067d 100%);
    padding: 60px 0 0;
    color: white;
    position: relative;
}

.bottom_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #fff694 50%, transparent 100%);
}

.footer_content {
    padding-bottom: 40px;
}

.disclaimer_area {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 246, 148, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.age_restriction {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.age_icon {
    background: linear-gradient(135deg, #ff4444 0%, #cc3333 100%);
    color: white;
    font-size: 24px;
    font-weight: 900;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.age_text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.age_text strong {
    color: #fff694;
    font-weight: 600;
}

.responsible_gaming {
    space-y: 16px;
}

.main_warning {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.addiction_notice {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 246, 148, 0.05);
    padding: 16px;
    border-radius: 10px;
    border-left: 4px solid #fff694;
}

.addiction_notice strong {
    color: #fff694;
    font-weight: 600;
}

.help_link,
.internal_link {
    color: #fff694;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.help_link:hover,
.internal_link:hover {
    color: white;
    text-decoration: none;
}

.footer_links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.links_group {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.links_title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff694;
    margin-bottom: 16px;
}

.footer_link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer_link:hover {
    color: #fff694;
    padding-left: 8px;
    border-bottom-color: rgba(255, 246, 148, 0.3);
}

.regulatory_section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.regulatory_title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    text-align: center;
}

.regulatory_badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.regulatory_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.regulatory_link:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 246, 148, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.regulatory_logo {
    width: 80px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.regulatory_text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-align: center;
}

.regulatory_link:hover .regulatory_text {
    color: #fff694;
}

.copyright_bar {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.copyright_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright_content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.site_info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-modal {
    max-width: 420px;
    width: 100%;
    background: linear-gradient(135deg, #3d075c 0%, #51067d 100%);
    color: #F9FAFB;
    border-radius: 12px;
    padding: 24px 24px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.age-gate-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.age-gate-modal p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.age-gate-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 8px;
}

.age-gate-buttons button {
    flex: 1 1 0;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

#age-yes {
    background: #10B981; /* зелений */
    color: #ECFDF5;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

#age-yes:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.5);
}

#age-no {
    background: transparent;
    color: #F9FAFB;
    border: 1px solid rgba(249, 250, 251, 0.25);
}

#age-no:hover {
    background: rgba(31, 41, 55, 0.9);
}

.age-gate-note {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 4px;
}

@media (max-width: 1280px) {
    .bottom_section {
        padding: 50px 0 0;
    }
    
    .disclaimer_area {
        padding: 28px;
        margin-bottom: 45px;
    }
    
    .footer_links {
        gap: 35px;
        margin-bottom: 45px;
    }
}

@media (max-width: 890px) {
    .bottom_section {
        padding: 45px 0 0;
    }
    
    .disclaimer_area {
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .age_restriction {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .footer_links {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .regulatory_badges {
        gap: 30px;
    }
    
    .regulatory_section {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .bottom_section {
        padding: 40px 0 0;
    }
    
    .disclaimer_area {
        padding: 20px;
        margin-bottom: 35px;
    }
    
    .age_restriction {
        gap: 14px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .age_icon {
        font-size: 20px;
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .age_text {
        font-size: 13px;
    }
    
    .main_warning {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .addiction_notice {
        font-size: 13px;
        padding: 14px;
    }
    
    .links_group {
        padding: 20px;
    }
    
    .links_title {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .footer_link {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .regulatory_section {
        padding: 24px;
        margin-bottom: 25px;
    }
    
    .regulatory_title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .regulatory_badges {
        gap: 24px;
    }
    
    .regulatory_logo {
        width: 70px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .regulatory_text {
        font-size: 12px;
    }
    
    .copyright_content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .copyright_content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .disclaimer_area {
        padding: 16px;
    }
    
    .age_icon {
        font-size: 18px;
        width: 45px;
        height: 45px;
    }
    
    .regulatory_badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .regulatory_link {
        padding: 14px;
        width: 100%;
        max-width: 200px;
    }
    
    .links_group {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .disclaimer_area {
        padding: 14px;
    }
    
    .regulatory_section {
        padding: 20px;
    }
    
    .addiction_notice {
        padding: 12px;
    }
}


@media (max-width: 480px) {
    .age-gate-modal {
        margin: 0 16px;
        padding: 20px 18px 16px;
    }
    .age-gate-buttons {
        flex-direction: column;
    }
}