/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    /* Matches the PDF Deep Blue/Purple Gradient */
    background: linear-gradient(135deg, #0a0e29 0%, #2a0845 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Main Container - The "Card" */
.main-container {
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px; /* Limits width on Desktop so it doesn't look stretched */
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Typography */
.badge {
    background-color: #00e5ff;
    color: #0a0e29;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 15px 0;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.sub-headline {
    font-size: 1.1rem;
    color: #d1d1d1;
    /* REDUCED margin-bottom from 25px to 5px for a tighter fit */
    margin-bottom: 5px; 
}

/* Image Handling (FINAL TIGHT SPACING) */
.image-wrapper {
    /* Kept at 0 margin-top */
    margin: 0 0 0 0; 
    z-index: 10; 
    position: relative; 
}

.product-lock-icon {
    width: 220px; 
    height: auto;
    /* Margin below the lock is kept tight for the overlap effect */
    margin-bottom: -60px; 
}

/* Bullet Points (the violet box) */
.benefits-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    /* Padding-top is kept to prevent text from hiding under the lock */
    padding-top: 45px; 
    border-radius: 10px;
    text-align: left;
    margin-bottom: 30px;
    position: relative; 
    z-index: 5; 
}

.benefits-box ul {
    list-style: none;
}

.benefits-box li {
    margin-bottom: 12px;
    font-size: 1rem;
}

/* The Button - BLUE GRADIENT */
button {
    background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%); 
    border: none;
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(0, 114, 255, 0.4); 
    text-transform: uppercase;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.6); 
}

button:active {
    transform: scale(0.95);
}

.security-text {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.7rem;
    color: #555;
}

footer a {
    color: #777;
    text-decoration: none;
}