:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #ff0055;
    --accent-gradient: linear-gradient(135deg, #ff0055 0%, #ff00cc 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Prevent scrolling for a focused landing page */
    position: relative;
}

/* Background ambient glow */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 0, 85, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.container {
    width: 100%;
    max-width: 480px;
    /* Mobile-first limit */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

/* Header */
.header {
    margin-bottom: 10px;
}

.tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    background: rgba(255, 0, 85, 0.2);
    color: #ff5588;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 85, 0.3);
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0 5px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
}

/* Hero Image */
.image-container {
    width: 100%;
    aspect-ratio: 3/4;
    /* Vertical portrait ratio */
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 0, 85, 0.2);
    border-color: rgba(255, 0, 85, 0.4);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent);
}

/* CTA Section */
.cta-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.vip-button {
    width: 100%;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vip-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
}

.btn-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-subtext {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 300;
}

.shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.guarantee {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lock-icon {
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 400px) {
    h1 {
        font-size: 2.5rem;
    }
}