:root {
    --gold-100: #FFF3C4;
    --gold-300: #FFDF73;
    --gold-500: #E6B800;
    --gold-700: #B8860B;
    --dark-bg: #0A0A0A;
    --dark-card: rgba(20, 20, 20, 0.7);
    --text-main: #E0E0E0;
    --text-muted: #9E9E9E;

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
.gold-text {
    background: linear-gradient(90deg, var(--gold-300) 0%, var(--gold-700) 100%);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.gold-icon {
    color: var(--gold-500);
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 2rem;
}

/* Buttons */
.primary-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-700) 100%);
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.primary-btn:hover {
    box-shadow: 0 0 20px rgba(230, 184, 0, 0.5);
    transform: translateY(-2px);
}

.secondary-btn {
    display: inline-block;
    background: transparent;
    color: var(--gold-300);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gold-500);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(230, 184, 0, 0.1);
    transform: translateY(-2px);
}

/* Glassmorphism card */
.glass-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 223, 115, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.3s background ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px border var(--gold-700);
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.brand-text {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand-logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--gold-300);
}

.nav-links .buy-btn {
    background-color: var(--gold-500);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold-500);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center right, #2a2000 0%, var(--dark-bg) 70%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    background-image: radial-gradient(var(--gold-500) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    padding-top: 80px;
    /* offset for navbar */
    padding-bottom: 50px;
}

.hero-content {
    text-align: left;
    max-width: 650px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--gold-300);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--gold-500);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.floating-horse {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 223, 115, 0.2);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Sections Common */
.section {
    padding: 100px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    color: var(--gold-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-text strong {
    color: var(--text-main);
    font-weight: 800;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-500);
}

.stat-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-card h4 {
    font-size: 1.2rem;
    color: var(--text-main);
}

.stat-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

.about-image .img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--gold-500);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
}

/* Video Section */
.video-container {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    padding: 10px;
    height: 300px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Bounty Section */
.bounty-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.bounty-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.tweet-embed {
    margin-bottom: 40px;
}

.tweet-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1DA1F2;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.tweet-link:hover {
    background: #0d8bd9;
    transform: scale(1.05);
}

.bounty-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.bounty-action {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 223, 115, 0.2);
    transition: all 0.3s;
}

.bounty-action:hover {
    background: rgba(255, 223, 115, 0.1);
    border-color: var(--gold-500);
}

.bounty-action i {
    font-size: 2rem;
    color: var(--gold-300);
    margin-bottom: 15px;
    display: block;
}

.bounty-action .action-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
}

.bounty-action .action-name {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bounty-note {
    background: rgba(255, 223, 115, 0.05);
    border-left: 4px solid var(--gold-500);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bounty-note p {
    font-size: 1rem;
    margin: 0;
}

/* CTA Section */
.cta-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

.cta-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 184, 0, 0.2), rgba(184, 134, 11, 0.1));
    border: 2px solid var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseGlow 3s infinite alternate;
}

.cta-badge i {
    font-size: 2.5rem;
}

.cta-tagline {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.6;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.cta-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 115, 0.15);
    position: relative;
    transition: all 0.3s;
}

.cta-step:hover {
    background: rgba(255, 223, 115, 0.05);
    border-color: var(--gold-500);
    transform: translateY(-5px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 15px;
}

.cta-step p {
    font-size: 1rem;
    color: var(--text-main);
    margin: 0;
}

.cta-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-main-btn:hover {
    box-shadow: 0 0 30px rgba(230, 184, 0, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.cta-micro {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer */
footer {
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 130px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-text {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 3px;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 184, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(230, 184, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 184, 0, 0);
    }
}

.hidden-onload {
    opacity: 0;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.5s forwards;
}

.fade-up {
    animation: fadeUp 1s ease 0.2s forwards;
}

.auto-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.auto-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 100px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .glow-circle {
        width: 280px;
        height: 280px;
    }

    .floating-horse {
        max-width: 320px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .bounty-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .cta-steps {
        flex-direction: column;
        gap: 15px;
    }

    .cta-main-btn {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .section {
        padding: 60px 5%;
    }

    .glass-card {
        padding: 20px;
    }

    /* Mobile Menu & Logo */
    .brand-logo {
        height: 70px;
    }

    .brand-text {
        font-size: 1.6rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 15px 0;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .glow-circle {
        width: 220px;
        height: 220px;
    }

    .floating-horse {
        max-width: 260px;
    }

    .tweet-link {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .cta-main-btn {
        font-size: 0.9rem;
        padding: 14px 22px;
    }
}