/* index.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle, #1a0b2e 0%, #05050a 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 850px;
    padding: 40px 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(191, 107, 255, 0.4); 
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-link {
    display: inline-block;
    margin-top: 20px;
    font-size: clamp(1.5rem, 6vw, 3.5rem); 
    font-weight: 900;
    color: #d899ff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(216, 153, 255, 0.8);
    transition: all 0.4s ease;
    animation: pulse 2s infinite ease-in-out;
}

.instagram-link:hover {
    color: #ffffff;
    text-shadow: 0 0 25px #d899ff, 0 0 50px #d899ff;
    transform: scale(1.05);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.02); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.4;
    text-transform: uppercase;
}