* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="white" opacity="0.8"/></svg>'), auto;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px;
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-container {
    max-width: 400px;
    width: 90%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.socials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease;
    text-decoration: none;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.social-link:hover {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.link-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 40px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 16px;
    backdrop-filter: blur(10px);
    min-width: 200px;
    text-align: center;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 20px;
}

.music-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: block;
}

@media (max-width: 768px) {
    .container {
        gap: 30px;
        padding: 20px;
    }

    .image-container {
        max-width: 300px;
    }

    .social-link {
        font-size: 28px;
    }

    .socials {
        gap: 20px;
    }
}