@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #11111b;
    font-family: "Montserrat", sans-serif;
}

.cursor {
    width: 30px;
    height: 30px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}

.cursor::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.logo-container {
    position: relative;
    width: 400px;
    height: 400px;
    filter: drop-shadow(0 0 30px rgba(250, 179, 135, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

#animated-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px currentColor);
    transition: filter 0.3s ease;
}

#animated-logo path {
    fill: url(#gradient1);
    filter: drop-shadow(0 0 10px rgba(249, 226, 175, 0.8));
    transition: all 0.5s ease;
}

.particle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    animation: particle-float 3s ease-out;
}

@keyframes particle-float {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(0);
    }
    50% {
        opacity: 0.8;
        transform: translate(var(--tx), var(--ty)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(var(--tx) * 2), calc(var(--ty) * 2)) scale(0.5);
    }
}

.particle::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fff, transparent);
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.logo-container:hover #animated-logo {
    filter: drop-shadow(0 0 40px currentColor) brightness(1.2);
}

.logo-container:hover #animated-logo path {
    fill: url(#gradient2);
}

.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    width: 50vw;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    z-index: 99;
}

.logo {
    padding-right: 5vw;
    padding-left: 5vw;
}

.text {
    color: #bac2de;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.gallery {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.gallery-element {
    width: 64px;
    height: 256px;
    background: #585b70;
    border-radius: 32px;
    flex: auto;
    text-align: center;
    color: #bac2de;
    text-shadow: 1px 1px black;
    display: flex;
    flex-direction: column;
    justify-content: center;
}