/* ============================================
   PROJECT PAGE — Premium Case Study Styles
   ============================================ */

/* ============================================
   1. PROJECT HERO
   ============================================ */
.project-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.project-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.project-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

.project-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.3) 0%,
        rgba(10, 10, 15, 0.5) 40%,
        rgba(10, 10, 15, 0.92) 85%,
        rgba(10, 10, 15, 1) 100%
    );
}

.project-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    padding-top: 160px;
}

.project-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
    padding: 8px 18px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.03);
}

.project-hero__back:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: var(--color-accent-glow);
}

.project-hero__back svg {
    transition: transform var(--transition-base);
}

.project-hero__back:hover svg {
    transform: translateX(4px);
}

.project-hero__tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.project-hero__content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.project-hero__tagline {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 36px;
}

.project-hero__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-chip {
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.meta-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Scroll indicator */
.project-hero__scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
    animation: scrollLinePulse 2s ease-in-out infinite;
}

@keyframes scrollLinePulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.3; height: 40px; }
}

/* ============================================
   2. ABOUT THE PROJECT
   ============================================ */
.project-about {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.project-about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.project-about__text h2 {
    margin-bottom: 24px;
}

.project-about__text p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.project-about__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.detail-card:hover {
    border-color: var(--color-border-hover);
    transform: translateX(-4px);
}

.detail-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-glow);
    border-radius: var(--radius-sm);
}

.detail-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text-primary);
}

.detail-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   3. THE CHALLENGE
   ============================================ */
.project-challenge {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.project-challenge::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.04), transparent 70%);
    pointer-events: none;
}

.project-challenge__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.project-challenge__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-glow);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: var(--radius-lg);
    color: var(--color-accent);
}

.project-challenge__content h2 {
    margin-bottom: 24px;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.project-challenge__content p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ============================================
   4. THE SOLUTION
   ============================================ */
.project-solution {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    padding: 40px 32px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-slow);
}

.solution-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(108, 92, 231, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition-base);
}

.solution-card:hover .solution-number {
    color: rgba(108, 92, 231, 0.2);
}

.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.solution-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* ============================================
   5. PORTFOLIO SHOWCASE — 3D Monitor Mockup
   ============================================ */
.portfolio-showcase {
    padding: 120px 0 140px;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.portfolio-showcase::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- 3D Scene Container ---- */
.showcase-scene {
    perspective: 1800px;
    perspective-origin: 50% 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

/* ---- Monitor Wrapper (3D tilt) ---- */
.monitor-wrapper {
    transform: rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    width: 100%;
    max-width: 920px;
}

.monitor-wrapper:hover {
    transform: rotateY(-3deg) rotateX(2deg) scale(1.02);
}

/* ---- Monitor Frame ---- */
.monitor-frame {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 50%, #0f0f1e 100%);
    border-radius: 16px;
    padding: 14px 14px 0 14px;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.65),
        0 20px 60px -10px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
}

/* Top bezel camera dot */
.monitor-frame::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.04) 100%);
    box-shadow: 0 0 6px rgba(108, 92, 231, 0.2);
    z-index: 5;
}

/* ---- Screen Area ---- */
.monitor-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

/* Glass reflection overlay */
.monitor-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.01) 75%,
        rgba(255, 255, 255, 0.04) 100%
    );
    pointer-events: none;
    z-index: 3;
    border-radius: 4px 4px 0 0;
}

/* ---- Video Container ---- */
.showcase-video-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.showcase-video-container video,
.showcase-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
}

/* Placeholder state (before real video) */
.showcase-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a14 0%, #121228 40%, #0d0d1e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

/* Animated grid lines in placeholder */
.showcase-video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: showcaseGridMove 20s linear infinite;
}

@keyframes showcaseGridMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.showcase-video-placeholder .play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.12);
    border: 2px solid rgba(108, 92, 231, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.showcase-video-placeholder .play-icon svg {
    color: var(--color-accent);
    margin-right: -2px;
}

.showcase-video-placeholder:hover .play-icon {
    background: rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.45);
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(108, 92, 231, 0.15);
}

.showcase-video-placeholder .placeholder-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* ---- Monitor Stand ---- */
.monitor-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
}

.monitor-stand__neck {
    width: 80px;
    height: 44px;
    background: linear-gradient(180deg, #1a1a2e 0%, #14142a 100%);
    position: relative;
    z-index: 1;
}

.monitor-stand__neck::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
}

.monitor-stand__base {
    width: 200px;
    height: 14px;
    background: linear-gradient(180deg, #1a1a2e 0%, #111126 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.25);
    position: relative;
}

.monitor-stand__base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* ---- Ambient Glow under monitor ---- */
.showcase-ambient-glow {
    width: 70%;
    height: 120px;
    margin: -40px auto 0;
    background: radial-gradient(ellipse at center, rgba(108, 92, 231, 0.08), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

/* ---- Entrance Animation ---- */
.portfolio-showcase .showcase-scene {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
                transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-showcase.revealed .showcase-scene,
.portfolio-showcase .showcase-scene.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   5b. RESULTS (Legacy — used by Glow & Glamour)
   ============================================ */
.project-results {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.result-card {
    padding: 36px 28px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.result-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.result-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-glow);
    border: 1px solid rgba(108, 92, 231, 0.15);
    border-radius: 50%;
    color: var(--color-accent);
    transition: all var(--transition-base);
}

.result-card:hover .result-icon {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
    transform: scale(1.08);
}

.result-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.result-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.results-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 48px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
}

.result-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-stat__number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
}

.result-stat__suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.result-stat__label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.result-stat__divider {
    width: 1px;
    height: 50px;
    background: var(--color-border);
}

/* ============================================
   6. GALLERY
   ============================================ */
.project-gallery {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.gallery-item--wide {
    grid-column: 1 / -1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.gallery-item:not(.gallery-item--wide) img {
    height: 320px;
}

.gallery-item--wide img {
    height: 420px;
}

.gallery-item:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.85) 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 24px;
    left: 24px;
    background: none;
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1;
}

.lightbox__close:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-accent-glow);
}

.lightbox__img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform var(--transition-base);
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

/* ============================================
   TESTIMONIAL QUOTE
   ============================================ */
.project-quote {
    padding: 100px 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.project-quote::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.05), transparent 70%);
    pointer-events: none;
}

.project-quote__inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.project-quote__mark {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.5;
    color: var(--color-accent);
    opacity: 0.2;
    margin-bottom: 20px;
}

.project-quote__inner blockquote {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--color-text-primary);
    font-weight: 400;
    margin-bottom: 36px;
    font-style: italic;
}

.project-quote__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.project-quote__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    font-weight: 800;
    font-size: 1.1rem;
}

.project-quote__author strong {
    display: block;
    color: var(--color-text-primary);
    font-size: 1rem;
}

.project-quote__author span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   7. CTA
   ============================================ */
.project-cta {
    padding: 120px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.project-cta__glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.06), transparent 60%);
    pointer-events: none;
}

.project-cta__content {
    text-align: center;
    position: relative;
}

.project-cta__content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.project-cta__content > p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    margin-inline: auto;
}

.project-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .project-about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .results-stats {
        flex-direction: column;
        gap: 32px;
        padding: 36px;
    }

    .result-stat__divider {
        width: 60px;
        height: 1px;
    }

    /* Showcase: flatten the 3D angle on tablet */
    .monitor-wrapper {
        transform: rotateY(-4deg) rotateX(2deg);
        max-width: 700px;
    }

    .monitor-wrapper:hover {
        transform: rotateY(-2deg) rotateX(1deg) scale(1.01);
    }

    .portfolio-showcase {
        padding: 80px 0 100px;
    }
}

@media (max-width: 768px) {
    .project-hero__content {
        padding-bottom: 60px;
        padding-top: 120px;
    }

    .project-hero__content h1 {
        font-size: 2.5rem;
    }

    .project-hero__tagline {
        font-size: 1.05rem;
    }

    .project-hero__meta {
        gap: 10px;
    }

    .meta-chip {
        padding: 10px 16px;
    }

    .project-challenge__inner {
        flex-direction: column;
        gap: 24px;
    }

    .project-challenge__icon {
        width: 60px;
        height: 60px;
    }

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

    .gallery-item:not(.gallery-item--wide) img,
    .gallery-item--wide img {
        height: 240px;
    }

    .project-quote__inner blockquote {
        font-size: 1.1rem;
    }

    .project-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Showcase: nearly flat on mobile */
    .monitor-wrapper {
        transform: rotateY(-2deg) rotateX(1deg);
        max-width: 100%;
    }

    .monitor-wrapper:hover {
        transform: rotateY(0) rotateX(0) scale(1.01);
    }

    .monitor-frame {
        border-radius: 10px;
        padding: 10px 10px 0 10px;
    }

    .monitor-stand__neck {
        width: 60px;
        height: 30px;
    }

    .monitor-stand__base {
        width: 140px;
        height: 10px;
    }

    .showcase-video-placeholder .play-icon {
        width: 52px;
        height: 52px;
    }

    .showcase-video-placeholder .play-icon svg {
        width: 20px;
        height: 20px;
    }

    .showcase-video-placeholder .placeholder-text {
        font-size: 0.7rem;
    }

    .portfolio-showcase {
        padding: 60px 0 80px;
    }

    .showcase-scene {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .project-hero__content h1 {
        font-size: 2rem;
    }

    .monitor-frame {
        border-radius: 8px;
        padding: 8px 8px 0 8px;
    }

    .monitor-frame::before {
        width: 4px;
        height: 4px;
        top: 4px;
    }

    .result-stat__number {
        font-size: 2.2rem;
    }
}

