body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #0f0f1a; /* Темный фон */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.emoji {
    font-size: 100px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px #a855f7);
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

.title {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.domain-name {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    background-color: #a855f7;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn:hover {
    background-color: #9333ea;
    transform: scale(1.05);
}

/* Анимация парения */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Эффект при нажатии */
.pulse {
    animation: pulse-animation 0.5s ease-in-out;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
