@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #c5a059;
    /* Elegant Gold */
    --primary-glow: rgba(197, 160, 89, 0.4);
    --secondary: #0a1128;
    /* Deep Midnight Blue */
    --secondary-light: #1c2541;
    --accent: #fbfffe;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    background: radial-gradient(circle at top, var(--secondary-light) 0%, var(--secondary) 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 120px 0;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Updated Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #b38e47 100%);
    color: var(--secondary);
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px var(--primary-glow);
    filter: brightness(1.1);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: none;
}

.sticky-cta.visible {
    display: block;
    animation: bounceIn 0.5s ease-out;
}

/* Glass Cards Refined */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 17, 40, 0.8), rgba(10, 17, 40, 0.8)),
        url('assets/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.bonus-card {
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: 0.3s;
}

.bonus-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.price-tag {
    text-decoration: line-through;
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.badge-free {
    background: #00c853;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Keyframes */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }
}