body {
    font-family: 'Inter', sans-serif;
    background-color: #000; 
    color: #f5f5f7;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    margin-top: 10rem;
}
h1 span {
    color: #57e2e5;
}
p {
    margin-bottom: 10rem;
}

.glass-effect {
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(24px) saturate(180%); 
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #1c1c1e;
}
::-webkit-scrollbar-thumb {
    background: #3a3a3c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5a5a5c;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.lightbox-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes liquid-click {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
    50% { transform: scale(0.95); box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.liquid-click-effect {
    animation: liquid-click 0.4s ease-out;
}