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

body {
    font-family: 'Nunito', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1521911494023-701af6c9579c?q=80&w=2737&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    overflow: hidden;
}

.container {
    text-align: center;
    color: white;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    animation: fadeIn 1.5s ease-in-out;
}

.subtitle {
    font-size: 1.4rem;
    margin-top: 10px;
    animation: fadeIn 2s ease-in-out;
}

.icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: 0.3s;
    animation: fadeInUp 1s ease-in-out;
}

.icon:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.icon a {
    color: white;
    font-size: 2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

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

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

@media (max-width: 600px) {
    .container { max-width: 90%; padding: 20px; }
    h1 { font-size: 2.5rem; }
    .subtitle { font-size: 1.2rem; }
    .icon { width: 45px; height: 45px; }
    .icon a { font-size: 1.5rem; }
}