@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&display=swap');

body {
    background: linear-gradient(to right, #E91E63, #9C27B0, #2196F3, #00BCD4, #8BC34A);
    background-attachment: fixed;
    position: relative;
    color: white;
    font-family: 'Fredoka', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.primary-btn,
.secondary-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: scale(1.05);
}

.primary-btn:active,
.secondary-btn:active {
    transform: scale(0.95);
}

.video-item {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.page-content {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#video-popup {
    transition: opacity 0.3s ease;
}

.modal-content {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

#video-popup.hidden .modal-content {
    transform: scale(0.9);
    opacity: 0;
}

.about-hero-title {
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.lucide {
    stroke-width: 2.5;
}