/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-color: #ff6b6b;
    --secondary-accent: #4ecdc4;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --text-muted: #7f8c8d;
    --background-dark: #1a1a2e;
    --background-light: #ffffff;
    --warning-color: #e74c3c;
    --success-color: #27ae60;
    --card-shadow: 0 8px 32px rgba(0,0,0,0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-light);
    overflow-x: hidden;
}

.container_wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 21px;
}

/* Age Warning Banner */
.age_warning_banner {
    background: var(--warning-color);
    color: white;
    padding: 13px 0;
    position: relative;
    z-index: 1000;
}

.disclaimer_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
}

.warning_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.disclaimer_content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.close_disclaimer {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

.close_disclaimer img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.close_disclaimer:hover {
    background: rgba(255,255,255,0.2);
}

/* Navigation */
.primary_navigation {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.navigation_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.mobile_nav_toggle {
    display: none;
}

.toggle_button {
    display: none;
}

.burger_icon {
    width: 34px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.burger_icon:before,
.burger_icon:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.burger_icon:before {
    top: -9px;
}

.burger_icon:after {
    top: 9px;
}

.brand_logo img {
    height: 42px;
    width: auto;
}

.navigation_menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav_list {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
}

.nav_link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav_link:hover {
    color: var(--accent-color);
}

.nav_link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav_link:hover:after {
    width: 100%;
}

/* Mobile Navigation */
@media screen and (max-width: 840px) {
    .toggle_button {
        display: block;
        cursor: pointer;
        padding: 13px;
        z-index: 2;
    }

    .navigation_menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        transition: var(--transition);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
    }

    .nav_list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 21px;
    }

    .nav_item {
        width: 100%;
        text-align: center;
    }

    .nav_link {
        display: inline-block;
        padding: 13px 21px;
        font-size: 18px;
        color: var(--text-dark);
    }

    .mobile_nav_toggle:checked ~ .navigation_menu {
        left: 0;
    }

    .mobile_nav_toggle:checked ~ .toggle_button .burger_icon {
        background: transparent;
    }

    .mobile_nav_toggle:checked ~ .toggle_button .burger_icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile_nav_toggle:checked ~ .toggle_button .burger_icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.hero_showcase {
    padding: 89px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero_text_area h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 55px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 21px;
}

.highlight_text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social_game_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 21px;
}

.social_game_badge img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.hero_description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 34px;
    line-height: 1.7;
}

.action_buttons {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.primary_action_btn,
.secondary_action_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.primary_action_btn {
    background: var(--primary-gradient);
    color: white;
}

.primary_action_btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.secondary_action_btn {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.secondary_action_btn:hover {
    background: var(--text-dark);
    color: white;
}

.primary_action_btn img,
.secondary_action_btn img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.secondary_action_btn img {
    filter: none;
}

.secondary_action_btn:hover img {
    filter: brightness(0) invert(1);
}

.hero_visual {
    position: relative;
}

.main_hero_image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.floating_elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float_icon {
    position: absolute;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    animation: float 3s ease-in-out infinite;
}

.float_icon img {
    width: 21px;
    height: 21px;
}

.icon_1 {
    top: 21px;
    right: 21px;
    animation-delay: 0s;
}

.icon_2 {
    bottom: 89px;
    left: 21px;
    animation-delay: 1s;
}

.icon_3 {
    top: 50%;
    right: -21px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-13px); }
}

/* Features Section */
.feature_showcase {
    padding: 89px 0;
    background: var(--background-light);
}

.section_header {
    text-align: center;
    margin-bottom: 55px;
}

.section_header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section_header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 34px;
}

.feature_card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.feature_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.card_visual {
    overflow: hidden;
    position: relative;
}

.feature_image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.feature_card:hover .feature_image {
    transform: scale(1.05);
}

.card_content {
    padding: 28px 32px;
}

.card_content h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.card_content p {
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.feature_link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.feature_link:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.feature_link:hover:after {
    width: 100%;
}

/* About Section */
.about_platform {
    padding: 89px 0;
    background: var(--background-dark);
    color: var(--text-light);
}

.about_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about_image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.section_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about_subtitle {
    font-size: 20px;
    color: var(--secondary-accent);
    margin-bottom: 24px;
    font-weight: 300;
}

.about_text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 21px;
    color: rgba(255,255,255,0.8);
}

.about_actions {
    margin-top: 34px;
}

.primary_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-accent);
    color: var(--text-dark);
    padding: 16px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.primary_btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.primary_btn img {
    width: 18px;
    height: 18px;
}

/* Statistics Counter */
.achievement_counter {
    padding: 55px 0;
    background: var(--background-dark);
    position: relative;
}

.counter_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 34px;
}

.counter_item {
    display: flex;
    justify-content: center;
}

.stat_block {
    text-align: center;
    width: 100%;
}

.stat_content {
    position: relative;
}

.counter_number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-accent);
    margin-bottom: 8px;
    line-height: 1;
    font-family: 'Orbitron', sans-serif;
}

.stat_content span {
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Testimonials */
.community_voices {
    padding: 89px 0;
    background: var(--background-dark);
}

.testimonial_header {
    text-align: center;
    margin-bottom: 55px;
}

.section_subtitle {
    font-size: 16px;
    color: var(--secondary-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 13px;
    display: block;
}

.testimonial_header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
}

.testimonial_carousel {
    overflow: hidden;
}

.testimonial_container {
    display: flex;
    gap: 34px;
    animation: scroll 20s linear infinite;
}

.testimonial_slide {
    flex: 0 0 400px;
}

.testimonial_card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 28px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.quote_icon {
    position: absolute;
    top: 21px;
    right: 21px;
}

.quote_icon img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
    opacity: 0.3;
}

.user_info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 21px;
}

.user_avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.user_name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 3px;
    color: var(--text-light);
}

.user_role {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.testimonial_text {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 15px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Call to Action */
.join_community {
    padding: 89px 0;
    background: var(--primary-gradient);
    text-align: center;
    color: white;
}

.cta_content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 21px;
}

.cta_content p {
    font-size: 18px;
    margin-bottom: 34px;
    opacity: 0.9;
}

.primary_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--text-dark);
    padding: 18px 34px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.primary_cta_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.primary_cta_btn img {
    width: 21px;
    height: 21px;
}

/* Footer */
.site_footer {
    padding: 55px 0;
    background: var(--background-dark);
    color: var(--text-light);
}

.footer_content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 42px;
}

.footer_brand {
    max-width: 400px;
}

.footer_logo {
    filter: brightness(0) invert(1);
    height: 122px;
    margin-bottom: 21px;
}

.footer_brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 13px;
    font-size: 14px;
}

.footer_title {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 21px;
    font-weight: 600;
}

.footer_title span {
    border-bottom: 2px solid var(--secondary-accent);
    padding-bottom: 3px;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 8px;
}

.footer_links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer_links a:hover {
    color: var(--secondary-accent);
}

.footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 34px;
}

.copyright_section {
    text-align: center;
}

.copyright_section p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer_text {
    font-size: 12px !important;
    font-style: italic;
    opacity: 0.7;
}

.copyright_section a {
    color: var(--secondary-accent);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero_grid,
    .about_layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero_text_area h1 {
        font-size: 42px;
    }

    .footer_content {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .container_wrapper {
        padding: 0 16px;
    }

    .hero_showcase,
    .feature_showcase,
    .about_platform,
    .join_community {
        padding: 55px 0;
    }

    .hero_text_area h1 {
        font-size: 34px;
    }

    .section_header h2,
    .section_title,
    .cta_content h2 {
        font-size: 28px;
    }

    .action_buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .features_grid {
        grid-template-columns: 1fr;
    }

    .counter_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }

    .testimonial_slide {
        flex: 0 0 280px;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero_text_area h1 {
        font-size: 28px;
    }

    .counter_grid {
        grid-template-columns: 1fr;
    }

    .disclaimer_content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(21px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Footer Styles */
.site_footer {
    padding: 55px 0 21px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-light);
    position: relative;
}

.footer_content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 42px;
}

.footer_brand {
    max-width: 400px;
}

.footer_logo {
    filter: brightness(0) invert(1);
    height: 122px;
    margin-bottom: 21px;
}

.footer_brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 13px;
    font-size: 14px;
}

.footer_title {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 21px;
    font-weight: 600;
}

.footer_title span {
    border-bottom: 2px solid var(--secondary-accent);
    padding-bottom: 3px;
}

.footer_links {
    list-style: none;
}

.footer_links li {
    margin-bottom: 8px;
}

.footer_links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer_links a:hover {
    color: var(--secondary-accent);
}

/* Regulator Section */
.regulator_section {
    margin-top: 13px;
}

.regulator_item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 13px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.regulator_item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.regulator_item a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.regulator_logo {
    width: 154px;
    filter: brightness(0) invert(1);
}

.responsibility_text {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 13px;
    font-style: italic;
}

/* Legal Info */
.legal_info p {
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.6);
}

.age_requirement {
    color: var(--warning-color) !important;
    font-weight: 600;
}

.game_nature {
    color: var(--success-color) !important;
}

.footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 34px;
}

.copyright_section {
    text-align: center;
}

.copyright_section p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 8px;
}

.disclaimer_text {
    font-size: 12px !important;
    font-style: italic;
    opacity: 0.7;
}

.copyright_section a {
    color: var(--secondary-accent);
    text-decoration: none;
}

/* Cookie Disclaimer */
.cookie_disclaimer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 21px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--secondary-accent);
}

.cookie_disclaimer.show {
    transform: translateY(0);
}

.cookie_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    gap: 21px;
}

.cookie_text {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: 1;
}

.cookie_icon {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.cookie_text p {
    color: white;
    margin: 0;
    font-size: 14px;
}

.cookie_text a {
    color: var(--secondary-accent);
    text-decoration: none;
}

.cookie_actions {
    display: flex;
    gap: 13px;
}

.accept_cookies_btn,
.decline_cookies_btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: 14px;
}

.accept_cookies_btn {
    background: var(--secondary-accent);
    color: var(--text-dark);
}

.decline_cookies_btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.accept_cookies_btn:hover {
    background: #3db8af;
}

.decline_cookies_btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Age Verification Popup */
.age_verification_popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age_verification_popup.show {
    opacity: 1;
    visibility: visible;
}

.age_popup_content {
    background: white;
    border-radius: 16px;
    padding: 34px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.age_popup_header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 21px;
}

.age_icon {
    width: 28px;
    height: 28px;
    filter: invert(0.2);
}

.age_popup_header h3 {
    color: var(--text-dark);
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.age_image_container {
    margin: 21px 0;
}

.age_symbol {
    width: 89px;
    height: 89px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto;
    border: 5px solid #fff;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.age_popup_body p {
    color: var(--text-dark);
    margin-bottom: 13px;
    font-size: 16px;
}

.age_disclaimer {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

.confirm_age_btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 16px 34px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 21px;
    width: 100%;
}

.confirm_age_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer_content {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .footer_content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .cookie_content {
        flex-direction: column;
        gap: 16px;
    }

    .cookie_actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .age_popup_content {
        padding: 21px;
        margin: 16px;
    }

    .age_symbol {
        width: 68px;
        height: 68px;
        font-size: 21px;
    }
}

/* Game Page Styles */
.disclaimer-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 34px 0;
    color: white;
}

.disclaimer_content {
    display: flex;
    align-items: center;
    gap: 21px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer_header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 16px;
}

.disclaimer_icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.disclaimer_header h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.disclaimer_text p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

/* Slot Game Styles */
.slot_game_section {
    padding: 55px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    min-height: 80vh;
}

.game_container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border-radius: 21px;
    padding: 34px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.game_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
    flex-wrap: wrap;
    gap: 16px;
}

.game_header h1 {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.balance_display {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 236, 196, 0.2);
    padding: 13px 21px;
    border-radius: 13px;
    border: 2px solid var(--secondary-accent);
}

.points_icon {
    width: 21px;
    height: 21px;
    filter: invert(1);
}

.balance_display span {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

/* Slot Machine */
.slot_machine {
    position: relative;
    margin: 34px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 21px;
    border: 3px solid var(--secondary-accent);
    box-shadow: 0 0 30px rgba(76, 236, 196, 0.3);
}

.slot_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.slot_cell {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slot_cell.winning {
    border-color: #f1c40f;
    background: rgba(241, 196, 15, 0.2);
    animation: winGlow 1s ease-in-out infinite alternate;
}

@keyframes winGlow {
    0% { box-shadow: 0 0 5px #f1c40f; }
    100% { box-shadow: 0 0 20px #f1c40f, 0 0 30px #f1c40f; }
}

.symbol {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.slot_cell.spinning .symbol {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {
    0% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(0.8); }
    100% { transform: rotateY(360deg) scale(1); }
}

.paylines_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.payline {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, #f1c40f, #f39c12);
    opacity: 0;
    animation: paylineGlow 2s ease-in-out;
    border-radius: 2px;
    box-shadow: 0 0 10px #f1c40f;
}

@keyframes paylineGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Game Controls */
.game_controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    margin: 34px 0;
    flex-wrap: wrap;
}

.bet_controls {
    display: flex;
    align-items: center;
    gap: 13px;
}

.bet_controls label {
    color: white;
    font-weight: 500;
    font-size: 16px;
}

.bet_input_group {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 5px;
}

.bet_btn {
    background: var(--secondary-accent);
    color: var(--text-dark);
    border: none;
    padding: 8px 13px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.bet_btn:hover {
    background: #3db8af;
    transform: scale(1.05);
}

.bet_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#betAmount {
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    width: 55px;
    font-weight: 600;
    font-size: 16px;
}

.play_button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 16px 34px;
    border-radius: 13px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', sans-serif;
}

.play_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.play_button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.play_button img {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.win_display {
    background: rgba(46, 204, 113, 0.2);
    color: var(--success-color);
    padding: 13px 21px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--success-color);
    min-width: 120px;
    text-align: center;
}

.game_result {
    text-align: center;
    margin: 21px 0;
    font-size: 18px;
    font-weight: 600;
    min-height: 25px;
}

.game_result.win {
    color: var(--success-color);
    animation: winText 0.5s ease-in-out;
}

.game_result.lose {
    color: var(--warning-color);
}

@keyframes winText {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Paytable */
.paytable {
    background: rgba(255,255,255,0.05);
    border-radius: 13px;
    padding: 21px;
    margin-top: 34px;
}

.paytable h3 {
    color: white;
    text-align: center;
    margin-bottom: 21px;
    font-family: 'Orbitron', sans-serif;
}

.paytable_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 13px;
}

.paytable_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    padding: 13px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.symbols_combo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.symbols_combo img {
    width: 28px;
    height: 28px;
}

.symbols_combo span {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.payout {
    color: var(--secondary-accent);
    font-weight: 600;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .game_container {
        margin: 16px;
        padding: 21px;
    }

    .game_header {
        flex-direction: column;
        text-align: center;
    }

    .game_header h1 {
        font-size: 24px;
    }

    .game_controls {
        flex-direction: column;
        gap: 21px;
    }

    .slot_grid {
        max-width: 350px;
    }

    .paytable_grid {
        grid-template-columns: 1fr;
    }

    .disclaimer_content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slot_grid {
        gap: 5px;
        max-width: 280px;
    }

    .slot_cell {
        padding: 5px;
    }

    .bet_input_group {
        flex-direction: column;
        gap: 8px;
    }
}

/* Epic Game Section */
.epic_game_section {
    padding: 89px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.game_showcase_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.game_content_area {
    max-width: 500px;
}

.game_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 8px 16px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 21px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 107, 107, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 107, 107, 0.4); }
}

.game_badge img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.game_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 21px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.neon_text {
    background: linear-gradient(45deg, #00f5ff, #ff00f5, #00ff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

@keyframes neonGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.game_description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 34px;
}

.game_features_list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 42px;
}

.feature_item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 21px;
    background: rgba(255,255,255,0.05);
    border-radius: 13px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.feature_item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(8px);
}

.feature_item img {
    width: 21px;
    height: 21px;
    filter: brightness(0) invert(1);
}

.feature_item span {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

/* Epic Play Button */
.epic_play_button_container {
    text-align: center;
}

.epic_play_button {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 21px;
    transition: all 0.3s ease;
    outline: none;
}

.epic_play_button:hover {
    transform: translateY(-5px) scale(1.05);
}

.button_bg_animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 300% 300%;
    border-radius: 21px;
    animation: buttonBgShift 4s ease-in-out infinite;
    opacity: 0.9;
}

@keyframes buttonBgShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.button_content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 21px 42px;
    border-radius: 21px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 2;
}

.play_icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    animation: playIconPulse 2s ease-in-out infinite;
}

@keyframes playIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.button_text {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.button_particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

.button_glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 25px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.epic_play_button:hover .button_glow {
    opacity: 0.6;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.play_button_subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}

.play_button_subtitle img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* Game Visual Area */
.game_visual_area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot_preview_container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.slot_preview_frame {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 21px;
    padding: 21px;
    border: 3px solid var(--secondary-accent);
    box-shadow:
            0 0 30px rgba(76, 236, 196, 0.3),
            inset 0 0 30px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.preview_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.preview_dots {
    display: flex;
    gap: 5px;
}

.preview_dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-accent);
    animation: dotPulse 2s ease-in-out infinite;
}

.preview_dots span:nth-child(2) { animation-delay: 0.3s; }
.preview_dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.preview_title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.mini_slot_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 16px;
    position: relative;
}

.mini_slot_cell {
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 5px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.mini_slot_cell.winning {
    border-color: #f1c40f;
    background: rgba(241, 196, 15, 0.2);
    animation: miniWinGlow 1.5s ease-in-out infinite;
}

@keyframes miniWinGlow {
    0%, 100% {
        box-shadow: 0 0 5px #f1c40f;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px #f1c40f, 0 0 25px #f1c40f;
        transform: scale(1.05);
    }
}

.mini_slot_cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preview_win_line {
    position: absolute;
    top: 50%;
    left: 21px;
    right: 21px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f1c40f, #f1c40f, #f1c40f, transparent);
    transform: translateY(-50%);
    opacity: 0;
    animation: winLineShow 3s ease-in-out infinite;
    border-radius: 1px;
    box-shadow: 0 0 10px #f1c40f;
}

@keyframes winLineShow {
    0%, 70%, 100% { opacity: 0; }
    80%, 90% { opacity: 1; }
}

.preview_controls {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Floating Game Icons */
.floating_game_icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating_icon {
    position: absolute;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.floating_icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.icon_star {
    top: -13px;
    right: 21px;
    animation: floatStar 4s ease-in-out infinite;
}

.icon_diamond {
    bottom: 21px;
    left: -13px;
    animation: floatDiamond 3.5s ease-in-out infinite;
}

.icon_crown {
    top: 50%;
    right: -21px;
    animation: floatCrown 4.5s ease-in-out infinite;
}

@keyframes floatStar {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-13px) rotate(180deg); }
}

@keyframes floatDiamond {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-21px) rotate(-180deg); }
}

@keyframes floatCrown {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-16px) scale(1.1); }
}

/* Background Elements */
.section_bg_elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg_circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: bgFloat 20s ease-in-out infinite;
}

.circle_1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle_2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

.circle_3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 80%;
    animation-delay: 14s;
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    33% { transform: translateY(-30px) scale(1.1); opacity: 0.5; }
    66% { transform: translateY(20px) scale(0.9); opacity: 0.2; }
}

/* Responsive */
@media (max-width: 1024px) {
    .game_showcase_grid {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }

    .game_title {
        font-size: 38px;
    }

    .slot_preview_container {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .epic_game_section {
        padding: 55px 0;
    }

    .game_title {
        font-size: 32px;
    }

    .button_content {
        padding: 18px 34px;
    }

    .button_text {
        font-size: 16px;
    }

    .slot_preview_container {
        max-width: 300px;
    }

    .floating_icon {
        width: 28px;
        height: 28px;
    }

    .floating_icon img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .game_title {
        font-size: 28px;
    }

    .game_features_list {
        margin-bottom: 34px;
    }

    .feature_item {
        padding: 11px 16px;
    }

    .slot_preview_frame {
        padding: 16px;
    }
}