:root {
    --dust_brown: #8B4513;
    --canyon_red: #CD853F;
    --desert_gold: #DAA520;
    --sage_green: #9CAF88;
    --midnight_blue: #2F4F4F;
    --sunset_orange: #FF6347;
    --prairie_beige: #F5E6D3;
    --rustic_cream: #FDF5E6;
    --weathered_gray: #696969;
    --copper_accent: #B87333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.7;
    color: var(--midnight_blue);
    background: linear-gradient(135deg, var(--prairie_beige) 0%, var(--rustic_cream) 100%);
    overflow-x: hidden
}

/* Age Verification Banner */
.age_verification_banner {
    background: linear-gradient(90deg, var(--sunset_orange), var(--canyon_red));
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 13px rgba(0,0,0,0.2);
}

.banner_container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 21px;
}

.warning_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    animation: pulse_warning 2.1s infinite;
}

@keyframes pulse_warning {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.disclaimer_text {
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

/* Header Styles */
.frontier_header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(13px);
    padding: 17px 0;
    position: sticky;
    top: 59px;
    z-index: 999;
    box-shadow: 0 2px 21px rgba(0,0,0,0.08);
}

.header_wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
}

.main_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand_logo {
    display: flex;
    align-items: center;
}

.logo_image {
    height: 77px;
    width: auto;
    transition: transform 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo_image:hover {
    transform: scale(1.05) rotate(2deg);
}

.mobile_nav_toggle {
    display: none;
}

.toggle_label {
    display: none;
}

.hamburger_menu {
    width: 31px;
    height: 3px;
    background: var(--dust_brown);
    position: relative;
    transition: all 0.34s ease;
}

.hamburger_menu:before,
.hamburger_menu:after {
    content: '';
    position: absolute;
    width: 31px;
    height: 3px;
    background: var(--dust_brown);
    transition: all 0.34s ease;
}

.hamburger_menu:before {
    top: -9px;
}

.hamburger_menu:after {
    top: 9px;
}

.navigation_wrapper {
    display: flex;
    align-items: center;
}

.nav_menu_list {
    display: flex;
    list-style: none;
    gap: 34px;
}

.menu_item {
    position: relative;
}

.menu_link {
    color: var(--midnight_blue);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    transition: color 0.34s ease;
    padding: 8px 0;
}

.menu_link:hover {
    color: var(--sunset_orange);
}

.menu_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sunset_orange);
    transition: width 0.34s ease;
}

.menu_link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero_frontier {
    min-height: 89vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--prairie_beige) 0%, var(--rustic_cream) 50%, var(--desert_gold) 100%);
    overflow: hidden;
}

.hero_content_wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
    position: relative;
    z-index: 2;
}

.hero_visual_elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating_star, .floating_compass, .floating_target {
    position: absolute;
    opacity: 0.13;
    animation: float_gentle 8.9s infinite ease-in-out;
}

.floating_star {
    width: 67px;
    height: 67px;
    top: 21%;
    right: 13%;
    filter: hue-rotate(34deg);
}

.floating_compass {
    width: 89px;
    height: 89px;
    top: 67%;
    left: 8%;
    animation-delay: -2.3s;
}

.floating_target {
    width: 55px;
    height: 55px;
    top: 34%;
    left: 21%;
    animation-delay: -4.7s;
}

@keyframes float_gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-21px) rotate(5deg); }
    66% { transform: translateY(13px) rotate(-3deg); }
}

.hero_text_content {
    text-align: left;
    max-width: 890px;
}

.main_headline {
    font-family: 'Rye', cursive;
    font-size: clamp(3.4rem, 6vw, 7.2rem);
    color: var(--dust_brown);
    margin-bottom: 21px;
    line-height: 1.1;
}

.accent_text {
    color: var(--sunset_orange);
    position: relative;
}

.accent_text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset_orange), var(--desert_gold));
    border-radius: 2px;
}

.social_disclaimer {
    margin-bottom: 21px;
}

.red_notice {
    background: var(--sunset_orange);
    color: white;
    padding: 8px 17px;
    border-radius: 34px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero_description {
    font-size: 1.34rem;
    color: var(--weathered_gray);
    margin-bottom: 34px;
    line-height: 1.8;
    max-width: 670px;
}

.action_buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_action_btn, .secondary_action_btn {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 17px 28px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.primary_action_btn {
    background: linear-gradient(135deg, var(--sunset_orange), var(--canyon_red));
    color: white;
}

.primary_action_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(255, 99, 71, 0.34);
}

.secondary_action_btn {
    background: transparent;
    color: var(--dust_brown);
    border: 2px solid var(--dust_brown);
}

.secondary_action_btn:hover {
    background: var(--dust_brown);
    color: white;
    transform: translateY(-2px);
}

.btn_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.secondary_action_btn .btn_icon {
    filter: none;
}

.secondary_action_btn:hover .btn_icon {
    filter: brightness(0) invert(1);
}

/* Sections */
.section_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
}

.section_heading {
    font-family: 'Rye', cursive;
    font-size: clamp(2.3rem, 4vw, 3.9rem);
    color: var(--dust_brown);
    text-align: center;
    margin-bottom: 55px;
    position: relative;
}

.section_heading::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 89px;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset_orange), var(--desert_gold));
    border-radius: 2px;
}

/* Features Section */
.features_showcase {
    padding: 89px 0;
    background: white;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 34px;
}

.feature_card {
    background: linear-gradient(135deg, var(--rustic_cream), var(--prairie_beige));
    padding: 34px;
    border-radius: 13px;
    text-align: center;
    transition: all 0.34s ease;
    position: relative;
    overflow: hidden;
}

.feature_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(0,0,0,0.13);
}

.feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.67s ease;
}

.feature_card:hover::before {
    left: 100%;
}

.feature_icon_wrapper {
    margin-bottom: 21px;
}

.feature_icon {
    width: 55px;
    height: 55px;
    filter: hue-rotate(21deg);
    transition: transform 0.34s ease;
}

.feature_card:hover .feature_icon {
    transform: scale(1.1) rotate(5deg);
}

.feature_title {
    font-size: 1.67rem;
    color: var(--dust_brown);
    margin-bottom: 17px;
    font-weight: 700;
}

.feature_description {
    color: var(--weathered_gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Community Section */
.community_spotlight {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--sage_green) 0%, var(--prairie_beige) 100%);
}

.community_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.community_text .section_heading {
    text-align: left;
    margin-bottom: 34px;
}

.community_description {
    font-size: 1.17rem;
    color: var(--weathered_gray);
    margin-bottom: 21px;
    line-height: 1.8;
}

.community_stats {
    display: flex;
    gap: 34px;
    margin-top: 34px;
}

.stat_item {
    text-align: center;
}

.stat_icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.stat_number {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--sunset_orange);
    margin-bottom: 5px;
}

.stat_label {
    display: block;
    color: var(--weathered_gray);
    font-size: 0.97rem;
}

.community_visual {
    background: url(../symposium/hero-bg.png) center/cover no-repeat;
    position: relative;
    height: 400px;
}

.visual_elements_container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large_community_icon {
    width: 200px;
    height: 200px;
    opacity: 0.89;
    filter: hue-rotate(34deg);
}

.floating_elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating_element {
    position: absolute;
    width: 34px;
    height: 34px;
    opacity: 0.67;
    animation: orbit_motion 13.4s infinite linear;
}

.element_1 {
    top: 21%;
    right: 13%;
    animation-delay: 0s;
}

.element_2 {
    bottom: 34%;
    left: 8%;
    animation-delay: -4.5s;
}

.element_3 {
    top: 55%;
    right: 21%;
    animation-delay: -8.9s;
}

@keyframes orbit_motion {
    0% { transform: rotate(0deg) translateX(89px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(89px) rotate(-360deg); }
}

/* About Section */
.about_frontier {
    padding: 89px 0;
    background: white;
}

.about_content {
    max-width: 1200px;
    margin: 0 auto;
}

.about_text_blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 34px;
}

.text_block {
    display: flex;
    gap: 21px;
    align-items: flex-start;
    padding: 34px;
    background: linear-gradient(135deg, var(--rustic_cream), var(--prairie_beige));
    border-radius: 13px;
    transition: transform 0.34s ease;
}

.text_block:hover {
    transform: translateY(-5px);
}

.block_icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    filter: hue-rotate(21deg);
}

.block_title {
    font-size: 1.55rem;
    color: var(--dust_brown);
    margin-bottom: 13px;
    font-weight: 700;
}

.block_text {
    color: var(--weathered_gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Footer */
.frontier_footer {
    background: var(--midnight_blue);
    color: white;
    padding: 55px 0 21px;
}

.footer_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
}

.footer_content_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 55px;
    margin-bottom: 34px;
}

.footer_brand img {
    height: 95px;
    filter: brightness(0) invert(1);
}

.footer_logo {
    height: 155px;
    width: auto;
    margin-bottom: 21px;
}

.footer_description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer_heading {
    font-size: 1.34rem;
    margin-bottom: 21px;
    color: var(--desert_gold);
    font-weight: 700;
}

.footer_menu {
    list-style: none;
}

.footer_menu li {
    margin-bottom: 13px;
}

.footer_link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.34s ease;
    font-size: 1.05rem;
}

.footer_link:hover {
    color: var(--desert_gold);
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.contact_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 21px;
}

.legal_disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 21px;
}

.disclaimer_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    margin-top: 3px;
}

.copyright_info {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.97rem;
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .toggle_label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .navigation_wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: all 0.34s ease;
        padding-top: 89px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav_menu_list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .menu_item {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .menu_link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 1.17rem;
    }

    .mobile_nav_toggle:checked ~ .navigation_wrapper {
        left: 0;
    }

    .mobile_nav_toggle:checked ~ .toggle_label .hamburger_menu {
        background: transparent;
    }

    .mobile_nav_toggle:checked ~ .toggle_label .hamburger_menu:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile_nav_toggle:checked ~ .toggle_label .hamburger_menu:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero_text_content {
        text-align: center;
    }

    .action_buttons {
        justify-content: center;
    }

    .community_content_grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .community_stats {
        justify-content: center;
    }

    .about_text_blocks {
        grid-template-columns: 1fr;
    }

    .text_block {
        flex-direction: column;
        text-align: center;
    }

    .footer_content_grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .contact_item {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .banner_container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .disclaimer_text {
        font-size: 13px;
    }

    .hero_frontier {
        min-height: 78vh;
        padding: 34px 0;
    }

    .main_headline {
        font-size: 2.8rem;
    }

    .hero_description {
        font-size: 1.17rem;
    }

    .action_buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary_action_btn, .secondary_action_btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .features_grid {
        grid-template-columns: 1fr;
    }

    .community_stats {
        flex-direction: column;
        gap: 21px;
    }

    .legal_disclaimer {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.menu_link:focus,
.primary_action_btn:focus,
.secondary_action_btn:focus {
    outline: 2px solid var(--sunset_orange);
    outline-offset: 2px;
}

/* Wild West Gaming Section */
.desert_playground {
    padding: 134px 0;
    background: linear-gradient(135deg,
    #8B4513 0%,           /* dust_brown */
    #CD853F 25%,          /* canyon_red */
    #DAA520 50%,          /* desert_gold */
    #FF6347 75%,          /* sunset_orange */
    #2F4F4F 100%          /* midnight_blue */
    );
    position: relative;
    overflow: hidden;
    min-height: 89vh;
}

.desert_playground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(255,99,71,0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(218,165,32,0.2) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(139,69,19,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tumblewed_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
    position: relative;
    z-index: 2;
}

.game_entrance_area {
    text-align: center;
    position: relative;
}

.sheriff_badge_wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 34px;
}

.rotating_badge {
    width: 89px;
    height: 89px;
    filter: drop-shadow(0 0 21px rgba(255,215,0,0.6));
    animation: badge_spin 8.7s linear infinite;
}

@keyframes badge_spin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.badge_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 134px;
    height: 134px;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
    animation: glow_pulse 3.4s ease-in-out infinite alternate;
}

@keyframes glow_pulse {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.saloon_title {
    font-family: 'Rye', cursive;
    font-size: clamp(3.2rem, 5.5vw, 6.7rem);
    color: #FDF5E6; /* rustic_cream */
    margin-bottom: 21px;
    text-shadow:
            3px 3px 0px rgba(139,69,19,0.8),
            6px 6px 13px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.wild_accent {
    color: #DAA520; /* desert_gold */
    position: relative;
    display: inline-block;
}

.wild_accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF6347, #DAA520);
    border-radius: 3px;
    animation: accent_shimmer 2.3s ease-in-out infinite alternate;
}

@keyframes accent_shimmer {
    0% { opacity: 0.6; transform: scaleX(0.8); }
    100% { opacity: 1; transform: scaleX(1.1); }
}

.frontier_call {
    font-size: 1.34rem;
    color: rgba(253,245,230,0.9);
    max-width: 670px;
    margin: 0 auto 55px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 400;
}

.gunslinger_controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

/* Legendary Play Button */
.legendary_play_btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 21px;
    padding: 21px 55px;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 50%, #DAA520 100%);
    border: 4px solid #DAA520;
    border-radius: 89px;
    color: white;
    font-family: 'Rye', cursive;
    font-size: 1.17rem;
    cursor: pointer;
    transition: all 0.47s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
            0 13px 34px rgba(139,69,19,0.4),
            inset 0 2px 8px rgba(255,255,255,0.2);
    overflow: hidden;
    min-width: 320px;
}

.legendary_play_btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
            0 21px 55px rgba(139,69,19,0.6),
            inset 0 2px 8px rgba(255,255,255,0.3);
    border-color: #FF6347;
}

.legendary_play_btn:active {
    transform: translateY(-3px) scale(1.02);
}

.btn_revolver {
    position: relative;
    width: 47px;
    height: 47px;
    background: radial-gradient(circle, #DAA520, #CD853F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
}

.spinning_cylinder {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    animation: cylinder_spin 1.2s ease-in-out infinite;
}

@keyframes cylinder_spin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.legendary_play_btn:hover .spinning_cylinder {
    animation: rapid_spin 0.3s linear infinite;
}

@keyframes rapid_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn_text_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.main_btn_text {
    font-size: 1.34rem;
    font-weight: bold;
    letter-spacing: 1.2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 3px;
}

.sub_btn_text {
    font-size: 0.89rem;
    opacity: 0.8;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.btn_dust_trail {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.3) 50%,
    transparent 100%);
    transition: left 0.89s ease;
}

.legendary_play_btn:hover .btn_dust_trail {
    left: 100%;
}

/* Secondary Action Buttons */
.secondary_actions {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
    justify-content: center;
}

.scout_btn, .provisions_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: rgba(253,245,230,0.15);
    border: 2px solid rgba(253,245,230,0.4);
    border-radius: 34px;
    color: #FDF5E6;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.34s ease;
    backdrop-filter: blur(8px);
}

.scout_btn:hover, .provisions_btn:hover {
    background: rgba(253,245,230,0.25);
    border-color: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 8px 21px rgba(0,0,0,0.2);
}

.btn_compass, .btn_lantern {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    transition: transform 0.34s ease;
}

.scout_btn:hover .btn_compass {
    transform: rotate(180deg);
}

.provisions_btn:hover .btn_lantern {
    animation: lantern_flicker 0.67s ease-in-out;
}

@keyframes lantern_flicker {
    0%, 100% { opacity: 1; }
    25% { opacity: 0.6; }
    75% { opacity: 0.8; }
}

/* Western Decorative Elements */
.western_decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.desert_sun {
    position: absolute;
    top: 13%;
    right: 8%;
    width: 89px;
    height: 89px;
    opacity: 0.21;
    filter: hue-rotate(21deg);
    animation: sun_rays 6.7s linear infinite;
}

@keyframes sun_rays {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.mountain_silhouette {
    position: absolute;
    bottom: 0;
    left: 13%;
    width: 134px;
    height: 67px;
    opacity: 0.15;
    filter: hue-rotate(89deg);
}

.dust_particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dust_mote {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(218,165,32,0.4);
    border-radius: 50%;
    animation: dust_drift 8.9s infinite linear;
}

.dust_1 {
    top: 21%;
    left: 13%;
    animation-delay: 0s;
}

.dust_2 {
    top: 55%;
    right: 21%;
    animation-delay: -2.3s;
}

.dust_3 {
    bottom: 34%;
    left: 34%;
    animation-delay: -4.7s;
}

.dust_4 {
    top: 67%;
    right: 8%;
    animation-delay: -6.1s;
}

@keyframes dust_drift {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% {
        transform: translateX(89px) translateY(-55px) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .desert_playground {
        padding: 89px 0;
    }

    .saloon_title {
        font-size: 2.8rem;
    }

    .legendary_play_btn {
        min-width: 280px;
        padding: 17px 34px;
        flex-direction: column;
        gap: 13px;
        text-align: center;
    }

    .btn_text_content {
        align-items: center;
    }

    .secondary_actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .scout_btn, .provisions_btn {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .frontier_call {
        font-size: 1.17rem;
    }

    .legendary_play_btn {
        min-width: 250px;
        padding: 15px 21px;
    }

    .main_btn_text {
        font-size: 1.17rem;
    }

    .sub_btn_text {
        font-size: 0.78rem;
    }
}

/* Enhanced Footer Styles */
.frontier_footer {
    background: linear-gradient(135deg, var(--midnight_blue) 0%, #1a3333 100%);
    color: white;
    padding: 55px 0 21px;
    position: relative;
}

.frontier_footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset_orange), var(--desert_gold), var(--canyon_red));
}

.footer_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
}

.footer_content_grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 55px;
    margin-bottom: 34px;
}

.footer_logo {
    height: 55px;
    width: auto;
    margin-bottom: 21px;
    filter: brightness(1.1);
}

.footer_description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer_heading {
    font-size: 1.34rem;
    margin-bottom: 21px;
    color: var(--desert_gold);
    font-weight: 700;
    position: relative;
}

.footer_heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--sunset_orange);
    border-radius: 1px;
}

.footer_menu {
    list-style: none;
}

.footer_menu li {
    margin-bottom: 13px;
}

.footer_link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.34s ease;
    font-size: 1.05rem;
    position: relative;
    padding-left: 8px;
}

.footer_link::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.34s ease;
    color: var(--desert_gold);
}

.footer_link:hover {
    color: var(--desert_gold);
    padding-left: 21px;
}

.footer_link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 13px;
    transition: transform 0.34s ease;
}

.contact_item:hover {
    transform: translateX(5px);
}

.contact_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

/* Responsible Gaming Section */
.responsible_gaming_section {
    background: rgba(255, 255, 255, 0.05);
    padding: 34px;
    border-radius: 13px;
    margin-bottom: 34px;
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.regulatory_heading {
    font-size: 1.34rem;
    color: var(--desert_gold);
    text-align: center;
    margin-bottom: 21px;
    font-weight: 700;
}

.regulatory_badges {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.regulatory_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 17px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    text-decoration: none;
    transition: all 0.34s ease;
    border: 2px solid transparent;
    min-width: 120px;
}

.regulatory_link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--desert_gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.2);
}

.regulatory_badge {
    height: 55px;
    width: auto;
    transition: transform 0.34s ease;
    filter: brightness(1.1);
}

.regulatory_link:hover .regulatory_badge {
    transform: scale(1.05);
}

.badge_label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.89rem;
    text-align: center;
    font-weight: 600;
    transition: color 0.34s ease;
}

.regulatory_link:hover .badge_label {
    color: var(--desert_gold);
}

/* Footer Bottom */
.footer_bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 21px;
}

.legal_disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 21px;
    background: rgba(255, 99, 71, 0.1);
    padding: 17px;
    border-radius: 8px;
    border-left: 4px solid var(--sunset_orange);
}

.disclaimer_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    margin-top: 3px;
}

.copyright_info {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.97rem;
}

/* Cookie Banner */
.cookie_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dust_brown), var(--canyon_red));
    color: white;
    padding: 17px 21px;
    z-index: 1000;
    box-shadow: 0 -3px 21px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.47s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie_banner.show {
    transform: translateY(0);
}

.cookie_content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 17px;
}

.cookie_icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.cookie_text {
    flex: 1;
}

.cookie_message {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}

.cookie_accept_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 21px;
    background: var(--desert_gold);
    color: var(--midnight_blue);
    border: none;
    border-radius: 34px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.34s ease;
    flex-shrink: 0;
}

.cookie_accept_btn:hover {
    background: white;
    transform: scale(1.05);
}

.btn_check_icon {
    width: 18px;
    height: 18px;
}

/* Age Verification Modal */
.age_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.47s ease;
}

.age_modal_overlay.show {
    opacity: 1;
    visibility: visible;
}

.age_modal_content {
    background: linear-gradient(135deg, var(--rustic_cream), white);
    padding: 55px 34px;
    border-radius: 21px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 21px 55px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.47s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.age_modal_overlay.show .age_modal_content {
    transform: scale(1);
}

.age_icon_wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 21px;
}

.age_badge {
    background: linear-gradient(135deg, var(--sunset_orange), var(--canyon_red));
    color: white;
    width: 89px;
    height: 89px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    font-weight: bold;
    font-family: 'Rye', cursive;
    box-shadow: 0 8px 21px rgba(255, 99, 71, 0.4);
    margin: 0 auto 13px;
    animation: age_pulse 2.3s infinite ease-in-out;
}

@keyframes age_pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.age_warning_icon {
    width: 34px;
    height: 34px;
    filter: hue-rotate(21deg);
    margin: 0 auto;
}

.age_modal_title {
    font-family: 'Rye', cursive;
    font-size: 1.89rem;
    color: var(--dust_brown);
    margin-bottom: 17px;
}

.age_modal_text {
    color: var(--weathered_gray);
    font-size: 1.17rem;
    line-height: 1.6;
    margin-bottom: 34px;
}

.age_confirm_btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 17px 34px;
    background: linear-gradient(135deg, var(--sunset_orange), var(--canyon_red));
    color: white;
    border: none;
    border-radius: 34px;
    font-size: 1.17rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.34s ease;
    box-shadow: 0 8px 21px rgba(255, 99, 71, 0.3);
}

.age_confirm_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(255, 99, 71, 0.5);
}

.age_btn_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .footer_content_grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .footer_heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact_item {
        justify-content: center;
    }

    .regulatory_badges {
        gap: 21px;
    }

    .cookie_content {
        flex-direction: column;
        gap: 13px;
        text-align: center;
    }

    .cookie_accept_btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media screen and (max-width: 640px) {
    .regulatory_badges {
        flex-direction: column;
        align-items: center;
    }

    .regulatory_link {
        width: 100%;
        max-width: 200px;
    }

    .age_modal_content {
        padding: 34px 21px;
    }

    .legal_disclaimer {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }
}

/* Contact Page Specific Styles */
.active_link {
    color: var(--sunset_orange) !important;
    position: relative;
}

.active_link::after {
    width: 100% !important;
}

/* Contact Hero Section */
.contact_frontier_hero {
    min-height: 67vh;
    background: linear-gradient(135deg,
    var(--dust_brown) 0%,
    var(--canyon_red) 34%,
    var(--desert_gold) 67%,
    var(--sunset_orange) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_dust_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 23% 67%, rgba(255,255,255,0.1) 0%, transparent 45%),
            radial-gradient(circle at 78% 23%, rgba(255,215,0,0.15) 0%, transparent 55%);
    pointer-events: none;
}

.contact_hero_wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
    position: relative;
    z-index: 2;
}

.contact_visual_decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating_envelope, .floating_phone, .floating_chat {
    position: absolute;
    opacity: 0.17;
    filter: brightness(0) invert(1);
    animation: contact_float 7.3s infinite ease-in-out;
}

.floating_envelope {
    width: 76px;
    height: 76px;
    top: 17%;
    right: 11%;
}

.floating_phone {
    width: 63px;
    height: 63px;
    bottom: 23%;
    left: 13%;
    animation-delay: -2.7s;
}

.floating_chat {
    width: 58px;
    height: 58px;
    top: 45%;
    left: 8%;
    animation-delay: -5.1s;
}

@keyframes contact_float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-17px) rotate(3deg); }
    66% { transform: translateY(11px) rotate(-2deg); }
}

.contact_hero_content {
    text-align: center;
    color: white;
    max-width: 890px;
    margin: 0 auto;
}

.contact_main_title {
    font-family: 'Rye', cursive;
    font-size: clamp(3.1rem, 5.5vw, 6.4rem);
    margin-bottom: 17px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.contact_accent {
    color: var(--desert_gold);
    position: relative;
    display: inline-block;
}

.contact_accent::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, white, var(--desert_gold));
    border-radius: 2px;
    animation: accent_glow 2.8s ease-in-out infinite alternate;
}

@keyframes accent_glow {
    0% { opacity: 0.7; transform: scaleX(0.9); }
    100% { opacity: 1; transform: scaleX(1.1); }
}

.contact_subtitle_wrapper {
    margin-bottom: 21px;
}

.contact_subtitle {
    background: rgba(255,255,255,0.2);
    padding: 8px 19px;
    border-radius: 23px;
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
}

.contact_hero_description {
    font-size: 1.23rem;
    line-height: 1.7;
    opacity: 0.93;
    max-width: 720px;
    margin: 0 auto;
}

/* Telegraph Station Section */
.telegraph_station {
    padding: 89px 0;
    background: linear-gradient(135deg, var(--rustic_cream) 0%, white 100%);
    position: relative;
}

.telegraph_station::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset_orange), var(--desert_gold));
}

.station_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
}

.contact_grid_layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 67px;
    align-items: flex-start;
}

/* Contact Information Post */
.frontier_info_post {
    background: linear-gradient(135deg, var(--prairie_beige), var(--rustic_cream));
    padding: 47px 34px;
    border-radius: 17px;
    box-shadow: 0 13px 34px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.frontier_info_post::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--sunset_orange), var(--desert_gold));
    border-radius: 19px;
    z-index: -1;
}

.info_station_title {
    font-family: 'Rye', cursive;
    font-size: 2.1rem;
    color: var(--dust_brown);
    text-align: center;
    margin-bottom: 34px;
    position: relative;
}

.info_station_title::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 67px;
    height: 3px;
    background: var(--sunset_orange);
    border-radius: 2px;
}

.contact_details_wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact_method_card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 21px;
    background: white;
    border-radius: 11px;
    transition: all 0.34s ease;
    border: 2px solid transparent;
}

.contact_method_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 23px rgba(0,0,0,0.12);
    border-color: var(--desert_gold);
}

.method_icon_holder {
    width: 47px;
    height: 47px;
    background: linear-gradient(135deg, var(--sunset_orange), var(--canyon_red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method_icon {
    width: 23px;
    height: 23px;
    filter: brightness(0) invert(1);
}

.method_title {
    font-size: 1.23rem;
    color: var(--dust_brown);
    margin-bottom: 6px;
    font-weight: 700;
}

.method_info {
    color: var(--weathered_gray);
    line-height: 1.6;
    font-size: 1.05rem;
    margin: 0;
}

/* Message Dispatch Center */
.message_dispatch_center {
    background: white;
    padding: 47px 34px;
    border-radius: 17px;
    box-shadow: 0 13px 34px rgba(0,0,0,0.1);
    position: relative;
}

.message_dispatch_center::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--dust_brown), var(--canyon_red));
    border-radius: 19px;
    z-index: -1;
}

.dispatch_title {
    font-family: 'Rye', cursive;
    font-size: 2.1rem;
    color: var(--dust_brown);
    margin-bottom: 13px;
}

.dispatch_description {
    color: var(--weathered_gray);
    font-size: 1.13rem;
    margin-bottom: 34px;
    line-height: 1.6;
}

/* Form Styles */
.frontier_message_form {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.form_field_group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.input_field_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field_label {
    font-weight: 600;
    color: var(--dust_brown);
    font-size: 1.05rem;
}

.frontier_input, .frontier_select, .frontier_textarea {
    padding: 15px 21px 15px 47px;
    border: 2px solid rgba(139,69,19,0.2);
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: 'Crimson Text', serif;
    background: var(--rustic_cream);
    color: var(--midnight_blue);
    transition: all 0.34s ease;
}

.frontier_input:focus, .frontier_select:focus, .frontier_textarea:focus {
    outline: none;
    border-color: var(--sunset_orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(255,99,71,0.1);
}

.frontier_textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Crimson Text', serif;
}

.input_icon, .textarea_icon {
    position: absolute;
    left: 15px;
    top: 43px;
    width: 19px;
    height: 19px;
    opacity: 0.6;
    pointer-events: none;
}

.textarea_icon {
    top: 47px;
}

.error_message {
    color: #dc3545;
    font-size: 0.89rem;
    font-weight: 600;
    display: none;
}

.error_message.show {
    display: block;
}

.input_field_wrapper.error .frontier_input,
.input_field_wrapper.error .frontier_select,
.input_field_wrapper.error .frontier_textarea {
    border-color: #dc3545;
    background: rgba(220,53,69,0.05);
}

/* Checkbox Styles */
.form_checkbox_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 13px 0;
}

.frontier_checkbox {
    width: 19px;
    height: 19px;
    margin-top: 2px;
    accent-color: var(--sunset_orange);
}

.checkbox_label {
    color: var(--weathered_gray);
    font-size: 1.05rem;
    line-height: 1.5;
    cursor: pointer;
}

/* Send Button */
.send_message_btn {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 19px 34px;
    background: linear-gradient(135deg, var(--sunset_orange), var(--canyon_red));
    color: white;
    border: none;
    border-radius: 11px;
    font-size: 1.17rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.34s ease;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.send_message_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 13px 34px rgba(255,99,71,0.4);
}

.send_message_btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn_send_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    transition: transform 0.34s ease;
}

.send_message_btn:hover .btn_send_icon {
    transform: translateX(3px);
}

.btn_text_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn_main_text {
    font-size: 1.17rem;
    font-weight: 700;
}

.btn_sub_text {
    font-size: 0.89rem;
    opacity: 0.8;
    font-style: italic;
}

.btn_loading_spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner_icon {
    width: 23px;
    height: 23px;
    filter: brightness(0) invert(1);
    animation: spin_loading 1.2s linear infinite;
}

@keyframes spin_loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Modal */
.success_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.47s ease;
}

.success_modal_overlay.show {
    opacity: 1;
    visibility: visible;
}

.success_modal_content {
    background: linear-gradient(135deg, white, var(--rustic_cream));
    padding: 47px 34px;
    border-radius: 17px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 21px 55px rgba(0,0,0,0.3);
    transform: scale(0.8);
    transition: transform 0.47s ease;
}

.success_modal_overlay.show .success_modal_content {
    transform: scale(1);
}

.success_icon_wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 21px;
}

.success_icon {
    width: 76px;
    height: 76px;
    filter: hue-rotate(90deg);
    animation: success_bounce 0.67s ease-out;
}

@keyframes success_bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(40,167,69,0.3) 0%, transparent 70%);
    animation: success_glow_pulse 2.3s ease-in-out infinite;
}

@keyframes success_glow_pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.success_title {
    font-family: 'Rye', cursive;
    font-size: 1.76rem;
    color: var(--dust_brown);
    margin-bottom: 15px;
}

.success_message {
    color: var(--weathered_gray);
    font-size: 1.13rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.success_close_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 23px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.34s ease;
}

.success_close_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(40,167,69,0.3);
}

.close_btn_icon {
    width: 19px;
    height: 19px;
    filter: brightness(0) invert(1);
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .contact_grid_layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .form_field_group {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .contact_hero_content {
        text-align: center;
    }

    .send_message_btn {
        flex-direction: column;
        gap: 8px;
    }

    .btn_text_wrapper {
        align-items: center;
    }
}

@media screen and (max-width: 640px) {
    .contact_main_title {
        font-size: 2.5rem;
    }

    .frontier_info_post, .message_dispatch_center {
        padding: 28px 21px;
    }

    .success_modal_content {
        padding: 34px 21px;
    }
}

/* Game Page Specific Styles */
.active_link {
    color: var(--sunset_orange) !important;
}

.active_link::after {
    width: 100% !important;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 67px 0;
    background: linear-gradient(135deg, var(--prairie_beige) 0%, var(--rustic_cream) 100%);
    position: relative;
}

.disclaimer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 21px;
}

.disclaimer_content {
    background: white;
    padding: 47px 34px;
    border-radius: 17px;
    text-align: center;
    box-shadow: 0 13px 34px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.disclaimer_content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--sunset_orange), var(--desert_gold));
    border-radius: 19px;
    z-index: -1;
}

.disclaimer_icon_wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 21px;
}

.disclaimer_main_icon {
    width: 67px;
    height: 67px;
    filter: hue-rotate(34deg);
}

.icon_pulse_effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 89px;
    height: 89px;
    background: radial-gradient(circle, rgba(255,99,71,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: disclaimer_pulse 2.8s ease-in-out infinite;
}

@keyframes disclaimer_pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.disclaimer_heading {
    font-family: 'Rye', cursive;
    font-size: 2.3rem;
    color: var(--dust_brown);
    margin-bottom: 21px;
}

.disclaimer_text_blocks {
    margin-bottom: 28px;
}

.disclaimer_paragraph {
    font-size: 1.17rem;
    color: var(--weathered_gray);
    line-height: 1.7;
    margin-bottom: 17px;
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer_badges {
    display: flex;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
}

.disclaimer_badge {
    background: linear-gradient(135deg, var(--sunset_orange), var(--canyon_red));
    color: white;
    padding: 8px 17px;
    border-radius: 23px;
    font-size: 0.97rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Frontier Saloon Slots */
.frontier_saloon_slots {
    padding: 89px 0;
    background: linear-gradient(135deg,
    var(--midnight_blue) 0%,
    var(--dust_brown) 25%,
    var(--canyon_red) 50%,
    var(--desert_gold) 75%,
    var(--sunset_orange) 100%);
    min-height: 89vh;
    position: relative;
    overflow: hidden;
}

.frontier_saloon_slots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 23% 67%, rgba(255,255,255,0.1) 0%, transparent 45%),
            radial-gradient(circle at 78% 23%, rgba(0,0,0,0.15) 0%, transparent 55%);
    pointer-events: none;
}

.saloon_wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
    position: relative;
    z-index: 2;
}

.slot_machine_area {
    text-align: center;
    color: white;
}

.saloon_slot_title {
    font-family: 'Rye', cursive;
    font-size: clamp(2.8rem, 5vw, 5.7rem);
    margin-bottom: 13px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.title_accent {
    color: var(--desert_gold);
    position: relative;
}

.slot_subtitle {
    font-size: 1.34rem;
    opacity: 0.9;
    margin-bottom: 47px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Slot Machine Container */
.slot_machine_container {
    background: linear-gradient(135deg, var(--rustic_cream), white);
    border-radius: 21px;
    padding: 34px;
    box-shadow: 0 21px 55px rgba(0,0,0,0.3);
    max-width: 890px;
    margin: 0 auto;
    position: relative;
    border: 4px solid var(--desert_gold);
}

/* Balance Display */
.cowboy_balance_display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 34px;
    gap: 21px;
}

.balance_info, .last_win_display {
    display: flex;
    align-items: center;
    gap: 13px;
    background: linear-gradient(135deg, var(--prairie_beige), var(--rustic_cream));
    padding: 17px 28px;
    border-radius: 13px;
    flex: 1;
    border: 2px solid var(--canyon_red);
}

.balance_icon, .win_icon {
    width: 34px;
    height: 34px;
    filter: hue-rotate(21deg);
}

.balance_text, .win_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.balance_label, .win_label {
    font-size: 0.89rem;
    color: var(--weathered_gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance_amount, .win_amount {
    font-size: 1.67rem;
    color: var(--dust_brown);
    font-weight: 700;
    font-family: 'Rye', cursive;
}

/* Slot Reels */
.slot_reels_container {
    position: relative;
    margin-bottom: 34px;
}

.reel_background {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    background: linear-gradient(135deg, var(--dust_brown), var(--midnight_blue));
    padding: 21px;
    border-radius: 13px;
    border: 3px solid var(--desert_gold);
}

.slot_reel {
    background: linear-gradient(135deg, var(--rustic_cream), white);
    border-radius: 8px;
    overflow: hidden;
    height: 267px;
    position: relative;
    border: 2px solid var(--canyon_red);
}

.symbol_container {
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(139,69,19,0.2);
    transition: transform 0.34s ease;
}

.symbol_container:last-child {
    border-bottom: none;
}

.slot_symbol {
    width: 67px;
    height: 67px;
    object-fit: contain;
    transition: all 0.34s ease;
}

.symbol_container.winning .slot_symbol {
    animation: symbol_celebrate 0.89s ease-in-out infinite alternate;
}

@keyframes symbol_celebrate {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(3deg); }
}

/* Spinning Animation */
.slot_reel.spinning .symbol_container {
    animation: reel_spin 0.1s linear infinite;
}

@keyframes reel_spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-89px); }
}

/* Win Lines */
.win_lines_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.win_line {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset_orange), var(--desert_gold));
    border-radius: 2px;
    box-shadow: 0 0 13px rgba(255,99,71,0.6);
    opacity: 0;
    animation: win_line_glow 1.3s ease-in-out infinite alternate;
}

.win_line.active {
    opacity: 1;
}

@keyframes win_line_glow {
    0% { opacity: 0.6; transform: scaleY(1); }
    100% { opacity: 1; transform: scaleY(1.2); }
}

.line_1 {
    top: 65px;
    left: 21px;
    right: 21px;
}

.line_2 {
    top: 154px;
    left: 21px;
    right: 21px;
}

.line_3 {
    top: 243px;
    left: 21px;
    right: 21px;
}

/* Game Controls */
.slot_controls_panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 34px;
    margin-bottom: 21px;
}

.bet_controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.control_label {
    font-size: 1.05rem;
    color: var(--dust_brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bet_buttons_group {
    display: flex;
    align-items: center;
    gap: 17px;
}

.bet_adjust_btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 17px;
    background: linear-gradient(135deg, var(--canyon_red), var(--dust_brown));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.34s ease;
    font-size: 1.05rem;
}

.bet_adjust_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(139,69,19,0.3);
}

.bet_adjust_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn_icon {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
}

.current_bet_display {
    background: white;
    padding: 17px 28px;
    border-radius: 11px;
    border: 3px solid var(--desert_gold);
    text-align: center;
    min-width: 120px;
}

.bet_amount {
    font-size: 1.89rem;
    font-weight: 700;
    color: var(--dust_brown);
    font-family: 'Rye', cursive;
    display: block;
}

.bet_unit {
    font-size: 0.89rem;
    color: var(--weathered_gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Spin Button */
.spin_button {
    background: linear-gradient(135deg, var(--sunset_orange), var(--canyon_red));
    color: white;
    border: none;
    border-radius: 50%;
    width: 134px;
    height: 134px;
    cursor: pointer;
    transition: all 0.34s ease;
    position: relative;
    box-shadow: 0 13px 34px rgba(255,99,71,0.4);
    border: 4px solid var(--desert_gold);
}

.spin_button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 21px 55px rgba(255,99,71,0.6);
}

.spin_button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spin_btn_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.spin_icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
    transition: transform 0.34s ease;
}

.spin_button:hover .spin_icon {
    transform: rotate(180deg);
}

.spin_text {
    font-family: 'Rye', cursive;
    font-size: 1.34rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.spin_loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading_spinner {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
    animation: spin_animation 1.2s linear infinite;
}

@keyframes spin_animation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Game Result Display */
.game_result_display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, white, var(--rustic_cream));
    padding: 34px;
    border-radius: 17px;
    text-align: center;
    box-shadow: 0 21px 55px rgba(0,0,0,0.3);
    border: 3px solid var(--desert_gold);
    z-index: 100;
    min-width: 320px;
    animation: result_popup 0.67s ease-out;
}

@keyframes result_popup {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.result_icon_wrapper {
    margin-bottom: 17px;
}

.result_icon {
    width: 67px;
    height: 67px;
    animation: result_icon_bounce 0.89s ease-out;
}

@keyframes result_icon_bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-21px); }
    70% { transform: translateY(-13px); }
}

.result_title {
    font-family: 'Rye', cursive;
    font-size: 1.89rem;
    color: var(--dust_brown);
    margin-bottom: 11px;
}

.result_message {
    font-size: 1.23rem;
    color: var(--weathered_gray);
    line-height: 1.6;
}

/* Mobile Responsive */
@media screen and (max-width: 890px) {
    .cowboy_balance_display {
        flex-direction: column;
        gap: 13px;
    }

    .slot_controls_panel {
        flex-direction: column;
        gap: 21px;
    }

    .bet_buttons_group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .spin_button {
        width: 120px;
        height: 120px;
    }

    .disclaimer_badges {
        justify-content: center;
        gap: 8px;
    }

    .disclaimer_badge {
        font-size: 0.89rem;
        padding: 6px 13px;
    }
}

@media screen and (max-width: 640px) {
    .slot_machine_container {
        padding: 21px;
    }

    .reel_background {
        padding: 13px;
        gap: 5px;
    }

    .slot_reel {
        height: 200px;
    }

    .symbol_container {
        height: 67px;
    }

    .slot_symbol {
        width: 47px;
        height: 47px;
    }

    .game_result_display {
        padding: 21px;
        min-width: 280px;
    }
}