:root {
    --primary-gold: #d4af37;
    --secondary-gold: #b8860b;
    --gold-gradient: linear-gradient(135deg, #f9e27d 0%, #d4af37 50%, #b8860b 100%);
    --bg-black: #0a0a0a;
    --card-bg: #151515;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.6);
    --text-very-light: rgba(255, 255, 255, 0.3);
    --font-primary: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.95);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold) !important;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Animated Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    color: #000;
}

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    padding: 10px 28px;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}

/* Wallet Button Animation */
.wallet-btn {
    position: relative;
    overflow: hidden;
}

.wallet-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.wallet-btn:hover::after {
    left: 120%;
    opacity: 1;
}

/* Floating Icons */
.floating-icons {
    position: relative;
}

.float-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Trading Section */
.trading-container {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.trading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.trading-row:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 10px;
}

.price-up {
    color: #00ff88;
    /* Keeping a subtle green for UX, or should I stay strictly gold? User said white and gold. Let's use gold for prices. */
}

.trading-pair {
    font-weight: 600;
    font-size: 1.1rem;
}

.candle-animation {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
}

.candle {
    width: 6px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: candleGrow 2s infinite ease-in-out;
}

@keyframes candleGrow {

    0%,
    100% {
        height: 20%;
        opacity: 0.5;
    }

    50% {
        height: 80%;
        opacity: 1;
    }
}

.text-very-light {
    color: var(--text-very-light) !important;
    font-weight: 300;
}

.text-light-refined {
    color: var(--text-light) !important;
    font-weight: 300;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Service Cards Section */
.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.service-card.highlighted {
    background: var(--gold-gradient);
}

.service-card.highlighted h3,
.service-card.highlighted p,
.service-card.highlighted i {
    color: #000 !important;
}

.service-card .corner-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.8;
}

.service-card.highlighted .corner-accent {
    background: #000;
}

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Cards */
.crypto-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.crypto-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: 0.5s;
}

.crypto-card:hover::before {
    left: 100%;
}

/* Stats */
.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
}

/* How It Works Section */
.process-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.title-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    flex-grow: 1;
    max-width: 150px;
}

.process-accordion .accordion-item {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

.process-accordion .accordion-button {
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    padding: 20px;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-gold);
    transform: none;
    transition: var(--transition-smooth);
}

.process-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-gold);
}

.process-accordion .accordion-button:not(.collapsed)::after {
    content: '-';
    transform: rotate(180deg);
}

.process-accordion .accordion-body {
    color: var(--text-light);
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.isometric-img {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
    animation: float-iso 6s ease-in-out infinite;
}

@keyframes float-iso {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Why Choose Section */
.why-choose-feature {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-choose-feature.text-end {
    flex-direction: row-reverse;
}

.feature-icon-circle {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
}

.feature-icon-circle i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.phone-graphic-container {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.phone-graphic-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.phone-img {
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

/* Mission & Vision Section */
.mission-vision-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 50px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    transition: var(--transition-smooth);
}

.mission-vision-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.mission-vision-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .floating-icons {
        margin-top: 50px;
        height: 300px;
    }
}