:root {
    --primary: #ff7a18;
    --primary-strong: #ff983f;
    --accent: #ffb347;
    --text-dark: #f5f7ff;
    --text-muted: #aeb7cc;
    --bg-light: #1b2132;
    --bg-darker: #090b12;
    --bg-panel: #141927;
    --bg-panel-alt: #1f2435;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
    --shadow-hover: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
    --border-glow: rgba(255, 122, 24, 0.45);
    --glass: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: radial-gradient(circle at top, #1a1f2d 0%, #090b12 45%, #050609 100%);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 25% 15%, rgba(255, 122, 24, 0.15), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(79, 102, 255, 0.18), transparent 35%);
    pointer-events: none;
    z-index: -1;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.15;
}


.icon-flag {
    height: 32px;
    width: auto;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 2px 12px;
    background: rgba(12, 14, 20, 0.6);
    backdrop-filter: blur(6px);
}

.image-box {
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--bg-panel);
}

.head-pic {
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 70px -35px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.head-pic:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.center {
    text-align: center;
}

.round {
    border-radius: var(--radius-md);
}

/* Spacers */
.hg-70 {
    height: 70px;
}

.hg-60 {
    height: 60px;
}

.hg-50 {
    height: 50px;
}

.hg-40 {
    height: 40px;
}

.hg-30 {
    height: 30px;
}

.hg-20 {
    height: 20px;
}

.hg-10 {
    height: 10px;
}

@media (max-width: 768px) {

    .hg-70,
    .hg-60,
    .hg-50 {
        height: 40px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    .sub-title {
        font-size: 20px;
    }

    .icon-flag {
        position: static;
        transform: none;
        margin-top: 15px;
    }

    .disclaimer-content {
        padding-right: 0;
    }

    section {
        padding: 25px 0;
    }

    .card {
        margin-bottom: 40px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

section {
    padding: clamp(30px, 4vw, 55px) 0;
    position: relative;
}

.section-hero {
    background: linear-gradient(135deg, rgba(20, 24, 36, 0.95), rgba(9, 11, 18, 0.98));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.section-hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.22), transparent 60%);
    right: -120px;
    bottom: -120px;
    filter: blur(5px);
    pointer-events: none;
}

.section-panel {
    background: rgba(12, 14, 20, 0.65);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-contrast {
    background: linear-gradient(120deg, rgba(20, 26, 40, 0.8), rgba(12, 14, 20, 0.7));
}

.section-wrap-businnes {
    background: rgba(14, 16, 24, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: clamp(20px, 3vw, 40px);
}

.section-gallery {
    background: transparent;
}


.other-links {
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(21, 26, 38, 0.75), rgba(15, 18, 28, 0.9));
    box-shadow: var(--shadow);
    color: var(--text-muted);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.other-links:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    margin-bottom: 30px;
    overflow: hidden;
    height: 100%;
    background: linear-gradient(165deg, rgba(20, 25, 38, 0.95), rgba(12, 15, 24, 0.95));
}

.card2 {
    border-color: rgba(180, 187, 204, 0.25);
    box-shadow: 0 25px 60px -30px rgba(0, 0, 0, 0.9);
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text-muted);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--white);
}

.card-img-top {
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    object-fit: contain;
}

.partners-section .card-img-top {
    border-radius: var(--radius-sm);
}

.card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-actions .btn {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary), var(--primary-strong));
    border: none;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #0a0c12;
    box-shadow: 0 15px 30px -15px rgba(255, 122, 24, 0.8);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 25px 40px -20px rgba(255, 122, 24, 0.9);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-outline:hover {
    color: var(--bg-darker);
    border-color: var(--primary-strong);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-bottom {
    margin-top: auto;
    /* Push to bottom in flex container */
    align-self: center;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: var(--primary-strong);
}

p,
li {
    color: var(--text-muted);
}

.sub-title {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-muted);
}

h1 {
    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 40px;
}

h5 {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: var(--text-muted);
}

.sub-title-20 {
    font-size: 18px;
    color: var(--text-muted);
    opacity: 0.85;
}

.instagram {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.instagram:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.fraudulent-docs {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(10, 12, 18, 0.8);
}

.fraudulent-docs:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hero-link {
    font-size: 20px;
    color: var(--text-dark);
    display: block;
    margin-top: 15px;
}

.hero-link a {
    color: var(--accent);
    font-weight: 600;
}

.hero-link a:hover {
    color: var(--primary-strong);
}

.section-caption {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 10px;
}

/* Layout helpers */
.disclaimer-bar {
    background: rgba(5, 6, 10, 0.92);
    color: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.disclaimer-content {
    position: relative;
    padding-right: 90px;
}

.disclaimer-bar h5 {
    font-size: 14px !important;
    margin: 0;
    color: var(--white) !important;
    opacity: 0.95;
}

.hero-grid {
    align-items: stretch;
    row-gap: 40px;
}

.hero-copy {
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-badge::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.hero-highlight,
.glass-panel {
    background: linear-gradient(135deg, rgba(22, 27, 41, 0.85), rgba(13, 16, 24, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}


.hero-figure {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    align-self: stretch;
}


.hero-figure::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: -1;
}


.hero-figure .head-pic {
    width: 100%;
    height: 60%;
    object-fit: fill;
    border-radius: var(--radius-lg);
    padding-top: 100px;
    max-width: 100%!important;
}

@media (max-width: 992px) {
    .hero-grid {
        align-items: center;
    }

    .hero-copy {
        text-align: center;
        align-items: center;
    }

    .hero-figure {
        justify-content: center;
        align-items: center;
    }

    .hero-figure .head-pic {
        width: 100%;
        height: auto;
    }
}

#links {
    row-gap: 30px;
}

#fraudulent {
    row-gap: 30px;
}

.site-footer {
    width: 100%;
    min-height: 80px;
    background: rgba(5, 6, 10, 0.9);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    .sub-title {
        font-size: 24px;
    }

    .icon-flag {
        position: static;
        transform: none;
        margin-top: 15px;
    }

    section {
        padding: 30px 0;
    }

    .card {
        margin-bottom: 40px;
    }
}
.hero-figure .head-pic {
    width: 100%;
    max-width: none;
    height: auto;
}

.scam-overview {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.scam-question {
    font-size: 20px;
    color: var(--text-muted);
}

.scam-overview p,
.scam-overview li,
.scam-question {
    color: var(--white);
}

.scam-points {
    margin-top: 10px;
}

.scam-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scam-list li {
    padding-left: 24px;
    position: relative;
    color: var(--white);
}

.scam-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(255, 122, 24, 0.6);
}
