* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.title {
    font-size: clamp(2rem, 8vw, 5rem);
    color: white;
    text-align: center;
    z-index: 10;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 80%;
    line-height: 1.2;
    pointer-events: none;
}

.photos-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.photo {
    position: absolute;
    width: clamp(120px, 15vw, 200px);
    height: clamp(120px, 15vw, 200px);
    cursor: pointer;
    opacity: 0;
    border-radius: 50%;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.photo:hover img {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.photo .emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.85rem;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.75);
    padding: 6px 10px;
    border-radius: 8px;
    max-width: 85%;
    text-align: center;
    line-height: 1.3;
    z-index: 10;
}

.photo:hover {
    z-index: 5;
}

.photo:hover .emoji {
    opacity: 1;
}

.photo-1 {
    top: 10%;
    left: calc(50% - clamp(60px, 7.5vw, 100px));
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.1s;
}

.photo-2 {
    top: 25%;
    right: 15%;
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.2s;
}

.photo-3 {
    top: calc(50% - clamp(60px, 7.5vw, 100px));
    right: 5%;
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.3s;
}

.photo-4 {
    bottom: 25%;
    right: 15%;
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.4s;
}

.photo-5 {
    bottom: 10%;
    left: calc(50% - clamp(60px, 7.5vw, 100px));
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.5s;
}

.photo-6 {
    bottom: 25%;
    left: 15%;
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.6s;
}

.photo-7 {
    top: calc(50% - clamp(60px, 7.5vw, 100px));
    left: 5%;
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.7s;
}

.photo-8 {
    top: 25%;
    left: 15%;
    animation: slideIn 0.5s ease forwards;
    animation-delay: 0.8s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .container {
        min-height: 120vh;
    }

    .photos-circle {
        height: 120vh;
    }

    .title {
        font-size: clamp(1.2rem, 5vw, 2rem);
        padding: 0 10px;
        max-width: 60%;
    }

    .photo {
        width: 100px;
        height: 100px;
    }

    .photo .emoji {
        font-size: 0.65rem;
        padding: 4px 6px;
        max-width: 120px;
    }

    .photo-1 {
        top: 2%;
        left: calc(50% - 50px);
    }

    .photo-2 {
        top: 15%;
        right: 5%;
    }

    .photo-3 {
        top: 38%;
        right: 2%;
    }

    .photo-4 {
        top: 61%;
        right: 5%;
    }

    .photo-5 {
        bottom: 2%;
        left: calc(50% - 50px);
    }

    .photo-6 {
        top: 61%;
        left: 5%;
    }

    .photo-7 {
        top: 38%;
        left: 2%;
    }

    .photo-8 {
        top: 15%;
        left: 5%;
    }
}
