:root {
    --primary: #FFD700; /* Vibrant Gold */
    --primary-dark: #B8860B;
    --secondary: #1E3A8A; /* Royal Blue */
    --accent: #10B981; /* Success Green */
    --bg-dark: #020617; /* Deepest Navy */
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-white: #F8FAFC;
    --text-muted: #94A3B8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #B8860B 100%);
    --navy-gradient: linear-gradient(135deg, #1E1B4B 0%, #020617 100%);
    --shadow-gold: 0 10px 40px -10px rgba(255, 215, 0, 0.3);
    --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px 140px;
    position: relative;
    z-index: 10;
}

/* --- LOGO SECTION --- */
.logo-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 30px;
    background: var(--gold-gradient);
    border-radius: 35% 65% 60% 40% / 40% 45% 55% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.5);
    animation: morph 8s ease-in-out infinite;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.logo-container::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: inherit;
    z-index: -1;
    animation: pulse-ring 3s linear infinite;
}

@keyframes morph {
    0% { border-radius: 35% 65% 60% 40% / 40% 45% 55% 60%; }
    50% { border-radius: 50% 50% 40% 60% / 55% 35% 65% 45%; }
    100% { border-radius: 35% 65% 60% 40% / 40% 45% 55% 60%; }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.logo-text {
    color: #1E1B4B;
    font-size: 28px;
    font-weight: 950;
    line-height: 0.9;
    text-align: center;
    letter-spacing: -1px;
}

/* --- TYPOGRAPHY --- */
h1.title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    margin-bottom: 5px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.headline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CARDS & FEATURES --- */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 35px;
    padding: 35px 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-deep);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid transparent;
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- OFFERS --- */
.offer-box {
    border: 2px dashed rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.03);
    border-radius: 25px;
    padding: 25px;
    margin-top: 20px;
}

.offer-title {
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* --- BUTTONS --- */
.btn-premium {
    width: 100%;
    padding: 22px;
    background: var(--gold-gradient);
    color: #020617;
    border: none;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px -5px rgba(255, 215, 0, 0.4);
}

/* --- FIXED FOOTER --- */
.footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
}

.footer-btn {
    max-width: 560px;
    margin: 0 auto;
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 5px 40px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2); }
}

.trust-msg {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 40px;
    font-weight: 500;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 480px) {
    h1.title { font-size: 2.8rem; }
    .features-list { grid-template-columns: 1fr; }
    .logo-container { width: 120px; height: 120px; }
}
