:root {
    --ocean_blue: #ff006e;
    --forest_green: #ffe6f2;
    --sunset_orange: #b8004f;
    --secondary_tone: #4db371;
    --secondary_light_shade: #e8f5ea;
    --tertiary_accent: #ffa726;
    --tertiary_light_tint: #fff3e0;
    --accent_highlight: #1a4168;
    --accent_light_variant: #e3f2fd;
    --neutral_border: #e0e0e0;
    --neutral_background: #f8f9fa;
    --info_notification: #2196f3;
    --warning_alert: #ff9800;
    --success_confirmation: #4caf50;
    --text_primary: #2f2f2f;
    --text_secondary: #6e7d97;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: "Nunito", sans-serif;
    background: #fff;
    font-size: 17px;
    line-height: 1.73;
    font-weight: 380;
    color: var(--text_secondary);
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Georgia", serif;
    color: var(--text_primary);
    font-weight: 620;
    line-height: 1.34;
    margin-bottom: 21px
}

h1 {
    font-size: 3.7rem;
    font-weight: 720
}

h2 {
    font-size: 2.8rem
}

h3 {
    font-size: 1.9rem
}

p {
    margin-bottom: 18px;
    color: var(--text_secondary)
}

a {
    text-decoration: none;
    color: var(--ocean_blue);
    transition: all 0.37s cubic-bezier(0.23, 1, 0.32, 1)
}

a:hover {
    color: var(--sunset_orange)
}

.content_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 27px
}

.workspace_padding {
    padding: 89px 0
}

.alignment_helper {
    display: flex;
    align-items: center
}

.content_center {
    justify-content: center
}

.justify_start {
    justify-content: flex-start
}

.text_alignment_center {
    text-align: center
}

.margin_bottom_large {
    margin-bottom: 89px
}

.margin_bottom_medium {
    margin-bottom: 34px
}

.margin_bottom_small {
    margin-bottom: 21px
}

.margin_top_medium {
    margin-top: 34px
}

.padding_left_extended {
    padding-left: 55px
}

.padding_right_extended {
    padding-right: 55px
}

.padding_top_extended {
    padding-top: 55px
}

.padding_bottom_medium {
    padding-bottom: 34px
}

.padding_extended {
    padding: 13px 34px
}

.padding_left_medium {
    padding-left: 27px
}

.responsive_image {
    width: 100%;
    height: auto
}

.navbar_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative
}

.nav_toggle_input {
    display: none
}

.nav_toggle_button {
    display: none
}

.hamburger_lines {
    width: 34px;
    height: 3px;
    background: var(--text_primary);
    position: relative;
    transition: all 0.37s ease
}

.hamburger_lines:before,
.hamburger_lines:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--text_primary);
    transition: all 0.37s ease
}

.hamburger_lines:before {
    top: -9px
}

.hamburger_lines:after {
    top: 9px
}

.navigation_wrapper {
    display: flex;
    align-items: center;
    gap: 27px
}

.navigation_list {
    display: flex;
    gap: 34px;
    list-style: none
}

.nav_link {
    color: var(--text_primary);
    font-size: 17px;
    font-weight: 480
}

.brand_logo img {
    height: 47px;
    width: auto
}

.spotlight_banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center
}

.parallax_foundation {
    position: relative
}

.parallax_foundation:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1
}

.banner_content_area {
    position: relative;
    z-index: 2
}

.banner_headline {
    font-size: 4.2rem;
    font-weight: 890;
    color: #fff;
    margin-bottom: 27px
}

.banner_description {
    color: white;
    font-size: 1.3rem;
    line-height: 1.68;
    font-weight: 340;
    margin-bottom: 55px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.primary_action_button {
    display: inline-block;
    background: var(--ocean_blue);
    color: #fff;
    padding: 16px 34px;
    border-radius: 0;
    font-weight: 580;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--ocean_blue)
}

.primary_action_button:hover {
    background: transparent;
    color: var(--ocean_blue);
    border-color: var(--ocean_blue)
}

.fade_entrance {
    opacity: 0;
    animation: fadeInUp 0.89s ease forwards
}

.fade_entrance_delayed {
    opacity: 0;
    animation: fadeInUp 0.89s ease 0.34s forwards
}

.scroll_indicator {
    position: absolute;
    bottom: 47px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5
}

.scroll_icon {
    display: block;
    width: 29px;
    height: 52px;
    border: 2px solid white;
    border-radius: 18px;
    position: relative
}

.scroll_wheel {
    height: 6px;
    margin: 4px auto 0;
    display: block;
    width: 6px;
    background-color: white;
    border-radius: 50%;
    animation: 1.9s ease infinite wheelMotion
}

.feature_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 55px
}

.feature_showcase {
    text-align: center;
    padding: 34px 21px
}

.feature_icon_container {
    display: inline-block;
    margin-bottom: 27px
}

.feature_icon {
    width: 72px;
    height: 72px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%)
}

.feature_headline {
    font-size: 23px;
    margin-bottom: 18px;
    font-weight: 680
}

.feature_summary {
    font-size: 16px;
    line-height: 1.72
}

.showcase_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center
}

.no_margins {
    margin: 0
}

.showcase_column {
    min-height: 520px
}

.media_container {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 520px
}

.content_block {
    max-width: 480px
}

.section_label {
    font-size: 13px;
    display: block;
    font-weight: 550;
    color: var(--ocean_blue);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 13px
}

.section_title {
    font-size: 47px;
    font-weight: 380;
    margin-bottom: 34px
}

.content_paragraph {
    margin-bottom: 21px;
    font-size: 17px;
    line-height: 1.76
}

.action_section {
    margin-top: 34px
}

.section_header {
    text-align: center;
    margin-bottom: 55px
}

.section_title_decorated span {
    display: inline-block;
    border-bottom: 6px solid var(--secondary_tone);
    padding-bottom: 5px
}

.section_description {
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto
}

.services_grid {
    display: flex;
    justify-content: center
}

.grid_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
    max-width: 1200px;
    width: 100%
}

.service_showcase {
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.13);
    border-radius: 9px;
    overflow: hidden;
    transition: transform 0.34s ease
}

.service_showcase:hover {
    transform: translateY(-8px)
}

.service_thumbnail {
    position: relative;
    margin: 0
}

.service_category {
    background: var(--secondary_tone);
    padding: 27px;
    border-radius: 0 0 9px 9px
}

.service_category h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 0;
    font-weight: 640
}

.price_tag {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(-100%);
    padding: 13px 27px;
    background: var(--accent_highlight);
    color: #fff;
    border-radius: 7px 0 0 0;
    font-weight: 550;
    font-size: 16px
}

.service_details {
    padding: 29px 47px;
    text-align: center
}

.service_details h2 {
    margin: 0 0 31px 0;
    font-size: 21px;
    color: var(--text_primary);
    line-height: 1.47
}

.rating_display {
    margin-bottom: 21px
}

.star_icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: var(--tertiary_accent);
    margin: 3px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
}

.service_summary {
    font-size: 15px;
    line-height: 1.68;
    margin-bottom: 21px
}

.rounded_edges {
    border-radius: 0
}

.testimonial_showcase {
    background-image: url('../pantheon/celebration_party_lottery_theme_3.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 180px 0 174px 0
}

.parallax_overlay {
    position: relative;
    z-index: 0
}

.parallax_overlay::before {
    position: absolute;
    content: "";
    background-color: var(--accent_highlight);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .82
}

.testimonial_card {
    max-width: 820px;
    margin: 0 auto
}

.testimonial_quote {
    color: #fff;
    font-weight: 420;
    font-size: 22px;
    line-height: 1.64;
    margin: 38px 0;
    font-style: italic;
    position: relative
}

.testimonial_quote::before {
    content: """;
    font-size: 68px;
    color: var(--ocean_blue);
    position: absolute;
    top: -21px;
    left: -34px
}

.testimonial_quote::after {
    content: """;
    font-size: 68px;
    color: var(--ocean_blue);
    position: absolute;
    bottom: -55px;
    right: -34px
}

.testimonial_author {
    margin-top: 47px
}

.author_image {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    margin: auto auto 18px auto;
    overflow: hidden
}

.author_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%
}

.author_name {
    color: #fff;
    font-size: 16px;
    font-weight: 540;
    margin-bottom: 6px
}

.author_location {
    font-size: 14px;
    font-weight: 420;
    color: #fff;
    opacity: 0.87
}

.overview_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 34px
}

.overview_column_medium {
    grid-column: span 6
}

.overview_column_large {
    grid-column: span 4
}

.section_header {
    position: relative;
    z-index: 1
}

.company_title {
    font-size: 47px;
    margin-bottom: 13px;
    line-height: 1.26
}

.company_subtitle {
    font-size: 17px;
    color: var(--text_secondary);
    margin-bottom: 0
}

.background_text {
    position: absolute;
    top: 50%;
    font-size: 120px;
    color: #f2f7fa;
    transform: translateY(-50%);
    z-index: -1;
    left: -67px;
    line-height: 1;
    font-weight: 890
}

.company_image {
    box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.12)
}

.content_heading {
    font-size: 31px;
    margin-bottom: 34px;
    font-weight: 580
}

.content_description {
    font-size: 17px;
    line-height: 1.73;
    margin-bottom: 21px
}

.action_button_dark {
    background-color: var(--text_primary);
    color: #ffffff;
    padding: 13px 27px;
    display: inline-block;
    font-weight: 550;
    transition: all 0.34s ease
}

.action_button_dark:hover {
    background-color: var(--ocean_blue);
    color: #fff
}

.active {
    border: 1px solid var(--text_primary)
}

.footer_container {
    background-color: var(--text_primary);
    color: #fff;
    padding: 89px 0 34px 0
}

.footer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 55px;
    margin-bottom: 55px
}

.footer_section h3 {
    color: #fff;
    margin-bottom: 27px;
    font-size: 21px
}

.footer_links {
    list-style: none
}

.footer_links li {
    margin-bottom: 13px
}

.footer_links a {
    color: #bbb;
    font-size: 15px;
    transition: color 0.34s ease
}

.footer_links a:hover {
    color: #fff
}

.footer_bottom {
    border-top: 1px solid #444;
    padding-top: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 21px
}

.footer_legal {
    display: flex;
    gap: 34px;
    align-items: center
}

.age_restriction {
    color: var(--ocean_blue);
    font-weight: 580;
    font-size: 15px
}

.regulator_links {
    display: flex;
    gap: 21px;
    align-items: center
}

.regulator_logo {
    height: 34px;
    width: auto;
    opacity: 0.78;
    transition: opacity 0.34s ease
}

.regulator_logo:hover {
    opacity: 1
}

.copyright_text {
    color: #bbb;
    font-size: 14px
}

@media screen and (max-width: 890px) {
    .nav_toggle_button {
        display: block;
        cursor: pointer;
        padding: 18px;
        z-index: 2
    }

    .navigation_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.37s ease;
        padding-top: 89px;
        flex-direction: column;
        align-items: center
    }

    .navigation_list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px
    }

    .nav_item {
        width: 100%;
        text-align: center;
        margin: 18px 0
    }

    .nav_link {
        display: inline-block;
        padding: 13px 27px;
        font-size: 19px;
        color: var(--text_primary)
    }

    .nav_toggle_input:checked ~ .navigation_wrapper {
        left: 0
    }

    .nav_toggle_input:checked ~ .nav_toggle_button .hamburger_lines {
        background: transparent
    }

    .nav_toggle_input:checked ~ .nav_toggle_button .hamburger_lines:before {
        transform: rotate(45deg);
        top: 0
    }

    .nav_toggle_input:checked ~ .nav_toggle_button .hamburger_lines:after {
        transform: rotate(-45deg);
        top: 0
    }

    .banner_headline {
        font-size: 2.8rem
    }

    .banner_description {
        font-size: 1.1rem
    }

    .section_title {
        font-size: 34px
    }

    .showcase_grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .media_container {
        min-height: 340px;
        margin-bottom: 34px
    }

    .padding_left_extended,
    .padding_right_extended {
        padding-left: 27px;
        padding-right: 27px
    }

    .overview_grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .overview_column_medium,
    .overview_column_large {
        grid-column: span 1
    }

    .background_text {
        display: none
    }

    .feature_grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .grid_container {
        grid-template-columns: 1fr;
        gap: 27px
    }

    .testimonial_showcase {
        padding: 68px 0
    }

    .testimonial_quote {
        font-size: 18px;
        line-height: 1.58
    }

    .footer_bottom {
        flex-direction: column;
        text-align: center
    }

    .footer_legal {
        flex-direction: column;
        gap: 21px
    }
}

@media screen and (max-width: 640px) {
    .content_wrapper {
        padding: 0 18px
    }

    .workspace_padding {
        padding: 55px 0
    }

    .banner_headline {
        font-size: 2.3rem
    }

    .section_title {
        font-size: 27px
    }

    .feature_icon {
        width: 55px;
        height: 55px
    }

    .service_details {
        padding: 21px 27px
    }

    .testimonial_quote::before,
    .testimonial_quote::after {
        display: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(34px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes wheelMotion {
    0% {
        margin-top: 4px;
        opacity: 0
    }
    30% {
        opacity: 1
    }
    100% {
        margin-top: 27px;
        opacity: 0
    }
}

/* Company Compliance Section */
.compliance_authority {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.compliance_grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 67px;
    align-items: center;
}

.compliance_column {
    position: relative;
}

.authority_badge {
    text-align: center;
    padding: 47px 34px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.authority_icon {
    width: 89px;
    height: 89px;
    margin-bottom: 27px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

.authority_title {
    font-size: 24px;
    color: var(--ocean_blue);
    margin-bottom: 18px;
    font-weight: 680;
}

.authority_description {
    font-size: 16px;
    line-height: 1.67;
    color: var(--text_secondary);
}

.compliance_details {
    padding: 34px 0;
}

.compliance_heading {
    font-size: 38px;
    margin-bottom: 34px;
    color: var(--text_primary);
    font-weight: 620;
}

.license_information {
    background: #fff;
    padding: 29px;
    border-radius: 8px;
    border-left: 5px solid var(--ocean_blue);
    margin-bottom: 34px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.06);
}

.license_item {
    padding: 11px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
}

.license_item:last-child {
    border-bottom: none;
}

.license_item strong {
    color: var(--text_primary);
    font-weight: 580;
    display: inline-block;
    min-width: 120px;
}

.compliance_statement {
    margin-bottom: 34px;
}

.compliance_statement p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.72;
}

.verification_badges {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.security_badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 520;
    color: var(--text_primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.security_icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

/* Responsible Gaming Section */
.responsible_gaming {
    background: var(--text_primary);
    color: #fff;
    position: relative;
}

.responsible_gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.08) 0%, rgba(26, 65, 104, 0.12) 100%);
    pointer-events: none;
}

.gaming_awareness_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 67px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.gaming_header {
    margin-bottom: 34px;
}

.gaming_title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 13px;
    font-weight: 680;
}

.gaming_subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.gaming_description {
    font-size: 17px;
    line-height: 1.74;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.87);
}

.gaming_features {
    margin-bottom: 47px;
}

.gaming_feature {
    display: flex;
    gap: 18px;
    margin-bottom: 27px;
    align-items: flex-start;
}

.gaming_feature_icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
    flex-shrink: 0;
    margin-top: 3px;
}

.gaming_feature_content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 580;
}

.gaming_feature_content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.67;
    margin-bottom: 0;
}

.gaming_actions {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.responsible_gaming_button {
    display: inline-block;
    background: var(--ocean_blue);
    color: #fff;
    padding: 16px 34px;
    border-radius: 6px;
    font-weight: 580;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.34s ease;
    text-align: center;
    align-self: flex-start;
}

.responsible_gaming_button:hover {
    background: var(--sunset_orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 21px rgba(255, 0, 110, 0.34);
}

.support_links {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.21);
}

.support_text {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    margin-bottom: 8px;
}

.support_link {
    color: var(--ocean_blue);
    font-weight: 580;
    font-size: 16px;
    text-decoration: none;
}

.support_link:hover {
    color: #fff;
}

.gaming_pledge_card {
    background: rgba(255, 255, 255, 0.97);
    color: var(--text_primary);
    padding: 34px 27px;
    border-radius: 13px;
    box-shadow: 0 13px 47px rgba(0, 0, 0, 0.21);
    backdrop-filter: blur(8px);
}

.pledge_title {
    font-size: 21px;
    color: var(--text_primary);
    margin-bottom: 21px;
    font-weight: 640;
    text-align: center;
}

.pledge_list {
    list-style: none;
    padding: 0;
    margin-bottom: 27px;
}

.pledge_list li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 21px;
}

.pledge_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--ocean_blue);
    border-radius: 50%;
}

.pledge_footer {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding-top: 18px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: var(--text_secondary);
    font-style: italic;
}

.pledge_icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .compliance_grid,
    .gaming_awareness_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .authority_badge {
        padding: 34px 21px;
    }

    .authority_icon {
        width: 67px;
        height: 67px;
    }

    .compliance_heading,
    .gaming_title {
        font-size: 29px;
    }

    .verification_badges {
        justify-content: center;
    }

    .gaming_feature {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .gaming_feature_icon {
        align-self: center;
        margin-top: 0;
    }

    .responsible_gaming_button {
        align-self: stretch;
    }

    .gaming_pledge_card {
        padding: 27px 18px;
    }
}

@media screen and (max-width: 640px) {
    .compliance_heading,
    .gaming_title {
        font-size: 24px;
    }

    .license_information {
        padding: 18px;
    }

    .verification_badges {
        flex-direction: column;
    }

    .security_badge {
        justify-content: center;
    }
}

/* Guide Hero Section */
.guide_hero_banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.guide_hero_banner:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.61);
    z-index: 1;
}

.guide_banner_content {
    position: relative;
    z-index: 2;
}

.guide_main_title {
    font-size: 3.8rem;
    font-weight: 780;
    color: #fff;
    margin-bottom: 23px;
}

.guide_subtitle {
    color: white;
    font-size: 1.2rem;
    line-height: 1.62;
    font-weight: 360;
    margin-bottom: 43px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.guide_action_area {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary_guide_button {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 16px 34px;
    border: 2px solid #fff;
    border-radius: 0;
    font-weight: 580;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.34s ease;
}

.secondary_guide_button:hover {
    background: #fff;
    color: var(--text_primary);
}

/* Step by Step Guide */
.guide_header {
    max-width: 720px;
    margin: 0 auto;
}

.guide_section_title {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text_primary);
    font-weight: 640;
}

.guide_section_description {
    font-size: 18px;
    color: var(--text_secondary);
    line-height: 1.67;
}

.steps_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 43px;
}

.step_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 21px;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 6px 27px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: transform 0.34s ease;
}

.step_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 43px rgba(0, 0, 0, 0.13);
}

.step_number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ocean_blue);
    color: #fff;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 680;
    font-size: 16px;
}

.step_icon_wrapper {
    margin: 27px 0 21px 0;
}

.step_icon {
    width: 67px;
    height: 67px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

.step_title {
    font-size: 21px;
    margin-bottom: 16px;
    color: var(--text_primary);
    font-weight: 620;
}

.step_description {
    font-size: 15px;
    line-height: 1.73;
    color: var(--text_secondary);
}

/* Game Types Section */
.game_types_showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.game_types_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 34px;
}

.game_type_card {
    background: #fff;
    border-radius: 13px;
    padding: 34px 27px;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.09);
    border: 1px solid #e0e0e0;
    transition: all 0.34s ease;
}

.game_type_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.15);
}

.game_type_header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 27px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
}

.game_type_icon {
    width: 43px;
    height: 43px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

.game_type_title {
    font-size: 23px;
    color: var(--text_primary);
    margin-bottom: 0;
    font-weight: 640;
}

.game_type_feature {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted #e0e0e0;
    font-size: 15px;
}

.game_type_feature:last-of-type {
    border-bottom: none;
    margin-bottom: 18px;
}

.game_type_feature strong {
    color: var(--text_primary);
    font-weight: 560;
}

.game_type_description {
    font-size: 15px;
    line-height: 1.68;
    color: var(--text_secondary);
    margin-top: 18px;
}

/* Prize Structure Section */
.prize_content_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 67px;
    align-items: center;
}

.prize_header {
    margin-bottom: 43px;
}

.prize_section_title {
    font-size: 38px;
    margin-bottom: 13px;
    color: var(--text_primary);
    font-weight: 620;
}

.prize_section_subtitle {
    font-size: 18px;
    color: var(--text_secondary);
    margin-bottom: 0;
}

.prize_divisions {
    background: #fff;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 6px 27px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.prize_division {
    padding: 21px 27px;
    border-bottom: 1px solid #f0f0f0;
}

.prize_division:last-child {
    border-bottom: none;
}

.division_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.division_match {
    font-weight: 580;
    color: var(--text_primary);
    font-size: 16px;
}

.division_prize {
    color: var(--ocean_blue);
    font-weight: 680;
    font-size: 18px;
}

.division_odds {
    font-size: 14px;
    color: var(--text_secondary);
}

.prize_note {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    background: #fff3e0;
    padding: 18px;
    border-radius: 8px;
    margin-top: 27px;
    border-left: 4px solid var(--tertiary_accent);
}

.note_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(61%) sepia(98%) saturate(1352%) hue-rotate(15deg) brightness(101%) contrast(103%);
    flex-shrink: 0;
    margin-top: 2px;
}

.prize_showcase_image {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 13px 47px rgba(0, 0, 0, 0.18);
}

.prize_image {
    width: 100%;
    height: auto;
    display: block;
}

/* Tips and Strategies */
.tips_section_title {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text_primary);
    font-weight: 640;
}

.tips_section_description {
    font-size: 18px;
    color: var(--text_secondary);
    max-width: 620px;
    margin: 0 auto;
}

.tips_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
}

.tip_card {
    background: #fff;
    padding: 34px 27px;
    border-radius: 11px;
    box-shadow: 0 6px 27px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.34s ease;
}

.tip_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 43px rgba(0, 0, 0, 0.13);
}

.tip_icon_container {
    margin-bottom: 21px;
}

.tip_icon {
    width: 54px;
    height: 54px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

.tip_title {
    font-size: 19px;
    margin-bottom: 16px;
    color: var(--text_primary);
    font-weight: 600;
}

.tip_description {
    font-size: 15px;
    line-height: 1.67;
    color: var(--text_secondary);
}

/* FAQ Section */
.faq_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq_section_title {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text_primary);
    font-weight: 640;
}

.faq_section_description {
    font-size: 18px;
    color: var(--text_secondary);
    max-width: 620px;
    margin: 0 auto;
}

.faq_container {
    max-width: 820px;
    margin: 0 auto;
}

.faq_item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq_question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 23px 27px;
    cursor: pointer;
    transition: background-color 0.34s ease;
}

.faq_question:hover {
    background-color: #f8f9fa;
}

.faq_toggle_icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
    transition: transform 0.34s ease;
}

.faq_item.active .faq_toggle_icon {
    transform: rotate(45deg);
}

.faq_question h3 {
    font-size: 18px;
    color: var(--text_primary);
    margin-bottom: 0;
    font-weight: 580;
}

.faq_answer {
    padding: 0 27px 23px 61px;
    display: none;
}

.faq_item.active .faq_answer {
    display: block;
}

.faq_answer p {
    font-size: 15px;
    line-height: 1.67;
    color: var(--text_secondary);
    margin-bottom: 0;
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .guide_main_title {
        font-size: 2.8rem;
    }

    .guide_action_area {
        flex-direction: column;
        align-items: center;
    }

    .steps_container {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .game_types_grid {
        grid-template-columns: 1fr;
    }

    .prize_content_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tips_grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 21px;
    }

    .faq_answer {
        padding: 0 18px 18px 43px;
    }
}

@media screen and (max-width: 640px) {
    .guide_main_title {
        font-size: 2.3rem;
    }

    .guide_section_title,
    .prize_section_title,
    .tips_section_title,
    .faq_section_title {
        font-size: 29px;
    }

    .step_item {
        padding: 27px 16px;
    }

    .game_type_card,
    .tip_card {
        padding: 27px 18px;
    }

    .faq_question {
        padding: 18px 21px;
    }

    .faq_answer {
        padding: 0 21px 18px 54px;
    }
}

/* Results Hero Section */
.results_hero_banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.results_hero_banner:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.results_banner_content {
    position: relative;
    z-index: 2;
}

.results_main_title {
    font-size: 3.8rem;
    font-weight: 780;
    color: #fff;
    margin-bottom: 23px;
}

.results_subtitle {
    color: white;
    font-size: 1.2rem;
    line-height: 1.62;
    font-weight: 360;
    margin-bottom: 43px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Latest Results Section */
.results_section_title {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text_primary);
    font-weight: 640;
}

.results_section_description {
    font-size: 18px;
    color: var(--text_secondary);
    line-height: 1.67;
}

.latest_draw_container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    padding: 43px;
    border: 1px solid #e0e0e0;
}

.draw_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
    padding-bottom: 21px;
    border-bottom: 2px solid #f0f0f0;
}

.draw_title {
    font-size: 24px;
    color: var(--text_primary);
    margin-bottom: 8px;
    font-weight: 640;
}

.draw_status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary_tone);
    font-weight: 520;
    font-size: 15px;
}

.status_icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(456%) hue-rotate(83deg) brightness(94%) contrast(89%);
}

.jackpot_amount {
    text-align: right;
}

.jackpot_label {
    display: block;
    font-size: 14px;
    color: var(--text_secondary);
    margin-bottom: 4px;
}

.jackpot_value {
    font-size: 32px;
    color: var(--ocean_blue);
    font-weight: 720;
}

.winning_numbers_display {
    text-align: center;
    margin-bottom: 43px;
}

.numbers_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.winning_numbers {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.number_ball {
    width: 67px;
    height: 67px;
    background: linear-gradient(135deg, var(--ocean_blue) 0%, var(--sunset_orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 21px;
    font-weight: 680;
    box-shadow: 0 6px 18px rgba(255, 0, 110, 0.34);
    animation: ballBounce 0.67s ease-out;
}

.bonus_number {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bonus_label {
    font-size: 13px;
    color: var(--text_secondary);
    font-weight: 520;
}

.bonus_ball {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--tertiary_accent) 0%, #ff8f00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 680;
    box-shadow: 0 4px 14px rgba(255, 167, 38, 0.43);
}

.prize_breakdown_container {
    background: #f8f9fa;
    border-radius: 11px;
    padding: 27px;
}

.breakdown_title {
    font-size: 21px;
    color: var(--text_primary);
    margin-bottom: 21px;
    font-weight: 620;
}

.prize_table {
    display: grid;
    gap: 8px;
}

.prize_row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 21px;
    padding: 13px 18px;
    background: #fff;
    border-radius: 6px;
    align-items: center;
    transition: all 0.34s ease;
}

.prize_row:not(.header_row):hover {
    background: #f0f4ff;
    transform: translateX(6px);
}

.header_row {
    background: var(--text_primary);
    color: #fff;
    font-weight: 580;
    font-size: 15px;
}

.division_number {
    width: 34px;
    height: 34px;
    background: var(--ocean_blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 620;
    font-size: 14px;
}

.match_requirement {
    font-weight: 520;
    color: var(--text_primary);
}

.winner_count {
    font-weight: 580;
    color: var(--text_secondary);
    text-align: right;
}

.prize_amount {
    font-weight: 680;
    color: var(--ocean_blue);
    font-size: 16px;
    text-align: right;
}

/* Ticket Checker Section */
.ticket_checker_section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.checker_section_title {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text_primary);
    font-weight: 640;
}

.checker_section_description {
    font-size: 18px;
    color: var(--text_secondary);
    max-width: 620px;
    margin: 0 auto;
}

.ticket_checker_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px;
    align-items: center;
}

.ticket_mockup {
    background: #fff;
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.18);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.ticket_mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--ocean_blue) 0%, var(--sunset_orange) 100%);
}

.ticket_header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 27px;
    padding-bottom: 18px;
    border-bottom: 2px dotted #e0e0e0;
}

.ticket_logo {
    width: 43px;
    height: 43px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

.ticket_title {
    font-size: 18px;
    font-weight: 680;
    color: var(--text_primary);
    display: block;
}

.ticket_draw {
    font-size: 14px;
    color: var(--text_secondary);
    display: block;
}

.ticket_label {
    font-size: 16px;
    color: var(--text_primary);
    font-weight: 580;
    margin-bottom: 16px;
}

.user_numbers_display {
    display: flex;
    gap: 8px;
    margin-bottom: 27px;
    flex-wrap: wrap;
}

.user_number_input {
    width: 47px;
    height: 47px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    font-weight: 620;
    background: #f8f9fa;
    transition: all 0.34s ease;
}

.user_number_input:focus {
    outline: none;
    border-color: var(--ocean_blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.12);
}

.user_number_input.matched {
    background: var(--secondary_tone);
    color: #fff;
    border-color: var(--secondary_tone);
}

.ticket_actions {
    display: flex;
    gap: 13px;
    margin-bottom: 21px;
}

.check_ticket_button,
.clear_ticket_button {
    flex: 1;
    padding: 13px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 580;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.34s ease;
}

.check_ticket_button {
    background: var(--ocean_blue);
    color: #fff;
}

.check_ticket_button:hover {
    background: var(--sunset_orange);
    transform: translateY(-2px);
}

.clear_ticket_button {
    background: #f8f9fa;
    color: var(--text_secondary);
    border: 1px solid #e0e0e0;
}

.clear_ticket_button:hover {
    background: #e9ecef;
    color: var(--text_primary);
}

.button_icon {
    width: 16px;
    height: 16px;
}

.check_ticket_button .button_icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.clear_ticket_button .button_icon {
    filter: brightness(0) saturate(100%) invert(50%);
}

.ticket_result {
    background: linear-gradient(135deg, #e8f5ea 0%, #f0f8f1 100%);
    border-radius: 11px;
    padding: 21px;
    border: 2px solid var(--secondary_tone);
    animation: resultSlideIn 0.47s ease-out;
}

.result_content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.result_icon_container {
    width: 47px;
    height: 47px;
    background: var(--secondary_tone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result_icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.result_message {
    font-size: 16px;
    font-weight: 580;
    color: var(--text_primary);
    display: block;
    margin-bottom: 4px;
}

.result_prize {
    font-size: 18px;
    font-weight: 680;
    color: var(--secondary_tone);
    display: block;
}

.checker_features {
    display: grid;
    gap: 34px;
}

.feature_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 27px 21px;
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 6px 27px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.feature_icon {
    width: 54px;
    height: 54px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
    margin-bottom: 18px;
}

.feature_title {
    font-size: 18px;
    color: var(--text_primary);
    margin-bottom: 13px;
    font-weight: 600;
}

.feature_description {
    font-size: 15px;
    line-height: 1.67;
    color: var(--text_secondary);
}

/* Results History Section */
.history_section_title {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text_primary);
    font-weight: 640;
}

.history_section_description {
    font-size: 18px;
    color: var(--text_secondary);
    max-width: 620px;
    margin: 0 auto;
}

.history_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
    gap: 21px;
    flex-wrap: wrap;
}

.date_filter,
.search_box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter_icon,
.search_icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(50%);
}

.date_select,
.search_input {
    border: none;
    background: none;
    font-size: 15px;
    color: var(--text_primary);
    outline: none;
}

.date_select {
    cursor: pointer;
}

.search_input {
    min-width: 200px;
}

.history_results {
    display: grid;
    gap: 16px;
}

.history_item {
    background: #fff;
    border-radius: 11px;
    padding: 21px 27px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 200px 1fr auto auto;
    gap: 21px;
    align-items: center;
    transition: all 0.34s ease;
}

.history_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 27px rgba(0, 0, 0, 0.12);
}

.history_draw_number {
    font-size: 16px;
    font-weight: 620;
    color: var(--text_primary);
    display: block;
}

.history_draw_date {
    font-size: 14px;
    color: var(--text_secondary);
    display: block;
}

.history_numbers {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.small_number_ball,
.small_bonus_ball {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 620;
}

.small_number_ball {
    background: linear-gradient(135deg, var(--ocean_blue) 0%, var(--sunset_orange) 100%);
}

.small_bonus_ball {
    background: linear-gradient(135deg, var(--tertiary_accent) 0%, #ff8f00 100%);
    position: relative;
}

.small_bonus_ball::before {
    content: 'B';
    position: absolute;
    top: -8px;
    font-size: 8px;
    color: var(--text_secondary);
}

.history_jackpot {
    font-size: 18px;
    font-weight: 680;
    color: var(--ocean_blue);
    text-align: right;
}

.view_details_button {
    background: var(--forest_green);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.34s ease;
}

.view_details_button:hover {
    background: var(--ocean_blue);
    border-color: var(--ocean_blue);
}

.view_details_button:hover .view_icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.view_icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

/* Next Draw Section */
.next_draw_section {
    background: var(--text_primary);
    color: #fff;
}

.next_draw_container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 67px;
    align-items: center;
}

.next_draw_title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 27px;
    font-weight: 640;
}

.next_draw_details {
    display: grid;
    gap: 27px;
}

.draw_detail {
    display: flex;
    align-items: center;
    gap: 18px;
}

.detail_icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
    flex-shrink: 0;
}

.detail_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.76);
    display: block;
    margin-bottom: 4px;
}

.detail_value {
    font-size: 18px;
    color: #fff;
    font-weight: 580;
    display: block;
}

.countdown_display {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}

.countdown_item {
    text-align: center;
}

.countdown_number {
    display: block;
    font-size: 24px;
    font-weight: 720;
    color: var(--ocean_blue);
    margin-bottom: 4px;
}

.countdown_label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.67);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next_draw_action {
    text-align: center;
}

.play_next_button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: var(--ocean_blue);
    color: #fff;
    padding: 21px 34px;
    border-radius: 11px;
    font-size: 18px;
    font-weight: 620;
    text-decoration: none;
    transition: all 0.34s ease;
    margin-bottom: 16px;
}

.play_next_button:hover {
    background: var(--sunset_orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 27px rgba(255, 0, 110, 0.34);
}

.play_icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.play_reminder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.67);
    margin-bottom: 0;
}

/* Animations */
@keyframes ballBounce {
    0% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.15) rotate(90deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes resultSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-21px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .results_main_title {
        font-size: 2.8rem;
    }

    .latest_draw_container {
        padding: 27px 21px;
    }

    .draw_header {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .numbers_container {
        gap: 21px;
    }

    .winning_numbers {
        gap: 8px;
    }

    .number_ball {
        width: 54px;
        height: 54px;
        font-size: 18px;
    }

    .ticket_checker_container {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .history_item {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .next_draw_container {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .countdown_display {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .results_main_title {
        font-size: 2.3rem;
    }

    .user_numbers_display {
        justify-content: center;
    }

    .ticket_actions {
        flex-direction: column;
    }

    .history_controls {
        flex-direction: column;
        align-items: stretch;
    }

    .search_input {
        min-width: auto;
        width: 100%;
    }

    .history_numbers {
        justify-content: center;
    }

    .countdown_display {
        gap: 13px;
    }

    .countdown_number {
        font-size: 21px;
    }
}

/* Order Hero Section */
.order_hero_banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.order_hero_banner:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

.order_banner_content {
    position: relative;
    z-index: 2;
}

.order_main_title {
    font-size: 3.8rem;
    font-weight: 780;
    color: #fff;
    margin-bottom: 23px;
}

.order_subtitle {
    color: white;
    font-size: 1.2rem;
    line-height: 1.62;
    font-weight: 360;
    margin-bottom: 43px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Order Form Section */
.order_form_container {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.12);
    padding: 47px;
    border: 1px solid #e0e0e0;
}

.form_section_title {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text_primary);
    font-weight: 640;
}

.form_section_description {
    font-size: 18px;
    color: var(--text_secondary);
    line-height: 1.67;
    max-width: 620px;
    margin: 0 auto;
}

.form_section {
    margin-bottom: 43px;
    padding-bottom: 34px;
    border-bottom: 1px solid #f0f0f0;
}

.form_section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.section_header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 27px;
}

.section_icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

.section_title {
    font-size: 24px;
    color: var(--text_primary);
    margin-bottom: 0;
    font-weight: 620;
}

.form_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 21px;
}

.form_field {
    position: relative;
}

.field_label {
    display: block;
    font-size: 15px;
    font-weight: 520;
    color: var(--text_primary);
    margin-bottom: 8px;
}

.field_input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: #f8f9fa;
    transition: all 0.34s ease;
}

.field_input:focus {
    outline: none;
    border-color: var(--ocean_blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.12);
}

.field_input.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.field_error {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
}

/* Ticket Options */
.ticket_options {
    display: grid;
    gap: 18px;
}

.ticket_option {
    border: 2px solid #e0e0e0;
    border-radius: 11px;
    padding: 21px;
    background: #f8f9fa;
    transition: all 0.34s ease;
    cursor: pointer;
}

.ticket_option:hover {
    border-color: var(--ocean_blue);
    background: #fff;
}

.ticket_option.selected {
    border-color: var(--ocean_blue);
    background: #fff;
    box-shadow: 0 6px 27px rgba(255, 0, 110, 0.12);
}

.option_header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.option_radio {
    width: 21px;
    height: 21px;
    cursor: pointer;
}

.option_label {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    flex: 1;
}

.option_icon {
    width: 43px;
    height: 43px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

.option_name {
    font-size: 18px;
    font-weight: 620;
    color: var(--text_primary);
    display: block;
    margin-bottom: 4px;
}

.option_price {
    font-size: 16px;
    color: var(--ocean_blue);
    font-weight: 580;
    display: block;
}

.option_info {
    display: grid;
    gap: 8px;
    margin-left: 53px;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text_secondary);
}

.info_icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(50%);
}

/* Quantity Selector */
.quantity_selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.quantity_controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 11px;
    overflow: hidden;
}

.quantity_button {
    width: 54px;
    height: 54px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.34s ease;
}

.quantity_button:hover {
    background: var(--ocean_blue);
}

.quantity_button:hover .quantity_icon {
    filter: brightness(0) saturate(100%) invert(100%);
}

.quantity_icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(50%);
}

.quantity_input {
    width: 89px;
    height: 54px;
    border: none;
    background: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 620;
    color: var(--text_primary);
}

.quantity_note {
    font-size: 14px;
    color: var(--text_secondary);
}

/* Number Selection */
.numbers_container {
    display: grid;
    gap: 27px;
}

.ticket_numbers {
    background: #f8f9fa;
    border-radius: 11px;
    padding: 21px;
    border: 2px solid #e0e0e0;
}

.ticket_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.ticket_label {
    font-size: 16px;
    font-weight: 580;
    color: var(--text_primary);
}

.clear_ticket_numbers {
    background: none;
    border: none;
    color: var(--ocean_blue);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.clear_icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(89%) saturate(7471%) hue-rotate(315deg) brightness(98%) contrast(108%);
}

.numbers_grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.number_button {
    width: 43px;
    height: 43px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    font-weight: 580;
    color: var(--text_primary);
    transition: all 0.34s ease;
}

.number_button:hover {
    border-color: var(--ocean_blue);
    background: var(--forest_green);
}

.number_button.selected {
    background: var(--ocean_blue);
    border-color: var(--ocean_blue);
    color: #fff;
}

.number_button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.selected_numbers_display {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.selected_number {
    width: 34px;
    height: 34px;
    background: var(--ocean_blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 620;
}

.empty_slot {
    width: 34px;
    height: 34px;
    border: 2px dashed #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text_secondary);
    font-size: 18px;
}

.quick_pick_option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    margin-top: 27px;
}

.quick_pick_button {
    background: var(--secondary_tone);
    color: #fff;
    border: none;
    padding: 13px 27px;
    border-radius: 8px;
    font-weight: 580;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.34s ease;
}

.quick_pick_button:hover {
    background: #3a9d5c;
    transform: translateY(-2px);
}

.quick_pick_icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.quick_pick_note {
    font-size: 14px;
    color: var(--text_secondary);
}

/* Order Summary */
.order_summary {
    background: #f8f9fa;
    border-radius: 11px;
    padding: 21px;
    border: 1px solid #e0e0e0;
}

.summary_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #e0e0e0;
}

.summary_row:last-child {
    border-bottom: none;
}

.summary_row.total_row {
    border-top: 2px solid #e0e0e0;
    margin-top: 13px;
    padding-top: 16px;
    font-size: 18px;
}

.summary_label {
    font-weight: 520;
    color: var(--text_primary);
}

.summary_value {
    font-weight: 580;
    color: var(--text_secondary);
}

.total_amount {
    color: var(--ocean_blue);
    font-size: 21px;
    font-weight: 680;
}

/* Form Submit */
.form_submit {
    text-align: center;
    margin-top: 34px;
}

.submit_order_button {
    background: var(--ocean_blue);
    color: #fff;
    border: none;
    padding: 18px 43px;
    border-radius: 11px;
    font-size: 18px;
    font-weight: 620;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    transition: all 0.34s ease;
    margin-bottom: 16px;
}

.submit_order_button:hover {
    background: var(--sunset_orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 27px rgba(255, 0, 110, 0.34);
}

.submit_order_button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.submit_note {
    font-size: 14px;
    color: var(--text_secondary);
    margin-bottom: 0;
}

/* Modal Styles */
.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.67);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.34s ease-out;
}

.modal_container {
    background: #fff;
    border-radius: 16px;
    max-width: 540px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 67px rgba(0, 0, 0, 0.23);
    animation: modalSlideIn 0.34s ease-out;
}

.modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 27px 34px;
    border-bottom: 1px solid #e0e0e0;
}

.modal_title {
    font-size: 21px;
    color: var(--text_primary);
    margin-bottom: 0;
    font-weight: 620;
}

.modal_close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.34s ease;
}

.modal_close:hover {
    background: #f0f0f0;
}

.close_icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(50%);
}

.modal_content {
    padding: 34px;
}

.confirmation_details {
    display: grid;
    gap: 13px;
    margin-bottom: 27px;
}

.detail_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #e0e0e0;
}

.detail_row.total_detail {
    border-top: 2px solid #e0e0e0;
    margin-top: 13px;
    padding-top: 16px;
    font-size: 18px;
}

.detail_label {
    font-weight: 520;
    color: var(--text_primary);
}

.detail_value {
    font-weight: 580;
    color: var(--text_secondary);
}

.total_price {
    color: var(--ocean_blue);
    font-size: 21px;
    font-weight: 680;
}

.age_confirmation {
    margin-bottom: 27px;
    padding: 18px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid var(--tertiary_accent);
}

.checkbox_label {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.67;
}

.age_checkbox {
    display: none;
}

.checkbox_custom {
    width: 21px;
    height: 21px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.34s ease;
}

.age_checkbox:checked + .checkbox_custom {
    background: var(--ocean_blue);
    border-color: var(--ocean_blue);
}

.age_checkbox:checked + .checkbox_custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal_actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.cancel_button {
    background: #f8f9fa;
    color: var(--text_secondary);
    border: 1px solid #e0e0e0;
    padding: 13px 27px;
    border-radius: 8px;
    font-weight: 580;
    cursor: pointer;
    transition: all 0.34s ease;
}

.cancel_button:hover {
    background: #e9ecef;
    color: var(--text_primary);
}

.confirm_button {
    background: var(--ocean_blue);
    color: #fff;
    border: none;
    padding: 13px 27px;
    border-radius: 8px;
    font-weight: 580;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.34s ease;
}

.confirm_button:hover:not(:disabled) {
    background: var(--sunset_orange);
    transform: translateY(-2px);
}

.confirm_button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.secure_icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(100%);
}

/* Success Modal */
.success_modal .modal_content {
    text-align: center;
    padding: 47px 34px;
}

.success_icon_container {
    width: 89px;
    height: 89px;
    background: var(--secondary_tone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 27px auto;
}

.success_icon {
    width: 43px;
    height: 43px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.success_title {
    font-size: 28px;
    color: var(--text_primary);
    margin-bottom: 18px;
    font-weight: 680;
}

.success_message {
    font-size: 16px;
    line-height: 1.67;
    color: var(--text_secondary);
    margin-bottom: 34px;
}

.success_details {
    display: grid;
    gap: 16px;
    margin-bottom: 34px;
}

.success_item {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: center;
    font-size: 15px;
    color: var(--text_secondary);
}

.success_detail_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(456%) hue-rotate(83deg) brightness(94%) contrast(89%);
}

.success_actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.return_home_button,
.view_results_button {
    padding: 13px 27px;
    border-radius: 8px;
    font-weight: 580;
    text-decoration: none;
    transition: all 0.34s ease;
}

.return_home_button {
    background: var(--ocean_blue);
    color: #fff;
}

.return_home_button:hover {
    background: var(--sunset_orange);
    transform: translateY(-2px);
}

.view_results_button {
    background: #f8f9fa;
    color: var(--text_secondary);
    border: 1px solid #e0e0e0;
}

.view_results_button:hover {
    background: #e9ecef;
    color: var(--text_primary);
}

/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-34px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .order_main_title {
        font-size: 2.8rem;
    }

    .order_form_container {
        padding: 34px 21px;
        margin: 0 18px;
    }

    .form_grid {
        grid-template-columns: 1fr;
    }

    .numbers_grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .number_button {
        width: 37px;
        height: 37px;
        font-size: 13px;
    }

    .modal_actions {
        flex-direction: column;
    }

    .success_actions {
        flex-direction: column;
    }
}

@media screen and (max-width: 640px) {
    .order_main_title {
        font-size: 2.3rem;
    }

    .section_header {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }

    .option_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
    }

    .option_info {
        margin-left: 0;
    }

    .numbers_grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .modal_container {
        width: 95%;
    }

    .modal_content {
        padding: 21px;
    }
}