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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.container {
    padding: 20px;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.loader {
    margin: 30px auto;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

p {
    font-size: 1.2em;
    margin: 20px 0;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

.social {
    margin-top: 40px;
}

.social a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.1em;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social a:hover {
    background: white;
    color: #764ba2;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
