/* Scale Match – Full Consistency with JamBuster UI */

.bg-studio {
    background-color: #0a0f1a;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(112, 64, 224, 0.15), transparent),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='2' cy='2' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 3D Phone Perspective */
.phone-perspective {
    perspective: 1500px;
}

.phone-body {
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
    box-shadow: 12px 12px 0px #1e1b4b, 25px 25px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-body:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.font-bebas {
    font-family: 'Bebas Neue', sans-serif;
}

.font-mono {
    font-family: 'Space Mono', monospace;
}

/* Scale Match Specific Glow */
.scalematch-glow {
    box-shadow: 0 0 50px rgba(112, 64, 224, 0.12), 12px 12px 0px #1e1b4b;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Screenshot Cards */
.screenshot-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.screenshot-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Entrance animation */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.screenshot-card {
    opacity: 0;
    animation: fadeSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.screenshot-card:nth-child(1) { animation-delay: 0.1s; }
.screenshot-card:nth-child(2) { animation-delay: 0.2s; }
.screenshot-card:nth-child(3) { animation-delay: 0.3s; }
.screenshot-card:nth-child(4) { animation-delay: 0.4s; }