/* Shaqzilla Bulletproof CSS - v17 (Responsive Fixed) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --bg-color: #000000;
    --card-bg: rgba(20, 20, 25, 0.4);
    --primary-color: #FFD700;
    --accent-color: #8A2BE2;
    --text-primary: #FFFFFF;
    --text-secondary: #C0C0C0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --nav-bg: rgba(3, 3, 3, 0.85);
    --section-spacing: 120px;
}

html,
body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
}

#shaqzilla-root {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

p {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    padding: var(--section-spacing) 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* 
   RESPONSIVE LAYOUT SYSTEM
   Desktop = Side-by-Side (Row)
   Mobile = Stacked (Column)
*/

/* 1. Viral Video & Comments */
.video-comments-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    /* Allow wrap on smaller desktop/tablet */
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 60px;
}

.video-column {
    flex: 0 1 500px !important;
}

.comments-column {
    flex: 0 1 320px !important;
}

/* 2. Mission Gallery (3 Videos) */
.video-grid-3 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.video-grid-3 .video-short-wrap {
    flex: 1 1 300px !important;
    max-width: 320px !important;
}

/* 3. Viral Impact Stats Row */
.stats-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-around !important;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

/* Components */
.video-short-wrap {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 80px rgba(138, 43, 226, 0.2);
    background: #000;
}

.video-short-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.comment-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 8px;
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    width: 100%;
}

.comment-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.stat-number {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
}

.stat-box p {
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

/* Viral View Stats (Small Boxes) */
.viral-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 40px auto;
}

.viral-stat-box {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 30px 10px;
    border-radius: 20px;
    text-align: center;
}

.viral-stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.viral-stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    opacity: 0.7;
}

/* Projection Section */
.projection-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('assets/ShaqWynn_AIvideo_16x9_01-1536x864.webp');
    background-size: cover;
    background-position: center;
}

/* MOBILE BREAKPOINT (Stack Everything) */
@media (max-width: 850px) {

    .video-comments-grid,
    .video-grid-3,
    .stats-row,
    .projection-grid-enhanced {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        align-items: center !important;
        gap: 50px;
    }

    .video-column,
    .comments-column,
    .video-grid-3 .video-short-wrap {
        max-width: 450px !important;
        width: 100% !important;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .viral-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 60px 4%;
    }

    p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .viral-stats-row {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 400px;
    }
}