@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --primary-gold: #fbbf24;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.03);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    margin: 0;
    scroll-behavior: smooth;
}

/* Big Section Titles */
.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

/* Premium Cards */
.reward-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 3rem;
    transition: all 0.4s ease;
}

.reward-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    background: rgba(251, 191, 36, 0.02);
}

/* Feature Icon Glow */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Buttons */
.btn-gold {
    background: var(--primary-gold);
    color: black;
    padding: 1.5rem 3rem;
    border-radius: 1.5rem;
    font-weight: 900;
    display: inline-block;
    transition: 0.3s;
}

.btn-gold:hover {
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
    transform: scale(1.05);
}

/* Live Streaming Indicator */
.live-pulse {
    width: 12px;
    height: 12px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}



/* Founder Section Styles */
.founder-card {
    background: linear-gradient(145deg, #111, #000);
    border: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
    overflow: hidden;
}

.founder-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(to left, rgba(251, 191, 36, 0.05), transparent);
    z-index: 0;
}

.social-link {
    transition: all 0.3s ease;
    filter: grayscale(1);
}

.social-link:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}