:root {
    --bg-dark: #0a0a1a;
    --bg-acc-1: #1a1a2e;
    --primary-purple: #6a0dad;
    --secondary-purple: #9d4edd;
    --gold-start: #FFD700;
    --gold-end: #FFA500;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-purple), transparent);
    top: -200px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-purple), transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-start), transparent);
    top: 40%;
    left: 60%;
    opacity: 0.15;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 50px);
    }
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    width: 100%;
    z-index: 10;
}

.logo-container {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.top-badge {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: var(--spacing-lg) 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.offer-pill {
    background: linear-gradient(90deg, #ff0055, #ff00aa);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}

.main-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(to right, #ffd700, #ffca00, #fffa00, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.sub-headline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #e0e0e0;
    font-weight: 300;
    display: block;
    margin-top: 0.5rem;
}

.offer-description {
    font-size: 1.1rem;
    color: #b0b0cc;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Coupon Card */
.coupon-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 450px;
    width: 100%;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.3);
    border-color: var(--secondary-purple);
}

.coupon-content {
    flex: 1;
    text-align: left;
}

.coupon-label {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    letter-spacing: 1.5px;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.code-display {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    position: relative;
}

.hidden-code {
    filter: blur(8px);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.coupon-card.revealed .hidden-code {
    filter: blur(0);
    opacity: 1;
    color: var(--gold-start);
}

.reveal-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-family: var(--font-main);
    color: var(--text-light);
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 5px;
    border-radius: 4px;
}

.coupon-card.revealed .reveal-text {
    opacity: 0;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--gold-start);
}

/* CTA Button */
.cta-button {
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: #1a0529;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.btn-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-btn 3s infinite;
}

@keyframes shine-btn {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Trust Indicators & Countdown */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #ccc;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: #2ecc71;
}

.countdown-container {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.countdown {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-purple);
    font-variant-numeric: tabular-nums;
}

/* Visuals - Coin Stack Animation */
.hero-visual {
    margin-top: 2rem;
    position: relative;
    height: 150px;
    width: 200px;
    perspective: 800px;
}

.coin-stack {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate-stack 10s infinite linear;
}

.coin {

    position: absolute;
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

.coin-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0px);
    animation: float-coin-1 3s infinite ease-in-out;
}

.coin-2 {
    top: 50%;
    left: 20%;
    transform: translate(-50%, -40%) translateZ(-40px) scale(0.9);
    animation: float-coin-2 3.5s infinite ease-in-out reverse;
    opacity: 0.8;
}

.coin-3 {
    top: 50%;
    left: 80%;
    transform: translate(-50%, -60%) translateZ(-80px) scale(0.8);
    animation: float-coin-3 4s infinite ease-in-out 1s;
    opacity: 0.6;
}

@keyframes float-coin-1 {

    0%,
    100% {
        transform: translate(-50%, -50%) translateZ(0px);
    }

    50% {
        transform: translate(-50%, -65%) translateZ(0px);
    }
}

@keyframes float-coin-2 {

    0%,
    100% {
        transform: translate(-50%, -40%) translateZ(-40px) scale(0.9);
    }

    50% {
        transform: translate(-50%, -55%) translateZ(-40px) scale(0.9);
    }
}

@keyframes float-coin-3 {

    0%,
    100% {
        transform: translate(-50%, -60%) translateZ(-80px) scale(0.8);
    }

    50% {
        transform: translate(-50%, -75%) translateZ(-80px) scale(0.8);
    }
}

@keyframes rotate-stack {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* Footer */
.site-footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    margin-top: auto;
}

/* Responsiveness */
@media (min-width: 900px) {
    .hero-section {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-content {
        align-items: flex-start;
        max-width: 60%;
    }

    .hero-visual {
        width: 400px;
        height: 400px;
        margin-top: 0;
    }

    .coin {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
}