:root {
    --gold-primary: #FFD700;
    --gold-secondary: #B8860B;
    --gold-accent: #DAA520;
    --gold-dark: #8B7355;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.luxury-font {
    font-family: 'Playfair Display', serif;
}

.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(184, 134, 11, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s;
}

.luxury-card:hover::before {
    left: 100%;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--gold-primary);
}

.luxury-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.luxury-btn:hover::before {
    left: 100%;
}

.luxury-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-effect {
    overflow: hidden;
    border-right: 2px solid var(--gold-primary);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--gold-primary);
    }
}

.glow-effect {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.floating-icon {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.progress-bar {
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 2px;
    transition: width 2s ease-out;
}

.hero-bg {
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-padding {
    padding: 8rem 0;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}

.ecosystem-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-primary);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.ecosystem-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.blockchain-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.network-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.network-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

@keyframes dataFlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

.luxury-section {
    position: relative;
    z-index: 2;
}

.geometric-shape {
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.1);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.quantum-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: quantumFloat 8s ease-in-out infinite;
}

@keyframes quantumFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-60px) translateX(-10px);
        opacity: 1;
    }

    75% {
        transform: translateY(-30px) translateX(-20px);
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    .utility-grid {
        grid-template-columns: 1fr;
    }

    .counter {
        font-size: 2rem;
    }

    .luxury-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}


.gold-link {
    position: relative;
    color: #ccc;
    transition: color 0.3s;
    text-decoration: none;
}

.gold-link:hover {
    color: var(--gold-primary);
}

.sec-pad {
    padding: 3rem 0 0 0 !important;
}












.slider-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--gold-dark);
    backdrop-filter: blur(6px);
    padding: .75rem;
    border-radius: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    border: 1px solid rgba(0, 0, 0, .08);
}

#partnersTrack {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

#partnersTrack>a {
    flex: 0 0 auto;
    width: 22rem;
    scroll-snap-align: start;
}

#partnersTrack::-webkit-scrollbar {
    display: none;
}

#partnersTrack {
    scrollbar-width: none;
}

#partnersTrack {
    -ms-overflow-style: none;
}


@media (max-width: 767px) {
    #partnersTrack>a {
        width: 90vw;
        max-width: 22rem;
    }

    .slider-btn {
        width: 2.25rem;
        height: 2.25rem;
    }
}


.text-gradient-animate {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary), var(--gold-primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientBounce 2.1s linear infinite alternate;
}

@keyframes gradientBounce {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.slider-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.slider-color {
    color: var(--gold-primary);
    transition: all 0.2s ease;
}

.slider-color:hover {
    color: var(--gold-secondary);
}

.footer-border {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-accent), transparent);
}