/* horizon/aurora.css */

/* CSS Variables */
:root {
    --forest-green: #588157;
    --pale-mist: #eef3ef;
    --shadow-pine: #3e5a3d;
    --frost-silver: #b0c4b1;
    --ember-orange: #d4751c;
    --ice-blue: #7ba7bc;
    --storm-gray: #4a5568;
    --snow-white: #ffffff;
    --raven-black: #1a202c;
    --gold-accent: #ffd700;
    --danger-red: #e53e3e;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: var(--storm-gray);
    font-weight: 400;
    font-size: 16px;
    background-color: var(--snow-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    color: var(--raven-black);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 21px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.1rem;
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--forest-green);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--ember-orange);
}

/* Container System */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3, .col-md-4, .col-md-6, .col-md-7, .col-md-10, .col-md-12,
.col-lg-4, .col-lg-6, .col-lg-7, .col-xl-6 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
}

@media (min-width: 1200px) {
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.text-white { color: var(--snow-white) !important; }
.text-black { color: var(--raven-black) !important; }
.text-warning { color: var(--gold-accent) !important; }

.mb-2 { margin-bottom: 0.7rem; }
.mb-3 { margin-bottom: 1.1rem; }
.mb-4 { margin-bottom: 1.6rem; }
.mb-5 { margin-bottom: 3.2rem; }

.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

.d-flex { display: flex; }
.d-md-flex { display: flex; }

.bg-light { background-color: var(--pale-mist) !important; }
.bg-white { background-color: var(--snow-white) !important; }

/* Adult Disclaimer Banner */
.adult_disclaimer_strip {
    background: linear-gradient(135deg, var(--danger-red), #c53030);
    color: var(--snow-white);
    padding: 13px 0;
    font-size: 14px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.disclaimer_container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.disclaimer_icon {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

/* Navigation Styles */
.navigation_header {
    background: var(--snow-white);
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 60px;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.navbar-brand img {
    height: 47px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--raven-black);
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--raven-black);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.hamburger:before { top: -9px; }
.hamburger:after { top: 9px; }

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--storm-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--forest-green);
    background-color: var(--pale-mist);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--forest-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 1002;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--snow-white);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 100px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        z-index: 1001;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 25px;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: inline-block;
        padding: 15px 25px;
        font-size: 20px;
        color: var(--raven-black);
        border-radius: 12px;
        width: 250px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section */
.site-blocks-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.site-blocks-cover.overlay {
    position: relative;
}

.site-blocks-cover.overlay:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background: linear-gradient(rgba(26, 32, 44, 0.6), rgba(58, 90, 61, 0.4));
}

.site-blocks-cover .container {
    position: relative;
    z-index: 2;
}

.site-blocks-cover h1 {
    font-weight: 700;
    color: var(--snow-white);
    text-transform: uppercase;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1.5px;
}

.site-blocks-cover p {
    color: var(--snow-white);
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.game_type_badge {
    display: inline-block;
    background: rgba(229, 62, 62, 0.9);
    padding: 12px 24px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.social_game_label {
    color: var(--snow-white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 992px) {
    .site-blocks-cover h1 {
        font-size: 4.2rem;
        line-height: 1.2;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-green), var(--ember-orange));
    color: var(--snow-white);
    box-shadow: 0 6px 20px rgba(88, 129, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(88, 129, 87, 0.4);
    color: var(--snow-white);
}

.regular-font-size {
    font-size: 1rem !important;
}

/* Site Section */
.site-section {
    padding: 4em 0;
}

@media (min-width: 768px) {
    .site-section {
        padding: 8em 0;
    }
}

.section-heading h2 {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 2.8rem;
    }
}

/* Content Image Area */
.content_image_area {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--pale-mist), var(--snow-white));
}

.content_image_area .content_text h3 {
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--raven-black);
    margin-bottom: 28px;
}

.content_image_area .content_text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--storm-gray);
    margin-bottom: 36px;
}

.content_image_area .content_image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content_image_area .content_image img:hover {
    transform: scale(1.02);
}

.action-btn3 {
    background: linear-gradient(135deg, var(--forest-green), var(--ice-blue));
    color: var(--snow-white);
    display: inline-block;
    padding: 18px 36px;
    font-family: "Cinzel", serif;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(88, 129, 87, 0.3);
}

.action-btn3:hover {
    background: linear-gradient(135deg, var(--ice-blue), var(--forest-green));
    color: var(--snow-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(88, 129, 87, 0.4);
}

/* Cards Section */
.course-1-item {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 25%;
}

.course-1-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.course-1-item figure {
    position: relative;
    margin: 0;
}

.course-1-item .category {
    background: linear-gradient(135deg, var(--forest-green), var(--ice-blue));
    padding: 25px;
    border-radius: 0 0 16px 16px;
}

.course-1-item .category h3 {
    color: var(--snow-white);
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-1-item .price {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(-100%);
    padding: 14px 24px;
    background: var(--ember-orange);
    color: var(--snow-white);
    border-radius: 12px 0 0 0;
    font-weight: 600;
    font-size: 14px;
}

.course-1-item .course-1-content {
    padding: 32px 45px;
    text-align: center;
}

.course-1-item .course-1-content h2 {
    margin: 0 0 32px 0;
    font-size: 22px;
    color: var(--raven-black);
    line-height: 1.4;
}

.course-1-item .course-1-content .rating {
    text-align: center;
    margin-bottom: 20px;
}

.course-1-item .course-1-content .rating > span {
    display: inline-block;
    margin: 0 3px;
    font-size: 18px;
}

.course-1-item .course-1-content .desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--storm-gray);
}

.section-title-underline {
    color: var(--raven-black);
    position: relative;
}

.section-title-underline span {
    display: inline-block;
    border-bottom: 6px solid var(--forest-green);
    padding-bottom: 8px;
}

.owl-slide-3 {
    position: relative;
}

.owl-slide-3 .owl-stage {
    padding-top: 40px;
    padding-bottom: 40px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Statistics Counter */
.statistics-counter {
    overflow-x: hidden;
    position: relative;
    background-attachment: fixed;
    background: url(../agora/stats-bg.png) center/cover no-repeat;
}

#counter-section {
    position: relative;
    z-index: 0;
}

#counter-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0.7;
    background: linear-gradient(135deg, var(--raven-black), var(--forest-green));
    width: 100%;
}

.stats-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
}

.statistics-counter .metrics-block {
    display: block;
    width: 100%;
}

.statistics-counter .metric-content strong.counter-value {
    font-weight: 700;
    font-size: 3.8rem;
    color: var(--snow-white);
    display: block;
    position: relative;
    font-family: "Cinzel", serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.statistics-counter .metric-content span {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 8px;
}

.section-metrics {
    padding: 8em 0;
    position: relative;
}

@media (max-width: 767px) {
    .statistics-counter .metric-wrap {
        margin-bottom: 28px;
    }

    .section-metrics {
        padding: 6em 0;
    }
}

/* Testimonials */
.block-testimony-1 {
    padding: 25px;
}

.block-testimony-1 blockquote {
    background: linear-gradient(135deg, var(--gold-accent), #ffd700);
    padding: 35px;
    font-style: italic;
    font-weight: 400;
    border-radius: 16px;
    color: var(--raven-black);
    font-family: "Lato", serif;
    position: relative;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
    border: none;
    margin: 0;
    font-size: 1.1rem;
}

.block-testimony-1 blockquote:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 215, 0, 0);
    border-top-color: var(--gold-accent);
    border-width: 18px;
    margin-left: -18px;
}

.block-testimony-1 figure {
    position: relative;
    padding-top: 25px;
    margin: 0;
}

.block-testimony-1 figure img {
    max-width: 80px;
    border: 4px solid var(--snow-white);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.block-testimony-1 h3 {
    font-size: 20px;
    margin-top: 15px;
}

.rounded-circle {
    border-radius: 50% !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.font-size-20 {
    font-size: 20px;
}

/* Contact Section */
.main-section {
    padding: 4em 0;
}

@media (min-width: 768px) {
    .main-section {
        padding: 9em 0;
    }
}

.section-header {
    color: var(--ember-orange);
    font-size: 3.2rem;
    font-weight: 700;
}

@media (max-width: 991px) {
    .section-header {
        font-size: 2.5rem;
    }
}

.contact-icon {
    display: block;
    margin-bottom: 15px;
}

.contact-svg-icon {
    width: 32px;
    height: 32px;
    filter: invert(44%) sepia(17%) saturate(1019%) hue-rotate(75deg) brightness(91%) contrast(91%);
}

.form-control {
    height: 52px;
    border-radius: 12px;
    border: 2px solid var(--frost-silver);
    font-family: "Lato", sans-serif;
    font-size: 16px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--forest-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

textarea.form-control {
    height: auto;
    padding: 15px 20px;
    min-height: 140px;
    resize: vertical;
}

.p-5 {
    padding: 3.5rem !important;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.frost_footer_area {
    background: linear-gradient(135deg, var(--raven-black), var(--shadow-pine));
    color: var(--snow-white);
    padding: 60px 0 0;
}

.footer_content_wrapper {
    margin-bottom: 50px;
}

.footer_widget {
    margin-bottom: 40px;
}

.footer_brand img {
    height: 150px;
    filter: brightness(0) invert(1);
    margin-bottom: 25px;
}

.footer_description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--snow-white);
    font-family: "Cinzel", serif;
}

.footer_links {
    list-style: none;
    padding: 0;
}

.footer_links li {
    margin-bottom: 12px;
}

.footer_links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: var(--gold-accent);
}

.footer_contact_info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 3px;
    filter: invert(1);
    flex-shrink: 0;
}

.footer_bottom_section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer_disclaimer {
    margin-bottom: 25px;
}

.disclaimer_text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 0;
}

.footer_bottom_line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.copyright_text {
    text-align: center;
    padding-bottom: 30px;
}

.copyright_text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade"] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade"].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform;
    transition-duration: 0.8s;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }

    .container { padding: 0 15px; }

    .site-blocks-cover h1 {
        font-size: 2.2rem;
    }

    .site-blocks-cover p {
        font-size: 1.1rem;
    }

    .content_image_area {
        padding: 80px 0;
    }

    .content_image_area .content_text h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .statistics-counter .metric-content strong.counter-value {
        font-size: 2.8rem;
    }

    .section-header {
        font-size: 2rem;
    }

    .p-5 {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .game_type_badge {
        padding: 10px 18px;
    }

    .social_game_label {
        font-size: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .action-btn3 {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* Epic Game Section Styles */
.epic_game_zone {
    position: relative;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #3e5a3d 100%);
    padding: 120px 0;
    overflow: hidden;
    color: var(--snow-white);
}

.rune_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(88, 129, 87, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.frost_particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.2), transparent);
    background-size: 200px 200px;
    animation: frost_drift 20s linear infinite;
    pointer-events: none;
}

@keyframes frost_drift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-200px) translateY(-200px); }
}

.viking_emblem {
    margin-bottom: 30px;
    animation: emblem_glow 3s ease-in-out infinite alternate;
}

.emblem_icon {
    width: 60px;
    height: 60px;
    filter: invert(1) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

@keyframes emblem_glow {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

.game_title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffd700, #ffa500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    animation: title_shimmer 4s ease-in-out infinite;
}

@keyframes title_shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.game_description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game_features_mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature_rune {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
}

.feature_rune:hover {
    transform: translateY(-8px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.rune_icon {
    width: 32px;
    height: 32px;
    filter: invert(1) drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.feature_rune:hover .rune_icon {
    transform: scale(1.2) rotate(10deg);
    filter: invert(1) drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.feature_rune span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.epic_play_button_container {
    margin: 60px 0;
    position: relative;
}

.mjolnir_play_btn {
    position: relative;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    border: none;
    border-radius: 25px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
            0 15px 35px rgba(255, 107, 53, 0.4),
            0 0 0 2px rgba(255, 215, 0, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.2);
    animation: btn_pulse 3s ease-in-out infinite;
}

@keyframes btn_pulse {
    0%, 100% {
        box-shadow:
                0 15px 35px rgba(255, 107, 53, 0.4),
                0 0 0 2px rgba(255, 215, 0, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow:
                0 20px 50px rgba(255, 107, 53, 0.6),
                0 0 0 4px rgba(255, 215, 0, 0.5),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
}

.mjolnir_play_btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
            0 25px 60px rgba(255, 107, 53, 0.6),
            0 0 0 6px rgba(255, 215, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.mjolnir_play_btn:active {
    transform: translateY(-2px) scale(1.02);
}

.btn_bg_effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mjolnir_play_btn:hover .btn_bg_effect {
    transform: translateX(100%);
}

.btn_content {
    position: relative;
    padding: 25px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.play_icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: play_icon_rotate 4s linear infinite;
}

@keyframes play_icon_rotate {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-5deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

.btn_text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--raven-black);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    margin: 5px 0;
}

.btn_subtitle {
    font-size: 12px;
    font-weight: 600;
    color: rgba(26, 32, 44, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn_lightning_effect {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.8), transparent);
    border-radius: 50%;
    animation: lightning_rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes lightning_rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mjolnir_play_btn:hover .btn_lightning_effect {
    opacity: 1;
}

.game_stats_mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat_item {
    text-align: center;
}

.stat_item strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 5px;
}

.stat_item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat_divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.5), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .epic_game_zone {
        padding: 80px 0;
    }

    .game_title {
        font-size: 2.5rem;
    }

    .game_description {
        font-size: 1.1rem;
    }

    .game_features_mini {
        gap: 20px;
    }

    .feature_rune {
        min-width: 120px;
        padding: 15px;
    }

    .btn_content {
        padding: 20px 35px;
    }

    .btn_text {
        font-size: 18px;
    }

    .game_stats_mini {
        gap: 20px;
    }

    .stat_divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .game_title {
        font-size: 2rem;
    }

    .game_features_mini {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn_content {
        padding: 18px 30px;
    }

    .btn_text {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .play_icon {
        width: 35px;
        height: 35px;
    }
}

/* Footer Styles */
.frost_footer_area {
    background: linear-gradient(135deg, var(--raven-black), var(--shadow-pine));
    color: var(--snow-white);
    padding: 60px 0 0;
}

.footer_content_wrapper {
    margin-bottom: 50px;
}

.footer_widget {
    margin-bottom: 40px;
}

.footer_brand img {
    height: 50px;
    margin-bottom: 25px;
}

.footer_description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--snow-white);
    font-family: "Cinzel", serif;
}

.footer_links {
    list-style: none;
    padding: 0;
}

.footer_links li {
    margin-bottom: 12px;
}

.footer_links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer_links a:hover {
    color: var(--gold-accent);
}

.footer_contact_info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 3px;
    filter: invert(1);
    flex-shrink: 0;
}

/* Regulators Section */
.footer_regulators_section {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
    margin: 30px 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.regulators_container {
    text-align: center;
}

.regulators_title {
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.regulators_logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.regulator_link {
    display: block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.regulator_link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.regulator_logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.regulator_link:hover .regulator_logo {
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(45deg);
}

.footer_bottom_section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer_disclaimer {
    margin-bottom: 25px;
}

.disclaimer_text p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 0;
}

.footer_bottom_line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.copyright_text {
    text-align: center;
    padding-bottom: 30px;
}

.copyright_text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Cookie Disclaimer */
.cookie_disclaimer_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--raven-black), var(--forest-green));
    color: var(--snow-white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.cookie_disclaimer_banner.show {
    transform: translateY(0);
}

.cookie_content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie_icon .cookie_svg_icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

.cookie_text {
    flex: 1;
}

.cookie_text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-accent);
}

.cookie_text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie_actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie_accept_btn {
    background: linear-gradient(135deg, var(--gold-accent), #ffa500);
    color: var(--raven-black);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie_accept_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.cookie_learn_more {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: underline;
}

/* Age Verification Popup */
.age_verification_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.age_verification_overlay.show {
    opacity: 1;
    visibility: visible;
}

.age_verification_modal {
    background: linear-gradient(135deg, var(--snow-white), var(--pale-mist));
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age_verification_overlay.show .age_verification_modal {
    transform: scale(1);
}

.age_icon_container {
    margin-bottom: 30px;
}

.age_icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--danger-red), #c53030);
    color: var(--snow-white);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    font-family: "Cinzel", serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.4);
    animation: age_icon_pulse 2s ease-in-out infinite;
}

@keyframes age_icon_pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.age_title {
    font-family: "Cinzel", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--raven-black);
    margin-bottom: 20px;
}

.age_description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--storm-gray);
    margin-bottom: 25px;
}

.age_warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.age_warning_icon {
    width: 20px;
    height: 20px;
    filter: invert(27%) sepia(94%) saturate(2592%) hue-rotate(355deg) brightness(91%) contrast(88%);
}

.age_warning span {
    font-weight: 600;
    color: var(--danger-red);
    font-size: 14px;
}

.age_confirm_btn {
    background: linear-gradient(135deg, var(--forest-green), var(--ice-blue));
    color: var(--snow-white);
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Cinzel", serif;
    box-shadow: 0 8px 25px rgba(88, 129, 87, 0.3);
}

.age_confirm_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(88, 129, 87, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .regulators_logos {
        gap: 20px;
    }

    .regulator_logo {
        height: 35px;
    }

    .cookie_content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie_actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie_accept_btn {
        width: 100%;
    }

    .age_verification_modal {
        padding: 30px 25px;
    }

    .age_title {
        font-size: 24px;
    }

    .age_icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
}

/* Contact Page Styles */
.contact_hero_section {
    background: linear-gradient(135deg, var(--forest-green), var(--shadow-pine));
    padding: 120px 0 80px;
    text-align: center;
    color: var(--snow-white);
}

.hero_rune_icon {
    margin-bottom: 25px;
}

.contact_hero_icon {
    width: 70px;
    height: 70px;
    filter: invert(1) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    animation: hero_icon_float 3s ease-in-out infinite alternate;
}

@keyframes hero_icon_float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(5deg); }
}

.contact_hero_title {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact_hero_subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact_info_section {
    padding: 80px 0;
    background: var(--pale-mist);
}

.contact_info_card {
    background: var(--snow-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
}

.contact_info_card:hover {
    transform: translateY(-8px);
    border-color: var(--forest-green);
    box-shadow: 0 20px 50px rgba(88, 129, 87, 0.2);
}

.info_card_icon {
    margin-bottom: 25px;
}

.info_icon {
    width: 48px;
    height: 48px;
    filter: invert(27%) sepia(51%) saturate(578%) hue-rotate(75deg) brightness(91%) contrast(88%);
}

.info_card_title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--raven-black);
    margin-bottom: 15px;
}

.info_card_text {
    color: var(--storm-gray);
    line-height: 1.6;
    margin: 0;
}

.info_card_text a {
    color: var(--forest-green);
    font-weight: 600;
    text-decoration: none;
}

.info_card_text small {
    color: var(--storm-gray);
    font-size: 0.85rem;
}

/* Main Contact Form Section */
.main_contact_section {
    padding: 100px 0;
}

.section_header {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--raven-black);
    margin-bottom: 15px;
}

.section_subtitle {
    font-size: 1.1rem;
    color: var(--storm-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact_form_wrapper {
    background: var(--snow-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 3px solid rgba(88, 129, 87, 0.1);
}

.form_title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--raven-black);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.form_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--forest-green), var(--gold-accent));
    border-radius: 2px;
}

.form_row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form_group {
    margin-bottom: 25px;
    flex: 1;
}

.form_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--raven-black);
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.label_icon {
    width: 16px;
    height: 16px;
    filter: invert(27%) sepia(51%) saturate(578%) hue-rotate(75deg) brightness(91%) contrast(88%);
}

.form_input, .form_select, .form_textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(88, 129, 87, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--snow-white);
    color: var(--raven-black);
}

.form_input:focus, .form_select:focus, .form_textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 4px rgba(88, 129, 87, 0.1);
    transform: translateY(-1px);
}

.form_textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.char_counter {
    text-align: right;
    font-size: 12px;
    color: var(--storm-gray);
    margin-top: 5px;
}

.checkbox_group {
    margin: 30px 0;
}

.checkbox_label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox_label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--forest-green);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox_label input[type="checkbox"]:checked + .checkmark {
    background: var(--forest-green);
}

.checkbox_label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--snow-white);
    font-size: 12px;
    font-weight: bold;
}

.error_message {
    color: var(--danger-red);
    font-size: 13px;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error_message.show {
    opacity: 1;
}

.form_submit_section {
    text-align: center;
    margin-top: 40px;
}

.mjolnir_submit_btn {
    background: linear-gradient(135deg, var(--forest-green), var(--ice-blue));
    color: var(--snow-white);
    border: none;
    padding: 20px 50px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(88, 129, 87, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.mjolnir_submit_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 129, 87, 0.4);
    background: linear-gradient(135deg, var(--ice-blue), var(--forest-green));
}

.mjolnir_submit_btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit_icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.mjolnir_submit_btn:hover .submit_icon {
    transform: translateX(3px);
}

.btn_loading_state {
    display: none;
    align-items: center;
    gap: 10px;
}

.mjolnir_submit_btn.loading .btn_text {
    display: none;
}

.mjolnir_submit_btn.loading .submit_icon {
    display: none;
}

.mjolnir_submit_btn.loading .btn_loading_state {
    display: flex;
}

.loading_spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Popup */
.success_popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success_popup_overlay.show {
    opacity: 1;
    visibility: visible;
}

.success_popup_modal {
    background: var(--snow-white);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.success_popup_overlay.show .success_popup_modal {
    transform: scale(1);
}

.success_icon_container {
    margin-bottom: 25px;
}

.success_icon {
    width: 60px;
    height: 60px;
    padding: 15px;
    background: linear-gradient(135deg, var(--forest-green), var(--ice-blue));
    border-radius: 50%;
    filter: invert(1);
    animation: success_bounce 0.6s ease-out;
}

@keyframes success_bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success_title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--raven-black);
    margin-bottom: 15px;
}

.success_message {
    font-size: 1.1rem;
    color: var(--storm-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.success_sub_message {
    font-size: 0.95rem;
    color: var(--storm-gray);
    line-height: 1.5;
    margin-bottom: 30px;
}

.success_close_btn {
    background: linear-gradient(135deg, var(--forest-green), var(--ice-blue));
    color: var(--snow-white);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success_close_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 129, 87, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact_hero_title {
        font-size: 2.2rem;
    }

    .contact_form_wrapper {
        padding: 30px 25px;
    }

    .form_row {
        flex-direction: column;
        gap: 0;
    }

    .mjolnir_submit_btn {
        width: 100%;
        justify-content: center;
    }

    .section_header {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .contact_hero_section {
        padding: 80px 0 60px;
    }

    .contact_info_section {
        padding: 60px 0;
    }

    .main_contact_section {
        padding: 80px 0;
    }

    .success_popup_modal {
        padding: 30px 25px;
    }
}

/* Active navigation state */
.nav-link.active {
    color: var(--forest-green) !important;
    background-color: var(--pale-mist);
}

/* Game Page Styles */
.game_hero_section {
    background: linear-gradient(135deg, var(--raven-black), var(--forest-green));
    padding: 100px 0 60px;
    color: var(--snow-white);
    text-align: center;
}

.game_hero_content {
    position: relative;
}

.hero_rune_container {
    margin-bottom: 20px;
}

.hero_rune_icon {
    width: 50px;
    height: 50px;
    filter: invert(1) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    animation: rune_glow 2s ease-in-out infinite alternate;
}

@keyframes rune_glow {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(10deg); }
}

.game_hero_title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.game_hero_subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.game_badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.game_badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--snow-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.game_badge.free {
    background: rgba(88, 129, 87, 0.8);
    border-color: var(--forest-green);
}

.game_badge.social {
    background: rgba(123, 167, 188, 0.8);
    border-color: var(--ice-blue);
}

.game_badge.safe {
    background: rgba(229, 62, 62, 0.8);
    border-color: var(--danger-red);
}

/* Main Game Section */
.main_game_section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--pale-mist), var(--snow-white));
}

.slot_machine_container {
    background: var(--snow-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 3px solid rgba(88, 129, 87, 0.2);
    position: relative;
    overflow: hidden;
}

.slot_machine_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(88, 129, 87, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.slot_machine_container > * {
    position: relative;
    z-index: 2;
}

/* Game UI Header */
.game_ui_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--raven-black), var(--shadow-pine));
    border-radius: 16px;
    color: var(--snow-white);
}

.balance_display, .win_display {
    text-align: center;
}

.balance_label, .win_label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance_icon {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

.balance_value, .win_value {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.win_value {
    color: var(--snow-white);
    transition: all 0.5s ease;
}

.win_value.winning {
    color: var(--gold-accent);
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* Slot Machine */
.slot_machine_wrapper {
    position: relative;
    margin-bottom: 30px;
}

.slot_machine_frame {
    background: linear-gradient(135deg, var(--storm-gray), var(--raven-black));
    padding: 20px;
    border-radius: 16px;
    position: relative;
    box-shadow:
            inset 0 0 0 3px rgba(255, 215, 0, 0.3),
            0 10px 30px rgba(0,0,0,0.3);
}

.slot_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    background: var(--raven-black);
    padding: 15px;
    border-radius: 12px;
}

.slot_reel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slot_symbol {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pale-mist), var(--snow-white));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.slot_symbol::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.slot_symbol.spinning::before {
    transform: translateX(100%);
}

.slot_symbol img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.slot_symbol.winning {
    border-color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #fff9c4, #fff);
    animation: slot_win_pulse 1s ease-in-out infinite alternate;
}

@keyframes slot_win_pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.slot_symbol.spinning {
    animation: slot_spin 0.5s linear infinite;
}

@keyframes slot_spin {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

/* Winning Lines */
.winning_lines_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.winning_line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    height: 4px;
    border-radius: 2px;
    animation: line_glow 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold-accent);
}

@keyframes line_glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Game Controls */
.game_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 25px 30px;
    background: rgba(88, 129, 87, 0.05);
    border-radius: 16px;
    border: 2px solid rgba(88, 129, 87, 0.1);
}

.bet_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bet_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--raven-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bet_icon {
    width: 18px;
    height: 18px;
    filter: invert(27%) sepia(51%) saturate(578%) hue-rotate(75deg) brightness(91%) contrast(88%);
}

.bet_input_group {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--snow-white);
    border-radius: 12px;
    border: 2px solid rgba(88, 129, 87, 0.2);
    overflow: hidden;
}

.bet_btn {
    background: linear-gradient(135deg, var(--forest-green), var(--shadow-pine));
    color: var(--snow-white);
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet_btn:hover {
    background: linear-gradient(135deg, var(--shadow-pine), var(--forest-green));
    transform: scale(1.05);
}

.bet_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn_icon {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

.bet_input {
    width: 80px;
    height: 45px;
    text-align: center;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--raven-black);
    background: transparent;
}

.bet_input:focus {
    outline: none;
}

/* Play Button */
.viking_play_button {
    background: linear-gradient(135deg, var(--gold-accent), #ffa500);
    color: var(--raven-black);
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow:
            0 10px 30px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 160px;
}

.viking_play_button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
            0 15px 40px rgba(255, 215, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.viking_play_button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.play_btn_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.play_icon {
    width: 20px;
    height: 20px;
    filter: invert(27%) sepia(51%) saturate(578%) hue-rotate(75deg) brightness(91%) contrast(88%);
}

.play_btn_loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.viking_play_button.loading .play_btn_content {
    display: none;
}

.viking_play_button.loading .play_btn_loading {
    display: flex;
}

.loading_runes {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(26, 32, 44, 0.3);
    border-top: 2px solid var(--raven-black);
    border-radius: 50%;
    animation: loading_spin 1s linear infinite;
}

@keyframes loading_spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Game Messages */
.game_messages {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--raven-black), var(--forest-green));
    color: var(--snow-white);
    padding: 20px 30px;
    border-radius: 16px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    border: 2px solid var(--gold-accent);
}

.game_messages.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.05);
}

.game_messages.winning {
    background: linear-gradient(135deg, var(--gold-accent), #ffa500);
    color: var(--raven-black);
    animation: message_celebration 0.6s ease-out;
}

@keyframes message_celebration {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Particle Effects */
.particle_container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 50%;
    opacity: 0;
    animation: particle_float 2s ease-out forwards;
}

@keyframes particle_float {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5);
    }
}

/* Disclaimer Section */
.disclaimer_section {
    padding: 80px 0;
    background-color: #283733;
}

.disclaimer_content {
    text-align: center;
}

.disclaimer_icon_container {
    margin-bottom: 25px;
}

.disclaimer_main_icon {
    width: 50px;
    height: 50px;
    filter: invert(27%) sepia(51%) saturate(578%) hue-rotate(75deg) brightness(91%) contrast(88%);
}

.disclaimer_title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #c53030;
    margin-bottom: 30px;
}

.disclaimer_text {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: var(--storm-gray);
}

.disclaimer_text p {
    margin-bottom: 20px;
}

.disclaimer_badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.info_badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--snow-white);
    border-radius: 12px;
    border: 2px solid rgba(88, 129, 87, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info_badge:hover {
    transform: translateY(-2px);
    border-color: var(--forest-green);
}

.badge_icon {
    width: 20px;
    height: 20px;
    filter: invert(27%) sepia(51%) saturate(578%) hue-rotate(75deg) brightness(91%) contrast(88%);
}

.info_badge span {
    font-weight: 600;
    color: var(--raven-black);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game_hero_title {
        font-size: 2.5rem;
    }

    .slot_machine_container {
        padding: 25px 20px;
    }

    .game_ui_header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .slot_symbol {
        width: 60px;
        height: 60px;
    }

    .slot_symbol img {
        width: 35px;
        height: 35px;
    }

    .game_controls {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .viking_play_button {
        width: 100%;
    }

    .disclaimer_badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .game_badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .slot_symbol {
        width: 50px;
        height: 50px;
    }

    .slot_symbol img {
        width: 30px;
        height: 30px;
    }

    .game_messages {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* Active navigation state */
.nav-link.active {
    color: var(--forest-green) !important;
    background-color: var(--pale-mist);
}