/* Studio Showcase Marquee */
.showcase-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.5) 50%, rgba(20,20,20,0) 100%);
    overflow: hidden;
    margin-bottom: 4rem;
}

.marquee-container {
    display: flex;
    width: fit-content;
    animation: marquee 40s linear infinite;
}

/* Marketing landing page requirement: "Included Studios" should not be clickable/linked */
.marquee-container .showcase-card {
    pointer-events: none;
}

.marquee-container:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.showcase-card {
    cursor: default; /* Not clickable */
    background: #ffffff; /* White background for light mode */
    border: 1px solid #e2e8f0; /* Slate-200 */
    border-radius: 1rem; /* Rounded corners for square */
    padding: 2rem;
    width: 200px; /* Fixed width */
    height: 200px; /* Fixed height - same as width for square */
    margin-right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.dark .showcase-card {
    background: #1e293b; /* Slate-800 for dark mode */
    border-color: #334155; /* Slate-700 */
    box-shadow: none;
}

.showcase-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #ec4899; /* Pink-500 */
    box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.3), 0 8px 10px -6px rgba(236, 72, 153, 0.2);
    /* cursor: pointer;  <-- Removed to enforce default cursor */
}

.dark .showcase-card:hover {
    box-shadow: 0 10px 25px -5px rgba(236, 72, 153, 0.2), 0 8px 10px -6px rgba(236, 72, 153, 0.1);
}

.showcase-icon {
    font-size: 2.5rem;
    background: #fce7f3; /* Pink-100 */
    color: #ec4899; /* Pink-500 */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Circular icon container */
    flex-shrink: 0;
}

.dark .showcase-icon {
    background: rgba(236, 72, 153, 0.2); /* Pink-500/20 */
    color: #fbcfe8; /* Pink-200 */
}

.showcase-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.showcase-info h3 {
    font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    font-size: 0.9rem;
    margin: 0;
    color: #0f172a; /* Slate-900 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.dark .showcase-info h3 {
    color: #ffffff;
}

.showcase-info p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    margin: 0;
    color: #475569; /* Slate-600 */
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .showcase-info p {
    color: #94a3b8; /* Slate-400 */
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.55), rgba(236, 72, 153, 0.35));
    backdrop-filter: blur(2px);
    border-radius: 1rem; /* Match card border radius */
}

.coming-soon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
