:root {
    --bg-color: #050505;
    --surface-color: #121212;
    --surface-hover: #1e1e1e;
    --primary-gold: #d4af37;
    --primary-gold-hover: #b5952f;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f2d06b 50%, #d4af37 100%);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.2);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.btn-nav {
    border: 1px solid var(--primary-gold);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-gold) !important;
}

.btn-nav:hover {
    background: var(--primary-gold);
    color: #000 !important;
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary-gold);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--surface-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Strategy Section */
.strategy {
    padding: 100px 0;
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.strategy-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.strategy-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.strategy-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.strategy-list i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.strategy-list strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
}

.strategy-list div {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* AI Core Section */
.ai-core {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-color), var(--surface-color));
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-text {
    order: 2;
}

.ai-visual {
    order: 1;
}

.ai-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
}

.ai-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ai-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-card.popular {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-card.premium {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.card-header .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.features-list {
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.payment-methods {
    text-align: center;
    color: var(--text-muted);
}

.crypto-icons {
    margin-top: 15px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--primary-gold);
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--surface-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* License Note */
.license-note {
    margin-top: 20px;
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.license-note i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.license-note strong {
    color: var(--primary-gold);
}

/* Community Section */
.community {
    padding: 80px 0;
    background: linear-gradient(to top, var(--bg-color), var(--surface-color));
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.community-content {
    max-width: 700px;
    margin: 0 auto;
}

.community h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.community p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.community strong {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .strategy-content,
    .ai-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-text {
        order: 1;
    }

    .ai-visual {
        order: 2;
    }

    .strategy-list li {
        justify-content: center;
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}