/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
    color: #333;
    position: relative;
    overflow: hidden;
}

/* Floating background elements */
.floating-elements .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.floating-elements .circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 20s infinite linear;
}

.floating-elements .circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: float 25s infinite linear reverse;
}

.floating-elements .circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Main container */
.container {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

/* Icon */
.icon {
    font-size: 6rem;
    margin-bottom: 25px;
    color: #6a11cb;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Typography */
h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.subtext {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 40px;
    font-style: italic;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 1.8rem;
    color: #6a11cb;
    margin-bottom: 5px;
}

.feature span {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 600;
}

/* Buttons */
.actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(106, 17, 203, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(106, 17, 203, 0.4);
}

.btn.secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Counter */
.counter {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #718096;
    font-size: 0.9rem;
}

.counter i {
    color: #6a11cb;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .icon {
        font-size: 4.5rem;
    }
    
    .features {
        gap: 20px;
    }
    
    .actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}