:root {
    --plexo-yellow: #FFCA04;
    --plexo-gold: #D4AF37;
    --plexo-black: #000000;
    --plexo-dark-grey: #0a0a0a;
    --plexo-light-grey: #121212;
    --plexo-white: #ffffff;
    --plexo-text-muted: rgba(255, 255, 255, 0.6);
    --plexo-font-main: 'Montserrat', sans-serif;
    --plexo-font-display: 'Montserrat', sans-serif;
    --plexo-font-luxury: 'Montserrat', sans-serif;
    --plexo-font-accent: 'Montserrat', sans-serif;
    --plexo-glow: 0 0 40px rgba(255, 202, 4, 0.3);
    --luxury-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/*
 * Apply the base typography, colours and horizontal overflow constraints to
 * both the root element and the page body. Using `max-width: 100%` and
 * `overflow-x: hidden` prevents any child elements with transforms or
 * large widths from creating horizontal scroll on mobile.
 */
html,
.bloger-page {
    background-color: var(--plexo-black);
    color: var(--plexo-white);
    font-family: var(--plexo-font-main);
    max-width: 100%;
    overflow-x: hidden;
}

/* When the mobile menu is open lock the body to prevent scrolling */
body.menu-open {
    overflow: hidden;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--plexo-yellow);
    border: none;
    border-radius: 50%;
    color: var(--plexo-black);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), var(--plexo-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: var(--plexo-white);
    transform: translateY(-5px) scale(1.1);
}

/* Hero Section Luxury */
.bloger-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 5% 350px;
    background: radial-gradient(circle at 70% 50%, #1a1a1a 0%, #000 70%);
    overflow: hidden;
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    .bloger-hero {
        min-height: auto;                 /* убираем 100vh */
        display: block;                   /* вместо flex */
        padding: 100px 6% 70px;            /* компактнее отступы */
        background: radial-gradient(
            circle at 50% 30%,
            #1a1a1a 0%,
            #000 75%
        );
    }
}


.hero-parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.parallax-asset {
    position: absolute;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7));
    z-index: 2;
    transition: transform 0.2s cubic-bezier(0.1, 0, 0, 1);
}

.asset-luxury-boss {
    width: 750px;
    bottom: 0;
    right: -50px;
    z-index: 5;
    filter: drop-shadow(0 0 50px rgba(0,0,0,0.8));
    object-position: top;
}

.asset-girl {
    width: 680px;
    bottom: 0;
    right: 186px;
    z-index: 4;
    filter: drop-shadow(0 0 40px rgba(0,0,0,0.6));
    object-position: top;
}

.asset-usdt-left { width: 180px; bottom: 15%; left: 5%; filter: none; opacity: 0.9; z-index: 6; }
.asset-usdt-right { width: 220px; top: 10%; right: 30%; filter: none; opacity: 0.8; z-index: 6; }
.asset-metamask-float { width: 70px; top: 25%; left: 20%; filter: blur(4px) drop-shadow(0 0 20px rgba(255,165,0,0.1)); opacity: 0.3; }
.asset-trust-float { width: 90px; bottom: 20%; right: 40%; filter: blur(4px) drop-shadow(0 0 20px rgba(0,123,255,0.1)); opacity: 0.3; }

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 20;
    color: var(--plexo-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    font-family: var(--plexo-font-display);
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    font-weight: 900;
}

/* Trust Factors Bar */
.trust-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.trust-item img {
    height: 35px;
    width: auto;
}

.trust-item span {
    font-family: var(--plexo-font-main);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--plexo-white);
}

.hero-typography h1.hero-mega-text {
    font-family: var(--plexo-font-display);
    font-weight: 900;
    letter-spacing: -0.05em;
	margin-top: 40px;
}

.hero-sub-text-row span {
    font-family: var(--plexo-font-display);
}

.bloger-section h2 {
    font-family: var(--plexo-font-accent);
    font-weight: 900;
    text-transform: uppercase;
}

.logo span {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;
}

.copyright {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.section-tag {
    font-family: var(--plexo-font-display);
    letter-spacing: 0.6em;
    font-weight: 900;
}

.level-percent {
    font-family: var(--plexo-font-display);
}

.dynamic-btn {
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dynamic-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(30deg);
    transition: none;
    animation: shine-btn 3s infinite;
}

@keyframes shine-btn {
    0% { left: -60%; }
    20% { left: 140%; }
    100% { left: 140%; }
}

.cta-box-modern .cta-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--plexo-text-muted);
}

.cta-box-modern .plexo-btn-yellow {
    animation: pulse-border 2s infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--plexo-yellow);
    color: var(--plexo-black);
    font-weight: 900;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.1rem;
    gap: 15px;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 202, 4, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(255, 202, 4, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 202, 4, 0); }
}

.floating-gold-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--plexo-yellow) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: gold-float 20s linear infinite;
}

@keyframes gold-float {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

.bloger-hero-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-mega-text {
    font-size: clamp(4rem, 18vw, 14rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.05em;
    margin: 0;
    color: var(--plexo-white);
    text-transform: uppercase;
}

.hero-sub-text-row {
    display: flex;
    gap: 25px;
    margin-top: -10px;
    align-items: center;
}

.outlined-text {
    font-size: clamp(2rem, 8vw, 7rem);
    font-weight: 900;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
    color: transparent;
    text-transform: uppercase;
}

.yellow-text {
    font-size: clamp(2rem, 8vw, 7rem);
    font-weight: 900;
    color: var(--plexo-yellow);
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 202, 4, 0.5);
}

/* Steps Grid */
.hero-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 35px 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.step-card:hover {
    background: rgba(255, 202, 4, 0.08);
    border-color: var(--plexo-yellow);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.step-num {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--plexo-yellow);
    margin-bottom: 20px;
    display: block;
    letter-spacing: 0.2em;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--plexo-text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Buttons */
.plexo-btn-main {
    background: var(--plexo-yellow);
    color: var(--plexo-black);
    padding: 24px 48px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 40px rgba(255, 202, 4, 0.3);
}

/* Mobile buttons */
@media (max-width: 768px) {
    .plexo-btn-main {
        padding: 14px 26px;        /* меньше отступы */
        font-size: 0.85rem;        /* уменьшенный шрифт */
        gap: 10px;                 /* меньше расстояние между иконками */
        letter-spacing: 0.06em;    /* компактнее текст */
        box-shadow: 0 6px 20px rgba(255, 202, 4, 0.25);
    }
}


.btn-icon-circle {
    width: 45px;
    height: 45px;
    background: var(--plexo-black);
    color: var(--plexo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.plexo-btn-main:hover {
    background: var(--plexo-white);
    transform: scale(1.05);
}

.plexo-btn-main:hover .btn-icon-circle {
    transform: rotate(360deg) scale(1.1);
    background: var(--plexo-yellow);
    color: var(--plexo-black);
}

/* Sections Global */
.bloger-section {
    padding: 180px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-tag {
    color: var(--plexo-yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    font-size: 0.8rem;
    margin-bottom: 30px;
    display: block;
}

.bloger-section h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 35px;
    font-weight: 900;
}

/* Orbit Animation */
.logo-orbit {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-logo {
    width: 500px;
    filter: drop-shadow(0 0 50px var(--plexo-yellow));
    animation: float 6s ease-in-out infinite;
}

/* Mobile floating logo */
@media (max-width: 768px) {
    .floating-logo {
        width: 350px; /* мобильный размер */
        filter: drop-shadow(0 0 35px var(--plexo-yellow)); /* мягче для мобилы */
    }
}


.level-desc {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--plexo-white);
    opacity: 0.9;
    text-transform: uppercase;
}

.mini-trust-bar {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.mini-trust-bar img {
    height: 30px;
    opacity: 0.8;
}

.lifestyle-boss-img {
    width: 100%;
    display: block;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-frame:hover .lifestyle-boss-img {
    transform: scale(1.15) rotate(2deg);
}

.luxury-glow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,202,4,0.2) 0%, transparent 70%);
    filter: blur(40px);
}

.orbit-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.circle-1 { width: 100%; height: 100%; animation: rotate 30s linear infinite; }
.circle-2 { width: 75%; height: 75%; border-color: rgba(255,202,4,0.3); animation: rotate 20s linear infinite reverse; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Referral Grid */
.referral-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
}

.level-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    padding: 70px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.level-box.featured {
    border-color: var(--plexo-yellow);
    background: radial-gradient(circle at top right, rgba(255,202,4,0.15), transparent 70%);
}

.level-box:hover {
    transform: translateY(-20px);
    border-color: var(--plexo-yellow);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.level-number {
    font-weight: 900;
    color: var(--plexo-yellow);
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.level-percent {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--plexo-white);
}

.level-desc {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--plexo-white);
    opacity: 0.9;
}

/* Lifestyle Section */
.luxury-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--luxury-shadow);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.section-text-side p {
    margin-bottom: 80px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--plexo-text-muted);
}

.hero-actions {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.benefits-vertical {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-card {
    display: flex;
    gap: 30px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--plexo-yellow);
    transform: translateX(15px);
}

.benefit-card-icon {
    width: 75px;
    height: 75px;
    background: var(--plexo-yellow);
    color: var(--plexo-black);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.benefit-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--plexo-text-muted);
    margin-bottom: 15px;
}

/* Final CTA */
.cta-inner-card.luxury-card {
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 120px 5%;
    border-radius: 50px;
    text-align: center;
    border: 2px solid rgba(255, 202, 4, 0.3);
    box-shadow: 0 50px 120px rgba(0,0,0,0.9);
    position: relative;
    overflow: hidden;
}

.truth-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 202, 4, 0.1);
    border: 1px solid var(--plexo-yellow);
    color: var(--plexo-yellow);
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cta-desc {
    font-size: 1.3rem;
    color: var(--plexo-text-muted);
    max-width: 800px;
    margin: 40px auto 70px;
    line-height: 1.7;
}

.cta-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Mobile Optimizations */
@media (max-width: 1200px) {
    .section-grid { gap: 60px; }
    .referral-grid { grid-template-columns: repeat(2, 1fr); }
    .asset-luxury-boss { width: 550px; right: -80px; }
}

@media (max-width: 991px) {
    .section-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-mega-text { font-size: 10rem; }
    .hero-steps-grid { grid-template-columns: repeat(2, 1fr); margin-top: 60px; }
    .hero-actions { display: flex; flex-direction: column; align-items: center; gap: 30px; }
    .trust-bar { justify-content: center; width: auto; margin-top: 40px; }
    .asset-luxury-boss { display: none; }
    .growth-visual { order: -1; }
    .benefit-card { text-align: left; }
    .logo-orbit { width: 100%; height: 450px; }
    /* Reduce vertical padding between sections on tablet screens */
    .bloger-section { padding: 120px 5%; }
}

@media (max-width: 768px) {
    .hero-mega-text { font-size: 6rem; }
    .outlined-text,
    .yellow-text {
        font-size: 3.5rem;
    }
    .hero-steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .referral-grid {
        grid-template-columns: 1fr;
    }
    .logo-orbit {
        height: 350px;
    }
    /* Reduce excessive top padding on the hero section */
    .bloger-hero {
        padding-top: 80px;
        padding-bottom: 80px;
        /* Place the main hero artwork behind the text on mobile */
        background-image: url('../../slelguoygbfzlpylpxfs.supabase.co/storage/v1/render/image/public/project-uploads/eac20a26-cd13-4b9b-90f0-439dd5f290b8/biznes-176938768842646ae.png?width=8000&amp;height=8000&amp;resize=contain');
        background-size: cover;
        background-position: center bottom;
    }
    /* Hide parallax assets on mobile to avoid clutter */
    .hero-parallax-container {
        display: none;
    }
    /* Center the hero typography and subtexts */
    .hero-typography {
        text-align: center;
    }
    .hero-sub-text-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 0;
    }
    /* Position the scroll indicator directly below the title */
    .hero-scroll-indicator {
        position: relative;
        margin-top: 20px;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: auto;
    }
    /* Reduce spacing above the steps grid */
    .hero-steps-grid {
        margin-top: 40px;
        padding-top: 20px;
    }
    /* Reduce vertical padding on sections and final CTA on mobile */
    .bloger-section {
        padding: 80px 5%;
    }
    .cta-inner-card.luxury-card {
        padding: 80px 5%;
    }
    /* Ensure the mobile menu appears above other content */
    .navbar {
        z-index: 2000;
    }
    .mobile-menu {
        z-index: 1999;
    }
    .benefit-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
