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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
    width: 100vw;
    min-height: 100vh;
    background: #0d0d14;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #0d0d14;
}

.lotus-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image:
        radial-gradient(circle at center, transparent 40%, #0d0d14 100%),
        conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(147, 51, 234, 0.03) 45deg,
            transparent 90deg,
            rgba(199, 121, 208, 0.03) 135deg,
            transparent 180deg,
            rgba(147, 51, 234, 0.03) 225deg,
            transparent 270deg,
            rgba(199, 121, 208, 0.03) 315deg,
            transparent 360deg
        );
    border-radius: 50%;
    opacity: 0.4;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.discount-badge {
    /* Visuals */
    background: rgba(232, 121, 249, 0.15);
    border: 1px solid rgba(232, 121, 249, 0.6);
    color: #E879F9;
    box-shadow: 0 0 15px rgba(232, 121, 249, 0.15);
    backdrop-filter: blur(5px);

    /* Size & Text */
    padding: 1rem 3.5rem; /* Larger padding */
    font-size: 1.25rem;   /* Larger text */
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    
    /* Layout */
    margin-bottom: 2.5rem;
    
    /* THE SHAPE: Asymmetrical "Leaf Cut" / Cyber Cut */
    /* This creates sharp corners top-right and bottom-left, and cut corners elsewhere */
    border-radius: 24px 0 24px 0;
}

.title {
    font-size: clamp(2.5rem, 10vw, 7rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 0.9;
}

.title-line {
    display: block;
}

.subtitle {
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: #E879F9;
    letter-spacing: 0.1em;
}

.cta-button {
    margin-top: 3rem;
    padding: 1.2rem 4rem;
    background-color: transparent;
    border: 1px solid #E879F9;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #E879F9;
    color: #0d0d14;
    box-shadow: 0 0 30px rgba(232, 121, 249, 0.5);
}

footer {
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    font-weight: 400;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lotus-bg {
        width: 600px;
        height: 600px;
    }

    .title {
        letter-spacing: 0.03em;
    }

    .subtitle {
        letter-spacing: 0.3em;
        margin-bottom: 1rem;
    }
}
