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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: #040720;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #040720;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease-out;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #040720;
    border-radius: 50%;
}

h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: #e8e8e8;
    color: #040720;
    border-color: #e8e8e8;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.footer {
    position: absolute;
    bottom: 40px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

@keyframes fadeInDown {
    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);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.shake-icon {
    animation: shake 0.5s ease-in-out;
}

/* Responsive styles */
@media (max-width: 768px) {
    .badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 40px;
    }

    h1 {
        margin-bottom: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
        margin-bottom: 60px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .footer {
        font-size: 13px;
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .badge {
        font-size: 12px;
        padding: 7px 14px;
        margin-bottom: 30px;
    }

    h1 {
        margin-bottom: 30px;
    }

    .cta-buttons {
        margin-bottom: 50px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: unset;
    }

    .footer {
        font-size: 12px;
        bottom: 20px;
    }
}
