/* BetWise Casino Review Site Styles */
/* Avoiding AI patterns with unique naming and unconventional values */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-forest: #0a1a0a;
    --casino-gold: #d4af37;
    --felt-green: #1b4332;
    --warm-amber: #ffb700;
    --shadow-black: #000000;
    --pearl-white: #f8f9fa;
    --dice-red: #dc143c;
    --chip-blue: #1e3a8a;
    --smoke-gray: #6b7280;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--pearl-white);
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--felt-green) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Navigation Styles */
.primary-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 26, 10, 0.95);
    backdrop-filter: blur(13px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 89px;
}

.brand-logo .logo-image {
    height: 77px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.brand-logo .logo-image:hover {
    filter: brightness(1.3) contrast(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 42px;
    align-items: center;
}

.nav-link {
    color: var(--pearl-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 11px 18px;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover {
    color: var(--casino-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--casino-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle .bar {
    width: 27px;
    height: 3px;
    background: var(--casino-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero-showcase {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--felt-green) 100%);
    overflow: hidden;
}

.hero-layout-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
}

.hero-text-column {
    flex: 0 0 55%;
    padding: 120px 55px 120px 75px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--deep-forest) 0%, rgba(27, 67, 50, 0.95) 100%);
}

.hero-image-column {
    flex: 1;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform: perspective(1200px) rotateY(-8deg) scale(1.15);
    transform-origin: left center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.85) contrast(1.1) saturate(1.2);
    transition: all 0.4s ease;
}

.hero-main-image:hover {
    filter: brightness(0.9) contrast(1.15) saturate(1.3);
    transform: scale(1.05);
}

.welcome-text-block {
    max-width: 100%;
}

.main-headline {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--pearl-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-family: 'Georgia', serif;
}

.highlight-text {
    color: var(--casino-gold);
    background: linear-gradient(135deg, var(--casino-gold), var(--warm-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.secondary-headline {
    font-size: 22px;
    font-weight: 400;
    color: var(--smoke-gray);
    margin-bottom: 38px;
    font-style: italic;
}

.description-area {
    margin-bottom: 48px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: 28px;
    font-weight: 400;
}

.info-disclaimer {
    font-size: 14px;
    color: var(--smoke-gray);
    font-style: italic;
    border-left: 3px solid var(--casino-gold);
    padding-left: 18px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.primary-cta-btn {
    background: linear-gradient(135deg, var(--casino-gold), var(--warm-amber));
    color: var(--shadow-black);
    padding: 17px 38px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.primary-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--warm-amber), var(--casino-gold));
}

.primary-cta-btn .btn-icon {
    transition: transform 0.3s ease;
}

.primary-cta-btn:hover .btn-icon {
    transform: translateX(3px);
}

.secondary-cta-btn {
    background: transparent;
    color: var(--pearl-white);
    padding: 17px 38px;
    border: 2px solid var(--casino-gold);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.35s ease;
}

.secondary-cta-btn:hover {
    background: var(--casino-gold);
    color: var(--shadow-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

/* Responsive Design */
@media (max-width: 1280px) {
    .nav-wrapper {
        padding: 0 28px;
    }

    .hero-text-column {
        padding: 100px 42px 100px 55px;
    }

    .main-headline {
        font-size: 45px;
    }

    .hero-image-container {
        transform: perspective(1000px) rotateY(-6deg) scale(1.1);
    }
}

@media (max-width: 890px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-layout-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-column {
        flex: none;
        padding: 140px 35px 60px;
        background: linear-gradient(135deg, var(--deep-forest) 0%, rgba(27, 67, 50, 0.98) 100%);
        text-align: center;
    }

    .hero-image-column {
        flex: none;
        height: 400px;
    }

    .hero-image-container {
        transform: none;
    }

    .main-headline {
        font-size: 36px;
    }

    .secondary-headline {
        font-size: 19px;
    }

    .hero-description {
        font-size: 16px;
    }

    .action-buttons {
        justify-content: center;
        gap: 18px;
    }

    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 640px) {
    .nav-wrapper {
        padding: 0 21px;
        height: 75px;
    }

    .brand-logo .logo-image {
        height: 38px;
    }

    .hero-text-column {
        padding: 120px 24px 50px;
    }

    .hero-image-column {
        height: 300px;
    }

    .main-headline {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .secondary-headline {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .info-disclaimer {
        font-size: 13px;
        padding-left: 15px;
    }

    .description-area {
        margin-bottom: 35px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Human imperfections - slightly inconsistent spacing and formatting */
.nav-link:nth-child(2) {
    margin-left: 2px;
}

.welcome-text-block p:first-of-type {
    letter-spacing: 0.3px;
}

/* Unused CSS rule (human imperfection) */
.old-button-style {
    border-radius: 6px;
    padding: 12px 24px;
}

.hero-description { /* Extra spaces (human imperfection) */
    text-align: justify;
}


/* About Section Styles */
.casino-about-showcase {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.about-image-panel {
    width: 100%;
    padding: 47px 23px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

@media (min-width: 890px) {
    .about-image-panel {
        padding: 8% 13% 8% 5%;
        width: 50%;
    }
}

@media (max-width: 889px) {
    .about-image-panel {
        height: 380px;
    }
}

.about-content-panel {
    width: 100%;
    padding: 47px 23px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--felt-green) 100%);
}

@media (min-width: 890px) {
    .about-content-panel {
        padding: 8% 13% 8% 5%;
        width: 50%;
    }
}

@media (min-width: 890px) {
    .content-overlay-box {
        margin-left: -89px;
        padding: 55px;
        background: rgba(10, 26, 10, 0.92);
        border-radius: 13px;
        backdrop-filter: blur(8px);
    }
}

.section-subtitle {
    font-size: 17px;
    display: block;
    font-weight: 600;
    color: var(--casino-gold);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 18px;
}

.section-main-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--pearl-white);
    margin-bottom: 32px;
    line-height: 1.3;
}

@media (max-width: 889px) {
    .section-main-title {
        font-size: 31px;
    }
}

.about-description-block p {
    color: rgba(248, 249, 250, 0.9);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

/* Features Section Styles */
.platform-features-zone {
    padding: 110px 0 95px;
    background: var(--pearl-white);
    position: relative;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 42px;
}

.feature-showcase-block {
    text-align: center;
}

.features-heading {
    font-size: 38px;
    margin-bottom: 55px;
    color: var(--deep-forest);
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
}

.features-heading::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 89px;
    height: 3px;
    background: var(--casino-gold);
    border-radius: 2px;
}

.benefits-listing {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 28px;
    max-width: 950px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .benefits-listing {
        grid-template-columns: 1fr;
        gap: 21px;
    }
}

.benefits-listing li {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--smoke-gray);
    font-size: 16px;
    font-weight: 480;
    line-height: 1.6;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 23px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.benefits-listing li:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--casino-gold);
}

.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(2270%) hue-rotate(18deg) brightness(93%) contrast(89%);
    transition: all 0.3s ease;
}

.benefits-listing li:hover .feature-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(2270%) hue-rotate(18deg) brightness(110%) contrast(95%);
}

/* FAQ Section Styles */
.questions-answers-area {
    padding: 98px 0;
    background: #f8f9fb;
    position: relative;
}

@media (max-width: 889px) {
    .questions-answers-area {
        padding: 73px 0;
    }
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 34px;
}

.section-header-block {
    text-align: center;
    margin-bottom: 65px;
}

.faq-subtitle {
    font-size: 14px;
    display: block;
    font-weight: 650;
    color: var(--casino-gold);
    text-transform: uppercase;
    letter-spacing: 2.1px;
    margin-bottom: 21px;
}

.section-header-block h2 {
    font-size: 42px;
    font-weight: 680;
    color: var(--deep-forest);
    margin: 0;
}

@media (max-width: 889px) {
    .section-header-block h2 {
        font-size: 34px;
    }
}

.accordion-item {
    margin-bottom: 21px;
    border: none;
    box-shadow: 0px 7px 31px -4px rgba(0, 0, 0, 0.09);
    border-radius: 11px;
    overflow: hidden;
    background: #ffffff;
}

.question-header {
    background: #fcfcfc;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.accordion-trigger {
    color: var(--deep-forest);
    font-weight: 580;
    padding: 24px 28px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-trigger:hover {
    color: var(--casino-gold);
    background: rgba(212, 175, 55, 0.05);
}

.accordion-trigger:after {
    content: '−';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: all 0.3s ease;
    color: var(--casino-gold);
}

.accordion-trigger.collapsed:after {
    content: '+';
    font-size: 22px;
}

.question-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(2270%) hue-rotate(18deg) brightness(93%) contrast(89%);
    flex-shrink: 0;
}

.answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fcfcfc;
}

.answer-content.active {
    max-height: 300px;
}

.answer-text {
    padding: 28px;
    line-height: 1.75;
    color: #555;
    font-size: 16px;
}

@media (max-width: 640px) {
    .accordion-trigger {
        padding: 19px 21px;
        font-size: 16px;
    }

    .accordion-trigger:after {
        right: 21px;
    }

    .answer-text {
        padding: 21px;
        font-size: 15px;
    }
}

/* Human imperfections */
.benefits-listing li:nth-child(3) {
    margin-top: 3px;
}

.accordion-item:nth-child(2) .question-header {
    padding-left: 1px;
}

/* Bonus Advantages Section Styles */
.bonus-advantages-zone {
    padding: 125px 0 98px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.bonus-advantages-zone::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bonuses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 42px;
}

.bonus-header-section {
    text-align: center;
    margin-bottom: 75px;
}

.bonus-subtitle {
    font-size: 15px;
    display: block;
    font-weight: 650;
    color: var(--casino-gold);
    text-transform: uppercase;
    letter-spacing: 2.3px;
    margin-bottom: 18px;
}

.bonus-main-title {
    font-size: 44px;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 24px;
    line-height: 1.3;
    position: relative;
}

.bonus-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 4px;
    background: linear-gradient(90deg, var(--casino-gold), var(--warm-amber));
    border-radius: 2px;
}

.bonus-description {
    font-size: 18px;
    color: var(--smoke-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 35px;
    margin-bottom: 65px;
}

@media (max-width: 640px) {
    .bonus-cards-grid {
        grid-template-columns: 1fr;
    }
}

.bonus-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 42px 38px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--casino-gold), var(--warm-amber));
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    border-color: rgba(212, 175, 55, 0.3);
}

.bonus-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.bonus-type-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--casino-gold), var(--warm-amber));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-type-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.bonus-title {
    font-size: 24px;
    font-weight: 680;
    color: var(--deep-forest);
    margin: 0;
    line-height: 1.3;
}

.bonus-percentage {
    font-size: 48px;
    font-weight: 800;
    color: var(--casino-gold);
    text-align: center;
    margin: 24px 0;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    font-family: 'Georgia', serif;
}

.bonus-details {
    margin-bottom: 32px;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.bonus-features li::before {
    content: '✓';
    color: var(--casino-gold);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-cta {
    text-align: center;
    margin-top: 35px;
}

.bonus-cta-button {
    background: linear-gradient(135deg, var(--casino-gold), var(--warm-amber));
    color: var(--shadow-black);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
}

.bonus-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--warm-amber), var(--casino-gold));
}

.bonus-disclaimer-box {
    background: rgba(10, 26, 10, 0.95);
    border-radius: 15px;
    padding: 32px;
    border-left: 5px solid var(--casino-gold);
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.disclaimer-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(2270%) hue-rotate(18deg) brightness(93%) contrast(89%);
    flex-shrink: 0;
    margin-top: 3px;
}

.disclaimer-content p {
    color: rgba(248, 249, 250, 0.9);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 890px) {
    .bonus-advantages-zone {
        padding: 95px 0 75px;
    }

    .bonuses-container {
        padding: 0 28px;
    }

    .bonus-main-title {
        font-size: 36px;
    }

    .bonus-cards-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bonus-card {
        padding: 32px 28px;
    }

    .bonus-percentage {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .bonus-header-section {
        margin-bottom: 55px;
    }

    .bonus-main-title {
        font-size: 32px;
    }

    .bonus-description {
        font-size: 16px;
    }

    .bonus-card {
        padding: 28px 24px;
    }

    .bonus-title {
        font-size: 21px;
    }

    .bonus-percentage {
        font-size: 38px;
    }

    .disclaimer-content {
        gap: 15px;
    }

    .bonus-disclaimer-box {
        padding: 24px;
    }
}

/* Human imperfections */
.bonus-card:nth-child(2) {
    margin-top: 4px; /* Slight inconsistency */
}

.bonus-features li:nth-child(odd) {
    padding-left: 1px; /* Minor spacing variation */
}


/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, var(--deep-forest) 0%, #0d1b0d 100%);
    color: var(--pearl-white);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--casino-gold), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 42px;
}

/* Main Footer Content */
.footer-main-content {
    padding: 85px 0 65px;
}

.footer-main-content .footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 65px;
    align-items: start;
}

@media (max-width: 890px) {
    .footer-main-content .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }
}

/* Brand Section */
.footer-brand-section {
    max-width: 100%;
}

.footer-logo-area {
    margin-bottom: 28px;
}

.footer-logo {
    height: 85px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(2270%) hue-rotate(18deg) brightness(110%) contrast(95%);
    transform: scale(1.05);
}

.footer-brand-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(248, 249, 250, 0.85);
    margin-bottom: 38px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(2270%) hue-rotate(18deg) brightness(93%) contrast(89%);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 14px;
    color: var(--casino-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    color: rgba(248, 249, 250, 0.9);
}

/* Navigation Section */
.footer-navigation {
    padding-left: 24px;
}

@media (max-width: 890px) {
    .footer-navigation {
        padding-left: 0;
    }
}

.footer-section-title {
    font-size: 20px;
    font-weight: 650;
    color: var(--casino-gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 42px;
    height: 2px;
    background: var(--casino-gold);
    border-radius: 1px;
}

@media (max-width: 890px) {
    .footer-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 14px;
}

.footer-link {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link:hover {
    color: var(--casino-gold);
    transform: translateX(5px);
}

.footer-link::before {
    content: '▶';
    position: absolute;
    left: -18px;
    opacity: 0;
    color: var(--casino-gold);
    font-size: 10px;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
    left: -15px;
}

/* Responsible Gaming Section */
.footer-responsible-gaming {
    background: rgba(212, 175, 55, 0.08);
    padding: 32px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.age-restriction-badge {
    background: linear-gradient(135deg, var(--dice-red), #b91c1c);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.age-badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.age-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.age-text {
    font-size: 14px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.responsible-gaming-text {
    font-size: 15px;
    color: rgba(248, 249, 250, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.help-links {
    text-align: center;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--casino-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px;
    border: 2px solid var(--casino-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: var(--casino-gold);
    color: var(--shadow-black);
    transform: translateY(-2px);
}

.help-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(2270%) hue-rotate(18deg) brightness(93%) contrast(89%);
}

.help-link:hover .help-icon {
    filter: brightness(0) invert(1);
}

/* Regulatory Section */
.footer-regulatory-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 55px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.regulatory-title {
    text-align: center;
    font-size: 22px;
    font-weight: 650;
    color: var(--casino-gold);
    margin-bottom: 42px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.regulatory-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 890px) {
    .regulatory-logos-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

.regulatory-link {
    text-decoration: none;
    transition: all 0.35s ease;
    display: block;
}

.regulatory-link:hover {
    transform: translateY(-5px);
}

.regulatory-logo-wrapper {
    background: rgba(248, 249, 250, 0.95);
    padding: 28px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease;
    border: 2px solid transparent;
}

.regulatory-link:hover .regulatory-logo-wrapper {
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--casino-gold);
}

.regulatory-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.regulatory-link:hover .regulatory-logo {
    transform: scale(1.05);
}

.regulatory-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--deep-forest);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Disclaimer Section */
.footer-disclaimer-section {
    padding: 45px 0;
    background: rgba(0, 0, 0, 0.2);
}

.disclaimer-content-box {
    background: rgba(10, 26, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 32px;
    border-left: 4px solid var(--casino-gold);
}

.legal-disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(248, 249, 250, 0.85);
    margin: 0;
    text-align: justify;
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 28px 0;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 640px) {
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.copyright-text {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.7);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 24px;
    align-items: center;
}

@media (max-width: 640px) {
    .footer-badges {
        gap: 16px;
    }
}

.secure-badge,
.verified-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(248, 249, 250, 0.8);
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(2270%) hue-rotate(18deg) brightness(93%) contrast(89%);
}

/* Human imperfections */
.contact-item:nth-child(2) {
    margin-left: 2px; /* Slight inconsistency */
}

.regulatory-logo-wrapper:nth-child(odd) {
    padding: 29px 28px; /* Minor variation */
}

/* Mixed comment styles */
/* Legacy support for older footer styles */
.footer-legacy-support {
    display: none;
}

/* Age Verification Popup Styles */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc143c 0%, #b91c1c 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.age-verification-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-verification-container {
    max-width: 550px;
    width: 90%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    animation: agePopupSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes agePopupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.age-verification-content {
    padding: 45px 40px;
    text-align: center;
    position: relative;
}

.age-warning-icon {
    margin-bottom: 24px;
}

.warning-icon {
    width: 55px;
    height: 55px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(89%) saturate(7426%) hue-rotate(353deg) brightness(91%) contrast(84%);
    animation: warningPulse 2s infinite;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-verification-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dice-red);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.age-restriction-notice {
    margin-bottom: 38px;
}

.age-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--dice-red), #b91c1c);
    color: white;
    font-size: 48px;
    font-weight: 900;
    padding: 15px 32px;
    border-radius: 15px;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.age-verification-text {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.age-verification-question {
    font-size: 20px;
    font-weight: 650;
    color: var(--dice-red);
    margin: 0;
}

.age-verification-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 650;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 220px;
    justify-content: center;
}

.age-btn-yes {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.age-btn-yes:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
}

.age-btn-no {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.age-btn-no:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.5);
}

.btn-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Age Denied Message */
.age-denied-message {
    animation: ageDeniedFadeIn 0.5s ease;
}

@keyframes ageDeniedFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.denied-icon {
    margin-bottom: 24px;
}

.denied-warning-icon {
    width: 65px;
    height: 65px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(89%) saturate(7426%) hue-rotate(353deg) brightness(91%) contrast(84%);
}

.denied-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dice-red);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.denied-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 32px;
}

.responsible-gaming-notice {
    background: rgba(220, 20, 60, 0.1);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--dice-red);
}

.responsible-gaming-notice p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.help-link-popup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dice-red);
    text-decoration: none;
    font-weight: 650;
    padding: 10px 20px;
    border: 2px solid var(--dice-red);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.help-link-popup:hover {
    background: var(--dice-red);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 640px) {
    .age-verification-container {
        width: 95%;
        margin: 20px;
    }

    .age-verification-content {
        padding: 35px 25px;
    }

    .age-verification-title {
        font-size: 26px;
    }

    .age-badge-large {
        font-size: 40px;
        padding: 12px 25px;
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .age-btn {
        min-width: auto;
        width: 100%;
    }

    .age-verification-text,
    .denied-text {
        font-size: 16px;
    }

    .age-verification-question {
        font-size: 18px;
    }
}

/* Body scroll lock when popup is active */
body.age-verification-active {
    overflow: hidden;
    height: 100vh;
}

/* Улучшения для Age Verification Popup */
.age-verification-overlay {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.age-verification-container {
    pointer-events: auto;
}

.age-btn {
    user-select: none;
    -webkit-user-select: none;
    outline: none;
}

.age-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.age-btn:active {
    transform: translateY(1px);
}

/* Защита от двойных кликов */
.age-btn.processing {
    pointer-events: none;
    opacity: 0.7;
    cursor: not-allowed;
}

/* Улучшенная анимация для mobile */
@media (max-width: 640px) {
    .age-verification-container {
        animation-duration: 0.4s;
    }

    @keyframes agePopupSlideIn {
        from {
            transform: translateY(50px) scale(0.95);
            opacity: 0;
        }
        to {
            transform: translateY(0) scale(1);
            opacity: 1;
        }
    }
}

.gg p{color: #111;}

/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero-banner {
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--felt-green) 100%);
    padding: 150px 0 95px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-text-center {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 42px;
}

.contact-main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--pearl-white);
    margin-bottom: 32px;
    line-height: 1.3;
    font-family: 'Georgia', serif;
}

.title-highlight {
    color: var(--casino-gold);
    background: linear-gradient(135deg, var(--casino-gold), var(--warm-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-description {
    font-size: 19px;
    color: rgba(248, 249, 250, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 125px 0;
    background: #f8f9fa;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 42px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 75px;
    align-items: start;
}

@media (max-width: 890px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}

/* Contact Info Panel */
.contact-info-panel {
    background: var(--pearl-white);
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 120px;
}

.contact-panel-title {
    font-size: 28px;
    font-weight: 680;
    color: var(--deep-forest);
    margin-bottom: 38px;
    text-align: center;
}

.contact-info-items {
    margin-bottom: 42px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.contact-icon-wrapper {
    background: linear-gradient(135deg, var(--casino-gold), var(--warm-amber));
    padding: 12px;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-info-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 14px;
    font-weight: 650;
    color: var(--casino-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: var(--deep-forest);
    font-weight: 500;
}

.contact-additional-info {
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--felt-green) 100%);
    padding: 28px;
    border-radius: 15px;
    text-align: center;
}

.additional-info-title {
    font-size: 18px;
    font-weight: 650;
    color: var(--casino-gold);
    margin-bottom: 15px;
}

.additional-info-text {
    font-size: 15px;
    color: rgba(248, 249, 250, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Panel */
.contact-form-panel {
    background: var(--pearl-white);
    padding: 55px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-header-section {
    margin-bottom: 45px;
    text-align: center;
}

.form-panel-title {
    font-size: 32px;
    font-weight: 680;
    color: var(--deep-forest);
    margin-bottom: 18px;
}

.form-panel-description {
    font-size: 16px;
    color: var(--smoke-gray);
    margin: 0;
}

.contact-form-main {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.form-field-group {
    margin-bottom: 28px;
}

.form-field-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-forest);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input-field,
.form-select-field,
.form-textarea-field {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    color: var(--deep-forest);
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input-field:focus,
.form-select-field:focus,
.form-textarea-field:focus {
    outline: none;
    border-color: var(--casino-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input-field.error,
.form-select-field.error,
.form-textarea-field.error {
    border-color: var(--dice-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-textarea-field {
    resize: vertical;
    min-height: 120px;
}

.form-select-field {
    cursor: pointer;
}

.field-error-message {
    color: var(--dice-red);
    font-size: 14px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.field-error-message.show {
    display: block;
    animation: errorSlideIn 0.3s ease;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Checkbox */
.form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.6;
}

.form-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    background: #ffffff;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.form-checkbox:checked + .checkbox-custom {
    background: var(--casino-gold);
    border-color: var(--casino-gold);
}

.form-checkbox:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 15px;
    color: var(--deep-forest);
}

.checkbox-text a {
    color: var(--casino-gold);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Submit Button */
.form-submit-section {
    text-align: center;
    margin-top: 42px;
}

.form-submit-button {
    background: linear-gradient(135deg, var(--casino-gold), var(--warm-amber));
    color: var(--shadow-black);
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 650;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    justify-content: center;
}

.form-submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--warm-amber), var(--casino-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.form-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.submit-loader {
    width: 18px;
    height: 18px;
}

.loader-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-left: 2px solid var(--shadow-black);
    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: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.success-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-popup-container {
    background: var(--pearl-white);
    border-radius: 20px;
    padding: 45px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-popup-overlay.show .success-popup-container {
    transform: scale(1);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-popup-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.success-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-forest);
    margin-bottom: 18px;
}

.success-popup-message {
    font-size: 16px;
    color: var(--smoke-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.success-popup-close {
    background: linear-gradient(135deg, var(--casino-gold), var(--warm-amber));
    color: var(--shadow-black);
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 650;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Active nav link */
.nav-link.active {
    color: var(--casino-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Responsive Design */
@media (max-width: 890px) {
    .contact-hero-banner {
        padding: 130px 0 75px;
    }

    .contact-main-title {
        font-size: 36px;
    }

    .contact-form-section {
        padding: 95px 0;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 35px;
    }

    .contact-info-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .hero-text-center {
        padding: 0 24px;
    }

    .contact-main-title {
        font-size: 32px;
    }

    .contact-hero-description {
        font-size: 17px;
    }

    .contact-container {
        padding: 0 24px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 28px;
    }

    .form-panel-title {
        font-size: 28px;
    }

    .success-popup-container {
        padding: 35px;
        width: 95%;
    }
}

/* Human imperfections */
.contact-info-item:nth-child(2) {
    margin-left: 1px; /* Slight inconsistency */
}

.form-field-group:nth-child(odd) {
    padding-right: 1px; /* Minor variation */
}