/* 
   RAXA PACKZ - AUTOMOTIVE NIGHTLIFE REDESIGN 
   Vibe: Aggressive, Dark, Neon, Cyberpunk, Sound System Culture
*/

/* --- 1. VARIABLES & RESET --- */
:root {
    /* Colors */
    --bg-color: #000000;
    --bg-secondary: #050505;
    --card-bg: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;

    /* Neon Accents */
    --accent-color: #39FF14;
    /* Neon Green */
    --accent-hover: #32d911;
    --danger-color: #FF003C;
    /* Cyberpunk Red */
    --warning-color: #FFD700;
    /* Gold/Yellow */

    /* Glow Effects */
    --glow-green: 0 0 10px rgba(57, 255, 20, 0.6), 0 0 20px rgba(57, 255, 20, 0.3);
    --glow-red: 0 0 10px rgba(255, 0, 60, 0.6), 0 0 20px rgba(255, 0, 60, 0.3);
    --glow-text: 0 0 5px rgba(57, 255, 20, 0.5);

    /* Typography */
    --font-heading: 'Russo One', sans-serif;
    /* Aggressive, Wide */
    --font-subheading: 'Bebas Neue', sans-serif;
    /* Tall, Condensed */
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23111111' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    /* Carbon Fiber-ish Texture */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-style: italic;
    /* Speed/Motion */
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    /* Wider for impact */
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* --- 2. COMPONENTS --- */

/* Buttons - NITRO STYLE */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #000;
    background: var(--accent-color);
    border: none;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    /* Cyberpunk Shape */
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn:hover {
    transform: scale(1.05) skewX(-5deg);
    box-shadow: 0 0 30px var(--accent-color);
    color: #000;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn-large {
    font-size: 1.8rem;
    padding: 1.5rem 4rem;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: nitroPulse 2s infinite;
}

@keyframes nitroPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(57, 255, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}

/* Cards - INDUSTRIAL/CYBERPUNK */
.card-base {
    background: var(--card-bg);
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-base::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card-base:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

.card-base:hover::after {
    transform: scaleX(1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-main);
    text-shadow: 2px 2px 0px #222;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- 3. SECTIONS --- */

/* HERO SECTION */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('../img/hero_bg.png') no-repeat center center/cover;
    border-bottom: 2px solid var(--accent-color);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 80%, #000 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    background: -webkit-linear-gradient(#fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
}

.update-badge {
    display: inline-block;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-text);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px #000;
}

.hero-proof {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-proof span {
    color: var(--accent-color);
    margin: 0 0.5rem;
}

/* WARNING BLOCK */
.warning-block {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../img/vibrating_cone.png');
    background-size: cover;
    border-top: 4px solid var(--warning-color);
    border-bottom: 4px solid var(--warning-color);
    padding: 4rem 0;
    position: relative;
}

.warning-block h2 {
    color: var(--warning-color);
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.warning-block p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: #fff;
    border-left: 3px solid var(--warning-color);
    padding-left: 1.5rem;
    text-align: left;
}

/* PREVIEWS (AUDIO) */
.previews {
    background: #050505;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audio-card {
    background: #0e0e0e;
    border: 1px solid #333;
    padding: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
    transition: all 0.3s;
}

.audio-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--glow-green);
}

.audio-card span {
    display: block;
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.audio-card p {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* Custom Audio Player Styling (Webkit only mostly) */
audio {
    width: 100%;
    height: 40px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(90deg);
    /* Hacky neon green filter */
    opacity: 0.8;
    transition: opacity 0.3s;
}

audio:hover {
    opacity: 1;
}

/* BENEFITS (DIFFERENTIATORS) */
.differentiators {
    background: #000;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: linear-gradient(145deg, #0a0a0a, #050505);
    padding: 2rem;
    border: 1px solid #222;
    border-radius: 0;
    /* Sharp edges */
    position: relative;
}

.diff-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.diff-card p {
    color: #ccc;
}

/* SOCIAL PROOF (VISUAL) */
.social-proof {
    background: #080808;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-placeholder {
    background: url('../img/video_thumb.png') no-repeat center center/cover;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transition: all 0.3s;
    text-shadow: 0 0 5px #000;
}

.video-placeholder:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: var(--glow-green);
}

/* STEPS */
.steps {
    background: #000;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-card h3 {
    position: relative;
    z-index: 1;
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* COMPATIBILITY */
.compatibility {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    background: #050505;
}

.compat-list span {
    display: inline-block;
    border: 1px solid #333;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    color: #888;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s;
}

.compat-list span:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: var(--glow-text);
}

/* OFFER SECTION */
.offer {
    background: radial-gradient(circle at center, #1a0505 0%, #000 100%);
    /* Subtle red hint for urgency */
    padding: 6rem 0;
}

.offer-card {
    background: rgba(10, 10, 10, 0.95);
    border: 4px solid #ccc;
    border-image: linear-gradient(45deg, #888, #fff, #888) 1;
    /* Metallic Effect */
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.1);
    backdrop-filter: blur(10px);
    clip-path: polygon(5% 0, 100% 0, 100% 95%, 95% 100%, 0 100%, 0 5%);
}

.offer-card h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.price-box {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.old-price {
    font-size: 2.5rem;
    color: #FF003C;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    display: block;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

/* GUARANTEE */
.guarantee-box {
    border: 2px dashed #444;
    padding: 3rem;
    margin-top: 3rem;
    background: #0a0a0a;
}

.guarantee-box h2 {
    color: #fff;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    color: var(--accent-color);
    font-size: 1.5rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #ccc;
}

/* FOOTER */
.final-cta {
    background: #000;
    border-top: 5px solid var(--accent-color);
    padding: 5rem 0;
}

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    border-top: 2px solid var(--accent-color);
    z-index: 1000;
    display: none;
    /* JS can toggle this */
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .warning-block h2 {
        font-size: 2rem;
    }

    .new-price {
        font-size: 3.5rem;
    }

    .sticky-cta {
        display: block;
    }
}

/* Psychological Pricing Styles */
.line-through {
    text-decoration: line-through;
    color: #666;
}

.pirate-warning {
    position: relative;
    overflow: hidden;
}

.pirate-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(255, 0, 60, 0.05),
            rgba(255, 0, 60, 0.05) 10px,
            rgba(0, 0, 0, 0.05) 10px,
            rgba(0, 0, 0, 0.05) 20px);
    z-index: 0;
    pointer-events: none;
}

.warning-content {
    position: relative;
    z-index: 1;
}

/* --- UX IMPROVEMENTS --- */

/* Custom Audio Player */
.custom-audio-player {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    padding: 0.8rem;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.play-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.2);
    text-shadow: var(--glow-text);
}

.progress-container {
    flex-grow: 1;
    height: 5px;
    background: #333;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    border-radius: 3px;
    box-shadow: var(--glow-text);
    transition: width 0.1s linear;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 80px;
    /* Above sticky CTA on mobile */
    right: 20px;
    background: var(--accent-color);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    /* Hidden by default */
    z-index: 999;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    transition: all 0.3s;
}



/* Mute Button */
.mute-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mute-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px var(--accent-color);
}

.mute-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {

    /* Typography Adjustments */
    html {
        font-size: 14px;
        /* Base font size reduction */
    }

    h1,
    .hero-title {
        font-size: 2.2rem;
        /* Smaller hero title */
    }

    h2,
    .section-header h2 {
        font-size: 1.8rem;
        /* Smaller section headings */
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Layout Adjustments */
    .container {
        width: 95%;
        padding: 0 1rem;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 4rem 0;
        /* Add padding top/bottom */
        height: auto;
    }

    /* Grids to Single Column */
    .audio-grid,
    .diff-grid,
    .video-grid,
    .steps-grid,
    .objection-grid {
        grid-template-columns: 1fr;
        /* Force single column */
    }

    /* Component Adjustments */
    .offer-card {
        padding: 2rem 1rem;
        clip-path: none;
        /* Remove complex clip-path on mobile */
        border: 2px solid #ccc;
        /* Fallback border */
    }

    .new-price {
        font-size: 3rem;
    }

    .old-price {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        /* Full width buttons */
        padding: 1rem;
        font-size: 1.1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .btn-large {
        font-size: 1.3rem;
    }

    /* Specific Section Tweaks */
    .warning-block {
        padding: 2rem 0;
    }

    .warning-block h2 {
        font-size: 1.8rem;
    }

    .warning-block p {
        font-size: 1rem;
    }

    .step-number {
        font-size: 3rem;
        top: -1.5rem;
    }

    .sticky-cta {
        display: block;
        padding: 0.8rem;
    }

    .sticky-cta .btn {
        font-size: 1rem;
        padding: 0.8rem;
    }

    /* Improve mobile readability for benefits */
    .diff-card p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Fix Audio Player on Mobile */
    .custom-audio-player {
        flex-direction: row;
        /* Keep row but ensure items fit */
    }

    /* Video Card Height */

    /* Mute Button */
    .mute-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid var(--accent-color);
        color: #fff;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s;
        z-index: 10;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }

    .mute-btn:hover {
        background: var(--accent-color);
        color: #000;
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 20px var(--accent-color);
    }

    .mute-text {
        font-family: var(--font-heading);
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 768px) {

        /* Typography Adjustments */
        html {
            font-size: 14px;
            /* Base font size reduction */
        }

        h1,
        .hero-title {
            font-size: 2.2rem;
            /* Smaller hero title */
        }

        h2,
        .section-header h2 {
            font-size: 1.8rem;
            /* Smaller section headings */
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        /* Layout Adjustments */
        .container {
            width: 95%;
            padding: 0 1rem;
        }

        .hero {
            min-height: auto;
            padding: 6rem 0 4rem 0;
            /* Add padding top/bottom */
            height: auto;
        }

        /* Grids to Single Column */
        .audio-grid,
        .diff-grid,
        .video-grid,
        .steps-grid,
        .objection-grid {
            grid-template-columns: 1fr;
            /* Force single column */
        }

        /* Component Adjustments */
        .offer-card {
            padding: 2rem 1rem;
            clip-path: none;
            /* Remove complex clip-path on mobile */
            border: 2px solid #ccc;
            /* Fallback border */
        }

        .new-price {
            font-size: 3rem;
        }

        .old-price {
            font-size: 1.5rem;
        }

        .btn {
            width: 100%;
            /* Full width buttons */
            padding: 1rem;
            font-size: 1.1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .btn-large {
            font-size: 1.3rem;
        }

        /* Specific Section Tweaks */
        .warning-block {
            padding: 2rem 0;
        }

        .warning-block h2 {
            font-size: 1.8rem;
        }

        .warning-block p {
            font-size: 1rem;
        }

        .step-number {
            font-size: 3rem;
            top: -1.5rem;
        }

        .sticky-cta {
            display: block;
            padding: 0.8rem;
        }

        .sticky-cta .btn {
            font-size: 1rem;
            padding: 0.8rem;
        }

        /* Improve mobile readability for benefits */
        .diff-card p {
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Fix Audio Player on Mobile */
        .custom-audio-player {
            flex-direction: row;
            /* Keep row but ensure items fit */
        }

        /* Video Card Height */
        .video-placeholder {
            height: 200px;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.8rem;
        }

        .new-price {
            font-size: 2.5rem;
        }
    }

    .sticky-cta {
        display: block;
        padding: 0.8rem;
    }

    .sticky-cta .btn {
        font-size: 1rem;
        padding: 0.8rem;
    }

    /* Improve mobile readability for benefits */
    .diff-card p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Fix Audio Player on Mobile */
    .custom-audio-player {
        flex-direction: row;
        /* Keep row but ensure items fit */
    }

    /* Video Card Height */

    /* Mute Button */
    .mute-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid var(--accent-color);
        color: #fff;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s;
        z-index: 10;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
    }

    .mute-btn:hover {
        background: var(--accent-color);
        color: #000;
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 20px var(--accent-color);
    }

    .mute-text {
        font-family: var(--font-heading);
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* --- MOBILE RESPONSIVENESS --- */
    @media (max-width: 768px) {

        /* Typography Adjustments */
        html {
            font-size: 14px;
            /* Base font size reduction */
        }

        h1,
        .hero-title {
            font-size: 2.2rem;
            /* Smaller hero title */
        }

        h2,
        .section-header h2 {
            font-size: 1.8rem;
            /* Smaller section headings */
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        /* Layout Adjustments */
        .container {
            width: 95%;
            padding: 0 1rem;
        }

        .hero {
            min-height: auto;
            padding: 6rem 0 4rem 0;
            /* Add padding top/bottom */
            height: auto;
        }

        /* Grids to Single Column */
        .audio-grid,
        .diff-grid,
        .video-grid,
        .steps-grid,
        .objection-grid {
            grid-template-columns: 1fr;
            /* Force single column */
        }

        /* Component Adjustments */
        .offer-card {
            padding: 2rem 1rem;
            clip-path: none;
            /* Remove complex clip-path on mobile */
            border: 2px solid #ccc;
            /* Fallback border */
        }

        .new-price {
            font-size: 3rem;
        }

        .old-price {
            font-size: 1.5rem;
        }

        .btn {
            width: 100%;
            /* Full width buttons */
            padding: 1rem;
            font-size: 1.1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .btn-large {
            font-size: 1.3rem;
        }

        /* Specific Section Tweaks */
        .warning-block {
            padding: 2rem 0;
        }

        .warning-block h2 {
            font-size: 1.8rem;
        }

        .warning-block p {
            font-size: 1rem;
        }

        .step-number {
            font-size: 3rem;
            top: -1.5rem;
        }

        .sticky-cta {
            display: block;
            padding: 0.8rem;
        }

        .sticky-cta .btn {
            font-size: 1rem;
            padding: 0.8rem;
        }

        /* Improve mobile readability for benefits */
        .diff-card p {
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Fix Audio Player on Mobile */
        .custom-audio-player {
            flex-direction: row;
            /* Keep row but ensure items fit */
        }

        /* Video Card Height */
        .video-placeholder {
            height: 200px;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.8rem;
        }

        .new-price {
            font-size: 2.5rem;
        }
    }

    /* --- MOBILE TOAST ADJUSTMENT --- */
    @media (max-width: 768px) {
        .social-toast {
            bottom: 90px;
            /* Above sticky CTA */
            top: auto;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            max-width: 85%;
            text-align: center;
            border-radius: 50px;
            /* Pill shape */
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            white-space: nowrap;
            /* Keep on one line if possible */
        }

        .social-toast.show {
            transform: translateX(-50%);
        }
    }
}