:root {
    --ymuse-yellow: #f5d23d;
    --ymuse-black: #000000;
    --ymuse-dark: #1a1a1a;
}

.bg-ymuse-yellow {
    background-color: var(--ymuse-yellow);
}

.text-ymuse-yellow {
    color: var(--ymuse-yellow);
}

.glass {
    background: rgba(26, 26, 26, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.glass-nav {
    background: rgba(26, 26, 26, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.yellow-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--ymuse-yellow);
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.6;
    animation: pulse-dot 4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

.animated-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(245, 210, 61, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(245, 210, 61, 0.08) 0%, transparent 70%);
    animation: bg-pulse 15s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.yellow-gradient {
    background: linear-gradient(135deg, rgba(245, 210, 61, 0.15) 0%, transparent 70%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.glass-note {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    pointer-events: none;
    z-index: 1;
    color: rgba(245, 210, 61, 0.8);
    text-shadow: 0 0 10px rgba(245, 210, 61, 0.3);
}

@keyframes float-note {
    0% {
        transform: translateY(100%) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
    }
}

footer a.hover\:text-ymuse-yellow {
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

footer a.hover\:text-ymuse-yellow::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--ymuse-yellow);
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

footer a.hover\:text-ymuse-yellow:hover {
    color: var(--ymuse-yellow);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(245, 210, 61, 0.4);
}

footer a.hover\:text-ymuse-yellow:hover::after {
    width: 100%;
    box-shadow: 0 0 8px rgba(245, 210, 61, 0.6);
}

footer a.hover\:pl-1:hover {
    padding-left: 0 !important;
}

.footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

footer .max-w-6xl {
    padding-bottom: 3rem;
}

.object-contain {
    object-fit: contain;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#download img {
    max-width: 100%;
    max-height: 100%;
}

.team-card {
    cursor: pointer;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    z-index: 1;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(245, 210, 61, 0.1) 0%, transparent 70%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 210, 61, 0.2);
    background: rgba(26, 26, 26, 0.25);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(245, 210, 61, 0.4);
}

.team-card h3, .team-card p {
    transition: transform 0.3s ease, color 0.3s ease;
}

.team-card:hover h3 {
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(245, 210, 61, 0.5);
}

.team-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card {
    cursor: pointer;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(245, 210, 61, 0.1) 0%, transparent 70%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 210, 61, 0.2);
    background: rgba(26, 26, 26, 0.25);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(245, 210, 61, 0.4);
}

.feature-card h3, .feature-card p {
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover h3 {
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(245, 210, 61, 0.5);
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card .absolute {
    transition: background-color 0.4s ease;
}

.feature-card:hover .absolute {
    background-color: var(--ymuse-yellow);
    box-shadow: 0 0 15px rgba(245, 210, 61, 0.6);
}

.download-card {
    cursor: pointer;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    z-index: 1;
}

.download-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(245, 210, 61, 0.1) 0%, transparent 70%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.download-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 210, 61, 0.2);
    background: rgba(26, 26, 26, 0.25);
}

.download-card:hover::before {
    opacity: 1;
}

.download-card img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.download-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(245, 210, 61, 0.4));
}

.download-card .download-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.download-card:hover .download-btn {
    box-shadow: 0 0 20px rgba(245, 210, 61, 0.5);
    transform: translateY(-2px);
}

