/* Custom Design Tokens */
:root {
    --mint: #00c49a;
    --dark: #0a2d2f;
    --gold: #f8e16c;
}

/* Glassmorphism Cards */
.content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.content-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 196, 154, 0.2);
    transform: translateY(-5px);
}

/* Lightbox Animation */
#lightbox.hidden {
    display: none;
}

#lightbox-img {
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Nav Bubble Hover Physics */
.nav-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar (British Minimalism) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: #1a4a4d;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--mint);
}

/* Circular Text Animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin 12s linear infinite;
}

.pause {
    animation-play-state: paused;
}

/* Base Styles */
:root {
    --mint: #00c49a;
    --dark: #0a2d2f;
}

.content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}