* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background: #0a1929;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.particle-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #0a1929;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2.5rem;
    max-width: 550px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    animation: bounce 3s infinite ease-in-out, logoGlow 4s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.5));
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-8px);
    }
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 8px rgba(0, 204, 255, 0.4));
    }
    50% { 
        filter: drop-shadow(0 0 12px rgba(0, 204, 255, 0.6));
    }
}

.title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: titleFadeIn 1.2s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #b0bec5;
    line-height: 1.5;
    max-width: 550px;
    padding: 0 0.5rem;
    animation: subtitleFadeIn 1.2s ease-out 0.3s both;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icons-wrapper {
    width: 100%;
    margin-top: -20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: socialsFadeIn 1.2s ease-out 0.6s both;
}

@keyframes socialsFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.social-link {
    text-decoration: none;
    display: inline-block;
}

.social-icon {
    font-size: 1.8rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.instagram { 
    color: #E1306C; 
    border: 1px solid rgba(225, 48, 108, 0.3);
    background: rgba(225, 48, 108, 0.1); 
}

.twitter { 
    color: #1DA1F2; 
    border: 1px solid rgba(29, 161, 242, 0.3);
    background: rgba(29, 161, 242, 0.1); 
}

.tiktok { 
    color: #69C9D0; 
    border: 1px solid rgba(105, 201, 208, 0.3);
    background: rgba(105, 201, 208, 0.1); 
}

.youtube { 
    color: #FF0000; 
    border: 1px solid rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1); 
}

.instagram:hover { 
    transform: translateY(-4px);
    background: rgba(225, 48, 108, 0.2); 
    box-shadow: 0 6px 12px rgba(225, 48, 108, 0.3);
}

.twitter:hover { 
    transform: translateY(-4px);
    background: rgba(29, 161, 242, 0.2); 
    box-shadow: 0 6px 12px rgba(29, 161, 242, 0.3);
}

.tiktok:hover { 
    transform: translateY(-4px);
    background: rgba(105, 201, 208, 0.2); 
    box-shadow: 0 6px 12px rgba(105, 201, 208, 0.3);
}

.youtube:hover { 
    transform: translateY(-4px); 
    background: rgba(255, 0, 0, 0.2); 
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .content {
        padding: 2rem;
        margin: 1rem;
        max-width: 90%;
    }
    
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .social-icons-wrapper {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .socials {
        gap: 1.2rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .logo {
        width: 90px;
        height: 90px;
    }
}