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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 40%, rgba(20, 20, 40, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(10, 10, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 15, 0.6) 0%, transparent 100%),
        linear-gradient(180deg, #000000 0%, #050510 50%, #000000 100%);
    z-index: 0;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.message {
    font-size: 1.25rem;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact {
    margin-bottom: 2rem;
}

.contact p {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 0.5rem;
}

.email {
    color: #4a9eff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.email::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background: #4a9eff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.email:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

.email:hover::after {
    width: 100%;
}

.privacy-button-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-button:hover::before {
    opacity: 1;
}

.privacy-button:hover {
    color: #4a9eff;
    border-color: rgba(74, 158, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 158, 255, 0.2);
}

.privacy-button svg {
    position: relative;
    z-index: 1;
}

.privacy-button span {
    position: relative;
    z-index: 1;
}

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

.social-link {
    color: #666666;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #ffffff;
    background: rgba(74, 158, 255, 0.1);
    border-color: rgba(74, 158, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 158, 255, 0.2);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .message {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 140px;
    }
    
    .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.75rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .logo {
        width: 120px;
    }
    
    .email {
        font-size: 1rem;
    }
}