body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/background.webp') no-repeat center center fixed;
    background-size: cover;
}

.btn-group-vertical {
    width: 280px;
}

.btn-group-vertical button {
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    height: 50px;
    margin-bottom: 15px;
}

.btn-group-vertical button:hover {
    background-color: #fff !important;
}

.banner {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 60px;
    text-align: center;
    max-width: 800px;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #caa9ff;
    text-shadow: 0 0 8px rgba(202, 169, 255, 0.6);
}

.banner p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #e0d4ff;
}

.magic-icons {
    margin-top: 10px;
    font-size: 2rem;
}

.magic-icons span {
    margin: 0 10px;
    animation: pulse 2s infinite ease-in-out;
}

.banner .cta-button {
    margin-top: 25px;
    padding: 12px 30px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(to right, #7c4dff, #651fff);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.6);
    text-decoration: none;
}

.banner .cta-button:hover {
    background: linear-gradient(to right, #9575cd, #7e57c2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}