/* ═══════════════════════════════════════════════════════════
   bashehta.pro — main styles (teal theme, no JS)
   ═══════════════════════════════════════════════════════════ */

:root {
    --bh-bg: #0f172a;
    --bh-surface: #1e293b;
    --bh-border: #334155;
    --bh-accent: #10b981;
    --bh-accent-light: #34d399;
    --bh-accent-dark: #059669;
    --bh-text: #ffffff;
    --bh-muted: #94a3b8;
    --bh-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    --bh-shadow-accent: 0 8px 24px rgba(16, 185, 129, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Inline SVG icons (no font) */
.bh-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: -0.2em;
}
.bh-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}

/* ═══ Age-gate overlay (no JS, PHP + form) ═══ */
.bashehta-age-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.bashehta-age-modal {
    max-width: 420px;
    width: 100%;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bh-surface);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 24px;
    box-shadow: var(--bh-shadow-accent), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    margin: auto;
}

.bashehta-age-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--bh-text);
    -webkit-text-fill-color: initial;
    background: none;
    line-height: 1.2;
}

.bashehta-age-text {
    font-size: 1rem;
    color: var(--bh-muted);
    margin-bottom: 1.75rem;
}

.bashehta-age-form {
    margin-bottom: 1rem;
}

.bashehta-age-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 56px;
    font-family: var(--font-primary);
}

.bashehta-age-btn:focus-visible {
    outline: 3px solid var(--bh-accent-light);
    outline-offset: 3px;
}

.bashehta-age-btn-yes {
    background: linear-gradient(135deg, var(--bh-accent) 0%, var(--bh-accent-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.bashehta-age-btn-yes:hover {
    background: linear-gradient(135deg, var(--bh-accent-light) 0%, var(--bh-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5);
}

.bashehta-age-denial {
    font-size: 0.9rem;
    margin: 0;
}

.bashehta-age-denial a {
    color: var(--bh-muted);
    text-decoration: underline;
}

.bashehta-age-denial a:hover {
    color: var(--bh-accent-light);
}

@media (max-width: 480px) {
    .bashehta-age-overlay {
        padding: 0.75rem;
        align-items: flex-start;
        padding-top: max(1rem, env(safe-area-inset-top));
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
        padding-left: max(0.75rem, env(safe-area-inset-left));
        padding-right: max(0.75rem, env(safe-area-inset-right));
    }

    .bashehta-age-modal {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .bashehta-age-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .bashehta-age-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .bashehta-age-btn {
        min-height: 52px;
        padding: 0.9rem 1.25rem;
        font-size: 1.05rem;
        border-radius: 12px;
    }

    .bashehta-age-denial {
        font-size: 0.85rem;
    }
}

/* Success page (after age verify) */
.bashehta-success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.bashehta-success-card {
    text-align: center;
    max-width: 400px;
}

.bashehta-success-icon {
    color: var(--bh-accent);
    margin-bottom: 1rem;
}

.bashehta-success-card .bh-icon svg {
    width: 64px;
    height: 64px;
}

.bashehta-success-card h1 {
    margin-bottom: 0.5rem;
    -webkit-text-fill-color: initial;
    background: none;
}

.bashehta-success-card p {
    color: var(--bh-muted);
}

.bashehta-success-meta {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.bashehta-success-meta a {
    color: var(--bh-accent);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--bh-text);
    background-color: var(--bh-bg);
    overflow-x: hidden;
}

/* Container */
.bashehta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ═══ Header & Nav (checkbox hack — no JS) ═══ */
.bashehta-header {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--bh-shadow);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.bashehta-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bashehta-nav-checkbox {
    display: none;
}

.bashehta-nav-label {
    display: none;
    background: none;
    border: none;
    color: var(--bh-text);
    padding: 0.5rem;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.bashehta-nav-label:focus-visible {
    outline: 2px solid var(--bh-accent);
    outline-offset: 2px;
}

.bashehta-nav-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.bashehta-nav-list a {
    color: var(--bh-text);
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.bashehta-nav-list a:hover {
    background: rgba(16, 185, 129, 0.15);
    color: var(--bh-accent-light);
}

.bashehta-nav-list a:focus-visible {
    outline: 2px solid var(--bh-accent);
    outline-offset: 2px;
}

/* Mobile: show burger, hide list by default */
@media (max-width: 768px) {
    .bashehta-nav-label {
        display: flex;
    }

    .bashehta-nav-list {
        position: fixed;
        left: -100%;
        top: 57px;
        flex-direction: column;
        background: var(--bh-surface);
        width: 100%;
        text-align: center;
        padding: 1.5rem 0;
        box-shadow: var(--bh-shadow);
        z-index: 999;
        border-bottom: 1px solid var(--bh-border);
        transition: left 0.3s ease;
    }

    .bashehta-nav-checkbox:checked ~ .bashehta-nav-list {
        left: 0;
    }

    .bashehta-nav-list a {
        display: block;
        padding: 0.85rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--bh-text) 0%, var(--bh-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--bh-muted);
}

a {
    color: var(--bh-accent);
    text-decoration: none;
}

a:hover {
    color: var(--bh-accent-light);
}

/* Buttons */
.bashehta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 44px;
}

.bashehta-btn:focus-visible {
    outline: 2px solid var(--bh-accent-light);
    outline-offset: 2px;
}

.bashehta-btn-primary {
    background: var(--bh-accent);
    color: #fff;
}

.bashehta-btn-primary:hover {
    background: var(--bh-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--bh-shadow-accent);
}

/* Form fields */
.bashehta-form-field {
    margin-bottom: 1rem;
}

.bashehta-form-field label {
    display: block;
    color: var(--bh-muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.bashehta-form-field input,
.bashehta-form-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--bh-border);
    border-radius: 12px;
    color: var(--bh-text);
    font-size: 1rem;
    min-height: 44px;
}

.bashehta-form-field input:focus,
.bashehta-form-field select:focus {
    outline: none;
    border-color: var(--bh-accent);
    background: rgba(255, 255, 255, 0.08);
}

/* Section tag (small label above headings) */
.bashehta-section-tag {
    display: inline-block;
    color: var(--bh-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

/* Footer */
.bashehta-footer {
    background: var(--bh-surface);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--bh-border);
}

.bashehta-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bashehta-footer h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--bh-text);
}

.bashehta-footer p,
.bashehta-footer a {
    font-size: 0.9rem;
    color: var(--bh-muted);
}

.bashehta-footer a:hover {
    color: var(--bh-accent-light);
}

.bashehta-footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--bh-border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--bh-muted);
}

/* ═══ Hero ═══ */
.bashehta-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: url('/img/players.webp') center/cover no-repeat;
}

.bashehta-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.82) 50%, rgba(15, 23, 42, 0.88) 100%);
}

.bashehta-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (max-width: 968px) {
    .bashehta-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.bashehta-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bh-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.bashehta-hero-description {
    font-size: 1.1rem;
    color: var(--bh-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bashehta-hero-description strong {
    color: var(--bh-text);
}

.bashehta-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.bashehta-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--bh-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--bh-muted);
}

.bashehta-hero-pill svg {
    color: var(--bh-accent);
    flex-shrink: 0;
}

.bashehta-hero-form-card {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--bh-shadow-accent);
}

.bashehta-hero-form-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--bh-text);
}

.bashehta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .bashehta-form-row {
        grid-template-columns: 1fr;
    }
}

.bashehta-form-msg {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.bashehta-form-msg-ok {
    background: rgba(16, 185, 129, 0.2);
    color: var(--bh-accent-light);
}

.bashehta-form-msg-err {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* Stats strip */
.bashehta-stats {
    padding: 2.5rem 0;
    background: rgba(30, 41, 59, 0.6);
    border-top: 1px solid var(--bh-border);
    border-bottom: 1px solid var(--bh-border);
}

.bashehta-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .bashehta-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bashehta-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bh-accent);
    margin-bottom: 0.25rem;
}

.bashehta-stat-text {
    font-size: 0.9rem;
    color: var(--bh-muted);
}

/* Location section */
.bashehta-section {
    padding: 4rem 0;
}

.bashehta-location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bh-border);
    border-radius: 20px;
    padding: 2.5rem;
}

@media (max-width: 968px) {
    .bashehta-location-card {
        grid-template-columns: 1fr;
    }
}

.bashehta-location-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.bashehta-location-card h3 {
    margin-bottom: 1rem;
    color: var(--bh-text);
}

.bashehta-location-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bashehta-location-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.bashehta-location-item svg {
    color: var(--bh-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* About section */
.bashehta-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 968px) {
    .bashehta-about-grid {
        grid-template-columns: 1fr;
    }
}

.bashehta-about-grid img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.bashehta-about-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    list-style: none;
}

.bashehta-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.bashehta-about-feature svg {
    color: var(--bh-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.bashehta-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bh-accent);
    font-weight: 600;
    margin-top: 1rem;
}

.bashehta-cta-link:hover {
    color: var(--bh-accent-light);
}

/* Machines grid */
.bashehta-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.bashehta-section-header p {
    margin-top: 0.5rem;
}

.bashehta-machines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .bashehta-machines-grid {
        grid-template-columns: 1fr;
    }
}

.bashehta-machine-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--bh-border);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
}

.bashehta-machine-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-4px);
}

.bashehta-machine-card h3 {
    margin-bottom: 0.5rem;
    color: var(--bh-text);
}

.bashehta-machine-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* How it works (steps) */
.bashehta-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .bashehta-steps-grid {
        grid-template-columns: 1fr;
    }
}

.bashehta-step-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--bh-border);
    border-radius: 16px;
}

.bashehta-step-num {
    width: 56px;
    height: 56px;
    background: var(--bh-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.bashehta-step-card h3 {
    margin-bottom: 0.5rem;
    color: var(--bh-text);
}

.bashehta-step-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Rules list */
.bashehta-rules-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.bashehta-rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bh-border);
    border-radius: 12px;
}

.bashehta-rule-item svg {
    color: var(--bh-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.bashehta-rule-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--bh-text);
}

.bashehta-rule-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive 2-col grids inside pages */
@media (max-width: 768px) {
    .bashehta-page [style*="grid-template-columns:1fr 1fr"],
    .bashehta-page [style*="grid-template-columns: 1fr 1fr"],
    .bashehta-page [style*="grid-template-columns:repeat(2,1fr)"],
    .bashehta-page [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* Page inner (subpages) */
.bashehta-page {
    padding: 3rem 0 4rem;
}

.bashehta-page h1 {
    margin-bottom: 1.5rem;
}

.bashehta-page-content {
    max-width: 720px;
    margin-top: 1.5rem;
}

.bashehta-page-content p + p {
    margin-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   Unique redesign override layer
   Dark editorial + neon accents, glass surfaces, soft grain
   ═══════════════════════════════════════════════════════════ */

:root {
    --bh-bg: #0a0813;
    --bh-bg-deep: #06040e;
    --bh-surface: #15112a;
    --bh-surface-2: #1b1535;
    --bh-border: rgba(173, 132, 255, 0.25);
    --bh-accent: #9f7aea;
    --bh-accent-light: #c4b5fd;
    --bh-accent-dark: #7c3aed;
    --bh-accent-hot: #fb7185;
    --bh-text: #f8f7ff;
    --bh-muted: #b8b2d6;
    --bh-shadow: 0 12px 32px rgba(6, 4, 14, 0.45);
    --bh-shadow-accent: 0 16px 40px rgba(124, 58, 237, 0.28);
}

html,
body {
    background: var(--bh-bg-deep);
}

body {
    position: relative;
    color: var(--bh-text);
    background:
        radial-gradient(1000px 560px at 8% -10%, rgba(251, 113, 133, 0.16), transparent 60%),
        radial-gradient(900px 520px at 95% 0%, rgba(159, 122, 234, 0.2), transparent 62%),
        linear-gradient(180deg, #0f0b1f 0%, #090712 42%, #06040e 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.22;
    background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.55px, transparent 0.55px);
    background-size: 3px 3px;
}

h1 {
    letter-spacing: -0.025em;
    background: linear-gradient(122deg, #ffffff 0%, #d8cbff 48%, #ffb7c5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2,
h3,
h4 {
    color: #f3f0ff;
}

p {
    color: var(--bh-muted);
}

a {
    color: var(--bh-accent-light);
}

a:hover {
    color: #ffd4de;
}

.bashehta-container {
    max-width: 1240px;
}

.bashehta-header {
    background: rgba(10, 8, 19, 0.68);
    border-bottom: 1px solid rgba(196, 181, 253, 0.2);
    box-shadow: 0 10px 28px rgba(4, 2, 12, 0.5);
    backdrop-filter: blur(14px) saturate(125%);
}

.bashehta-nav-list {
    gap: 0.45rem;
}

.bashehta-nav-list a {
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    color: #efeaff;
    letter-spacing: 0.01em;
}

.bashehta-nav-list a:hover {
    border-color: rgba(196, 181, 253, 0.34);
    background: rgba(159, 122, 234, 0.16);
    color: #ffffff;
}

.bashehta-nav-list a:focus-visible {
    outline: 2px solid var(--bh-accent-light);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .bashehta-nav-list {
        top: 64px;
        background: rgba(21, 17, 42, 0.97);
        border-bottom: 1px solid rgba(196, 181, 253, 0.26);
        backdrop-filter: blur(10px);
    }
}

.bashehta-age-overlay {
    background: rgba(5, 4, 12, 0.96);
}

.bashehta-age-modal {
    background:
        linear-gradient(165deg, rgba(196, 181, 253, 0.11) 0%, rgba(159, 122, 234, 0.08) 36%, rgba(251, 113, 133, 0.06) 100%),
        rgba(18, 14, 35, 0.95);
    border: 1px solid rgba(196, 181, 253, 0.34);
    box-shadow: 0 20px 48px rgba(6, 4, 14, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bashehta-age-btn-yes,
.bashehta-btn-primary {
    background: linear-gradient(135deg, var(--bh-accent-dark) 0%, var(--bh-accent) 52%, var(--bh-accent-hot) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 26px rgba(124, 58, 237, 0.34);
}

.bashehta-age-btn-yes:hover,
.bashehta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(251, 113, 133, 0.3), 0 12px 32px rgba(124, 58, 237, 0.38);
    filter: saturate(110%);
}

.bashehta-hero {
    min-height: 94vh;
    padding: 5rem 0 4rem;
}

.bashehta-hero-overlay {
    background:
        linear-gradient(130deg, rgba(6, 4, 12, 0.82) 0%, rgba(10, 8, 19, 0.73) 40%, rgba(24, 15, 47, 0.68) 100%),
        radial-gradient(480px 380px at 16% 20%, rgba(251, 113, 133, 0.2), transparent 68%),
        radial-gradient(560px 420px at 88% 8%, rgba(159, 122, 234, 0.28), transparent 72%);
}

.bashehta-hero-inner {
    gap: 3.5rem;
}

.bashehta-hero-tag {
    color: #f7d7de;
    background: rgba(251, 113, 133, 0.14);
    border: 1px solid rgba(251, 113, 133, 0.32);
    padding: 0.36rem 0.72rem;
    border-radius: 999px;
}

.bashehta-hero-description {
    color: #d3caef;
    max-width: 64ch;
}

.bashehta-hero-pill {
    background: rgba(196, 181, 253, 0.1);
    border: 1px solid rgba(196, 181, 253, 0.28);
    color: #e4dbff;
}

.bashehta-hero-form-card {
    background:
        linear-gradient(170deg, rgba(196, 181, 253, 0.13) 0%, rgba(159, 122, 234, 0.08) 30%, rgba(11, 8, 25, 0.86) 100%),
        rgba(12, 9, 24, 0.92);
    border: 1px solid rgba(196, 181, 253, 0.3);
    border-radius: 24px;
    box-shadow: 0 24px 52px rgba(7, 5, 16, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bashehta-hero-form-card h3 {
    color: #f6f2ff;
}

.bashehta-form-field label {
    color: #cec5eb;
}

.bashehta-form-field input,
.bashehta-form-field select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(196, 181, 253, 0.26);
    color: var(--bh-text);
}

.bashehta-form-field input:focus,
.bashehta-form-field select:focus {
    border-color: rgba(251, 113, 133, 0.7);
    box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.18);
    background: rgba(255, 255, 255, 0.09);
}

.bashehta-stats {
    background: linear-gradient(90deg, rgba(159, 122, 234, 0.14) 0%, rgba(251, 113, 133, 0.11) 100%);
    border-top: 1px solid rgba(196, 181, 253, 0.24);
    border-bottom: 1px solid rgba(196, 181, 253, 0.24);
}

.bashehta-stat-num {
    color: #ffe6ec;
    text-shadow: 0 4px 16px rgba(251, 113, 133, 0.28);
}

.bashehta-section {
    padding: 4.5rem 0;
}

.bashehta-location-card,
.bashehta-machine-card,
.bashehta-step-card,
.bashehta-rule-item {
    border: 1px solid rgba(196, 181, 253, 0.23);
    background:
        linear-gradient(160deg, rgba(196, 181, 253, 0.07) 0%, rgba(251, 113, 133, 0.04) 100%),
        rgba(17, 13, 33, 0.78);
    box-shadow: var(--bh-shadow);
}

.bashehta-location-card {
    border-radius: 26px;
}

.bashehta-location-item svg,
.bashehta-about-feature svg,
.bashehta-rule-item svg {
    color: #ffbccd;
}

.bashehta-section-tag {
    color: #ffd7e1;
    letter-spacing: 0.13em;
}

.bashehta-section-header {
    margin-bottom: 2.8rem;
}

.bashehta-machine-card {
    border-radius: 18px;
}

.bashehta-machine-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(251, 113, 133, 0.4);
    box-shadow: 0 18px 36px rgba(6, 4, 14, 0.54), 0 0 0 1px rgba(251, 113, 133, 0.18) inset;
}

.bashehta-step-num {
    background: linear-gradient(135deg, var(--bh-accent-dark) 0%, var(--bh-accent) 55%, var(--bh-accent-hot) 100%);
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.3);
}

.bashehta-cta-link {
    color: #ffd4de;
}

.bashehta-cta-link:hover {
    color: #fff1f6;
}

.bashehta-page {
    padding: 3.25rem 0 4.5rem;
}

.bashehta-page-content {
    max-width: 780px;
}

.bashehta-footer {
    margin-top: 2rem;
    background:
        linear-gradient(180deg, rgba(21, 17, 42, 0.9) 0%, rgba(9, 7, 18, 0.95) 100%);
    border-top: 1px solid rgba(196, 181, 253, 0.22);
}

.bashehta-footer h4 {
    color: #faf7ff;
}

.bashehta-footer p,
.bashehta-footer a,
.bashehta-footer-bottom {
    color: #cbc2e8;
}

.bashehta-footer a:hover {
    color: #ffe0e8;
}

.bashehta-footer-bottom {
    border-top: 1px solid rgba(196, 181, 253, 0.2);
}

.bashehta-success-card {
    padding: 2rem;
    border-radius: 22px;
    background:
        linear-gradient(160deg, rgba(196, 181, 253, 0.1) 0%, rgba(251, 113, 133, 0.05) 100%),
        rgba(15, 11, 30, 0.88);
    border: 1px solid rgba(196, 181, 253, 0.25);
    box-shadow: var(--bh-shadow);
}

@media (max-width: 968px) {
    .bashehta-hero {
        min-height: auto;
    }

    .bashehta-hero-pills {
        justify-content: center;
    }

    .bashehta-section,
    .bashehta-page {
        padding-top: 3.25rem;
        padding-bottom: 3.5rem;
    }
}

.bashehta-btn-secondary {
    background: rgba(196, 181, 253, 0.12);
    color: #f1ecff;
    border: 1px solid rgba(196, 181, 253, 0.34);
}

.bashehta-btn-secondary:hover {
    background: rgba(251, 113, 133, 0.14);
    border-color: rgba(251, 113, 133, 0.4);
    color: #fff5f8;
    transform: translateY(-2px);
}

.bashehta-stat-card {
    padding: 1.15rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(196, 181, 253, 0.2);
    background: rgba(14, 10, 27, 0.5);
}

.bashehta-stat-note {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: #c9c0e4;
    letter-spacing: 0.01em;
}

.bashehta-location-badges {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.bashehta-location-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(196, 181, 253, 0.28);
    background: rgba(196, 181, 253, 0.1);
    color: #e9e2ff;
    font-size: 0.82rem;
    font-weight: 600;
}

.bashehta-signature-section {
    padding-top: 0.5rem;
}

.bashehta-signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bashehta-signature-card {
    border-radius: 16px;
    border: 1px solid rgba(196, 181, 253, 0.22);
    background: linear-gradient(165deg, rgba(196, 181, 253, 0.08) 0%, rgba(251, 113, 133, 0.05) 100%), rgba(12, 9, 25, 0.82);
    padding: 1.3rem;
}

.bashehta-signature-card .bh-icon {
    color: #ffc5d3;
    margin-bottom: 0.6rem;
}

.bashehta-signature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.bashehta-signature-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.bashehta-card-points {
    list-style: none;
    margin: 0.9rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.bashehta-card-points li {
    font-size: 0.84rem;
    color: #e7defd;
    position: relative;
    padding-left: 1rem;
}

.bashehta-card-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffb9c9;
}

.bashehta-step-meta {
    margin-top: 0.65rem;
    display: inline-block;
    font-size: 0.8rem;
    color: #d5cbea;
    border-top: 1px dashed rgba(196, 181, 253, 0.28);
    padding-top: 0.55rem;
}

.bashehta-final-cta-section {
    padding-top: 1rem;
}

.bashehta-final-cta {
    border: 1px solid rgba(196, 181, 253, 0.3);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(159, 122, 234, 0.15) 0%, rgba(251, 113, 133, 0.13) 100%), rgba(16, 12, 31, 0.85);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.2rem;
    align-items: center;
}

.bashehta-final-cta p {
    margin-bottom: 0;
}

.bashehta-final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: stretch;
}

.bashehta-final-cta-actions .bashehta-btn {
    text-align: center;
}

@media (max-width: 968px) {
    .bashehta-signature-grid {
        grid-template-columns: 1fr;
    }

    .bashehta-final-cta {
        grid-template-columns: 1fr;
    }
}
