body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    transition: background 1s ease;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 5s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 70%;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 40%;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 10%;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 90%;
    animation-duration: 5s;
}

.main-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.image-container {
    background: #fff;
    padding: -20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.icons a:hover {
    transform: translateY(-5px);
}

.icons img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}