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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
}

.container {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.info {
    font-size: 1.2rem;
    color: #666;
    margin: 1rem 0;
}

.email-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.email-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-block;
    color: #333;
}

.social-links a:hover {
    transform: scale(1.2);
}

.social-links a[aria-label="TikTok"]:hover {
    color: #000000;
}

.social-links a[aria-label="Instagram"]:hover {
    color: #E4405F;
}

.social-links a[aria-label="Snapchat"]:hover {
    color: #FFFC00;
}

.social-links a[aria-label="GitHub"]:hover {
    color: #181717;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .info {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        font-size: 1.5rem;
    }
}

