* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #f0f0f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(30, 30, 60, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(60, 30, 60, 0.2) 0%, transparent 55%);
    overflow-x: hidden;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Instagram Icon */
.instagram-icon {
    position: fixed;
    top: 120px;
    right: 120px;
    z-index: 1000;
}

.instagram-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.instagram-icon a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    margin: 2rem 0;
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(100, 100, 255, 0.15),
                0 0 60px rgba(80, 0, 255, 0.2);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
}

.image-wrapper:hover {
    transform: scale(1.02) rotate(0.5deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8),
                0 0 0 2px rgba(100, 100, 255, 0.25),
                0 0 80px rgba(80, 0, 255, 0.3);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}
 

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .instagram-icon {
        top: 15px;
        right: 15px;
    }
    
    .instagram-icon a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}