* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100vw;
    overflow: hidden;
}

.content {
    background: rgba(25, 25, 25, 0.95);
    padding: min(3rem, 5vh);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin: auto;
    max-width: 90%;
}

.instagram-handle {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.instagram-handle a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 0.5rem;
}

.instagram-handle a:hover {
    color: #E1306C;
}

.fa-instagram {
    color: #E1306C;
}

/* Circular Loader Animation */
.loader {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #E1306C;
    animation: spin 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }
    
    .footer {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
} 