* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: "Arial", sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    padding: 2rem;
    z-index: 10;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.7);
    letter-spacing: 2px;
}

.image-container {
    margin: 2rem 0;
    position: relative;
    transition: transform 0.3s ease;
    display: inline-block;
}

.image-container:hover {
    transform: scale(1.05);
}

.image-container img {
    width: 400px;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 107, 107, 0.6);
    border: 3px solid #ff6b6b;
    transition: all 0.4s ease;
    cursor: pointer;
    object-fit: cover;
}

.image-container:hover img {
    box-shadow: 0 0 35px rgba(255, 107, 107, 0.8);
}

.click-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #aaa;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.info-box {
    background: rgba(40, 40, 40, 0.8);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
    border: 1px solid #ff6b6b;
}

.info-box h2 {
    color: #4ecdc4;
    margin-bottom: 1rem;
}

.info-box p {
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 0.8rem;
}

.decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 107, 107, 0.7);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0.8;
    }
}

.footer {
    margin-top: 2rem;
    color: #777;
    font-size: 0.9rem;
}