/* Netflix Cinematic Presentation - Futuristic Dark Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.8);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --accent-red: #e50914;
    --accent-blue: #00d4ff;
    --accent-purple: #8b5cf6;
    --accent-gold: #f59e0b;
    --accent-green: #10b981;
    --glow-red: 0 0 60px rgba(229, 9, 20, 0.4);
    --glow-blue: 0 0 60px rgba(0, 212, 255, 0.4);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
    width: 0%;
    transition: width 0.1s;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 3rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.85) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-blue), transparent);
    opacity: 0.5;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(229, 9, 20, 0.6));
    transition: all 0.3s;
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

.logo-text small {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: white;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.3), rgba(0, 212, 255, 0.2));
}

.nav-links a.active {
    color: white;
    background: var(--accent-red);
}

.nav-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.5rem 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.nav-author:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
    transition: all 0.3s;
}

.author-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.6);
}

.author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.author-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-size: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
}

.nav-copyright {
    font-size: 0.65rem;
    color: var(--text-muted);
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.25rem;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(229, 9, 20, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    max-width: 650px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-title .gradient {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.5);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: var(--glass);
    transform: translateY(-3px);
}

/* Hero Visual - Cinematic Image */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    max-width: 550px;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(229, 9, 20, 0.3), 0 0 100px rgba(0, 212, 255, 0.2);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.2) 0%, transparent 60%);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.floating-stat .fs-icon {
    font-size: 1rem;
}

.floating-stat .fs-text {
    color: var(--text-secondary);
}

.fs1 {
    top: 10%;
    left: -20px;
    animation: floatStat1 5s ease-in-out infinite;
}

.fs2 {
    top: 50%;
    right: -30px;
    animation: floatStat2 6s ease-in-out infinite;
}

.fs3 {
    bottom: 15%;
    left: 0;
    animation: floatStat3 5.5s ease-in-out infinite;
}

@keyframes floatStat1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -15px);
    }
}

@keyframes floatStat2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, 10px);
    }
}

@keyframes floatStat3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, -10px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

/* SECTIONS */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.dark-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-num {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.insight-card:hover .card-glow {
    opacity: 1;
}

.insight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.insight-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.highlight {
    color: var(--accent-blue);
    font-weight: 600;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.big-stat {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-highlight p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Solution Box */
.solution-box {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.solution-box h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.solution-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s;
}

.step:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.step strong {
    display: block;
    margin-bottom: 0.25rem;
}

.step p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

/* Chart Story */
.chart-story {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.chart-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chart-block.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.chart-block.reverse .chart-image {
    order: 2;
}

.chart-image {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.chart-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.chart-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chart-annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.chart-annotation .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.chart-annotation.top-right {
    top: -20px;
    right: 20px;
}

.chart-annotation.top-left {
    top: -20px;
    left: 20px;
}

.chart-annotation.left {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.chart-annotation.right {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.chart-desc h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.chart-desc p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.key-finding {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.key-finding span {
    color: var(--accent-gold);
    font-weight: 600;
    margin-right: 0.5rem;
}

/* Pipeline - Clean Professional Design */
.pipeline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.pipeline-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 180px;
    transition: all 0.3s ease;
}

.pipeline-step:hover {
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pipeline-step.final {
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.pipeline-step.final .step-number {
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
}

.step-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.pipeline-connector-line {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border-radius: 2px;
}

.pipeline-stage {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    min-width: 130px;
    transition: all 0.3s;
}

.pipeline-stage:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.pipeline-stage.highlight {
    border-color: var(--accent-red);
    box-shadow: var(--glow-red);
}

.stage-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.pipeline-stage h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pipeline-stage p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pipeline-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    position: relative;
}

.flow-line {
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: flow 1.5s linear infinite;
}

@keyframes flow {
    from {
        left: 0;
    }

    to {
        left: 100%;
    }
}

/* Analysis Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.chart-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.chart-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.chart-card.large {
    grid-column: span 2;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.analyzing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.analyzing.green {
    color: var(--accent-green);
}

.analyzing .dot {
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.chart-card img {
    width: 100%;
    display: block;
}

.chart-footer {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
}

/* Chart Explanation Cards */
.chart-card.with-explanation {
    display: flex;
    flex-direction: column;
}

.chart-card img {
    cursor: zoom-in;
    transition: transform 0.3s, box-shadow 0.3s;
}

.chart-card img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.2);
}

.chart-explanation {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05), rgba(139, 92, 246, 0.05));
    border-top: 1px solid var(--glass-border);
    flex: 1;
}

.chart-explanation h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.chart-explanation p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.35rem;
}

.chart-explanation p:last-child {
    margin-bottom: 0;
}

.chart-explanation strong {
    color: var(--accent-blue);
    font-weight: 600;
}

/* Image Lightbox Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    cursor: zoom-out;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal img {
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 212, 255, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
    will-change: transform;
}

.image-modal.active img {
    transform: scale(1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 212, 255, 0.2);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInDown 0.4s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.5);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.6), 0 0 40px rgba(229, 9, 20, 0.3);
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(229, 9, 20, 0.6), 0 0 40px rgba(229, 9, 20, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(229, 9, 20, 0.8), 0 0 60px rgba(229, 9, 20, 0.5);
    }
}

.modal-close:active {
    transform: rotate(90deg) scale(0.85);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.4);
    transition: all 0.1s ease-out;
}

/* Cluster Section */
.cluster-hero {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
}

.cluster-main-viz {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.cluster-annotations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

.annotation .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-blue);
}

.annotation .label {
    white-space: nowrap;
}

.a1 .dot {
    background: var(--accent-red);
}

.a2 .dot {
    background: var(--accent-blue);
}

.a3 .dot {
    background: var(--accent-purple);
}

.a4 .dot {
    background: var(--accent-gold);
}

.a5 .dot {
    background: var(--accent-green);
}

.charts-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.wordcloud-section {
    text-align: center;
    margin-bottom: 3rem;
}

.wordcloud-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.wordcloud-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.wordcloud-explanation {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.wordcloud-explanation h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
}

.wordcloud-explanation p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.wordcloud-explanation p:last-child {
    margin-bottom: 0;
}

.wordcloud-explanation strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.clusters-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.cluster-card {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.9), rgba(15, 15, 25, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--color);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: left;
    transition: all 0.3s;
}

.cluster-card:nth-child(4),
.cluster-card:nth-child(5) {
    grid-column: span 1;
}

.clusters-summary::after {
    content: '';
    grid-column: span 1;
}

.cluster-card:hover {
    border-color: var(--color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px color-mix(in srgb, var(--color) 15%, transparent);
}

.cluster-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', monospace;
}

.cluster-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: white;
}

.cluster-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Demo Section */
.demo-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.demo-search {
    margin-bottom: 2rem;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.search-input-wrapper:focus-within {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.2);
}

.search-icon {
    font-size: 1.25rem;
}

.search-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 0.75rem;
    outline: none;
}

.search-input-wrapper input::placeholder {
    color: var(--text-muted);
}

.search-input-wrapper button {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-input-wrapper button:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-red);
}

.quick-picks {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quick-picks>span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.quick-picks button {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-picks button:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.demo-results {
    min-height: 250px;
    max-height: none;
    overflow: visible;
}

.placeholder {
    text-align: center;
    padding: 3rem;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.placeholder p {
    color: var(--text-muted);
}

.result-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.result-query .label {
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-query h3 {
    font-size: 1.4rem;
    text-transform: capitalize;
    margin-top: 0.25rem;
}

.cluster-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.cluster-icon {
    font-size: 1.5rem;
}

.cluster-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cluster-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.result-item-detailed {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--accent-red);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s;
    opacity: 1 !important;
}

.result-item-detailed:hover {
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 1 !important;
}

.result-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.result-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.result-score {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-green);
}

.result-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.result-genres {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.genre-tag {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-blue);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.result-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.result-similarity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.sim-icon {
    font-size: 0.9rem;
}

.sim-text {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.demo-explanation {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.demo-explanation h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
}

.demo-explanation p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.demo-explanation p:last-child {
    margin-bottom: 0;
}

.demo-explanation strong {
    color: var(--accent-blue);
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.insight-big {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.insight-big:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.insight-big .insight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.insight-big h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--accent-blue);
}

.insight-big p {
    color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.final-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons a {
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-darker) 0%, #000 100%);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-blue), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 15px rgba(229, 9, 20, 0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.author-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-details strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.footer-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.tech-badge:hover {
    border-color: var(--accent-red);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 2rem 3rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .chart-block,
    .chart-block.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chart-block.reverse .chart-image {
        order: 0;
    }

    .clusters-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .nav-author .author-name {
        display: none;
    }

    .section-wrapper {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
        min-height: auto;
    }

    .hero-title .line {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .pipeline-visual {
        flex-direction: column;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
    }

    .chart-card.large {
        grid-column: span 1;
    }

    .clusters-summary {
        grid-template-columns: 1fr;
    }

    .charts-row {
        grid-template-columns: 1fr;
    }

    /* Demo Section Mobile Fixes */
    .demo-search {
        margin-bottom: 1.5rem;
    }

    .search-input-wrapper {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        border-radius: 16px !important;
        padding: 1rem !important;
        gap: 0.75rem !important;
        align-items: stretch !important;
    }

    .search-input-wrapper input {
        width: 100% !important;
        min-width: 0 !important;
        text-align: center;
        padding: 0.75rem !important;
        flex: none !important;
        box-sizing: border-box;
    }

    .search-input-wrapper button {
        width: 100% !important;
        min-width: 0 !important;
        padding: 1rem !important;
        flex: none !important;
        position: relative !important;
        box-sizing: border-box;
        border-radius: 12px !important;
    }

    .search-icon {
        display: none !important;
    }

    .quick-picks {
        justify-content: center;
    }

    .quick-picks>span {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .quick-picks button {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    /* Result cards mobile */
    .result-card {
        padding: 1rem;
    }

    .result-header {
        flex-direction: column;
        text-align: center;
    }

    /* Insights mobile */
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .insight-big {
        padding: 1.5rem;
    }

    /* Footer mobile */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-main {
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
        gap: 0.75rem;
    }

    .brand-text {
        text-align: center;
    }

    .brand-title {
        font-size: 1.1rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .author-badge {
        justify-content: center;
    }

    .footer-tech {
        gap: 0.4rem;
    }

    .tech-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }

    .footer-meta {
        font-size: 0.75rem;
    }

    /* CTA buttons mobile */
    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    /* Floating demo CTA mobile */
    .floating-demo-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-demo-cta a {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    /* Problem section mobile */
    .big-stat {
        font-size: 2.5rem;
    }

    .solution-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    /* Pipeline container mobile */
    .pipeline-container {
        flex-direction: column;
        align-items: stretch;
    }

    .pipeline-connector-line {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }

    /* Wordcloud section mobile */
    .wordcloud-section h3 {
        font-size: 1.25rem;
    }

    /* Scroll indicator hide on mobile */
    .scroll-indicator {
        display: none;
    }
}



/* ===== FLOATING DEMO CTA ===== */
.floating-demo-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s;
}

.floating-demo-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-demo-cta a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-red), #ff4444);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(229, 9, 20, 0.4);
    transition: all 0.3s;
}

.floating-demo-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(229, 9, 20, 0.5);
}

.demo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    border-radius: 50px;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: demoPulse 2s ease-out infinite;
}

@keyframes demoPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* ===== NOT FOUND MESSAGE ===== */
.not-found-container {
    text-align: center;
    padding: 2rem;
}

.not-found-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.not-found-container h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.not-found-container p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.not-found-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem !important;
}

.available-titles {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.available-titles h4 {
    font-size: 1rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.title-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.title-chip {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.title-chip:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.3);
}