body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #ffdee9 0%, #b5fffc 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.main-image {
    max-width: 80%;
    max-height: 80vh;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(160, 100, 160, 0.4);
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

.main-image:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(160, 100, 160, 0.6);
}

@media (max-width: 768px) {
    .main-image {
        max-width: 90%;
        max-height: 60vh;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(160, 100, 160, 0.4);
    }
}