:root {
    --primary: #FFD700; /* Gold */
    --secondary: #FF7F00; /* Orange */
    --accent: #3B4B22; /* Olive Green */
    --bg-dark: #0a0c10;
    --bg-darker: #050608;
    --text-main: #e0e0e0;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.bg-gold {
    background-color: var(--primary);
}

.bg-orange {
    background-color: var(--secondary);
}

/* Typography Helpers */
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold { color: var(--primary); }
.orange { color: var(--secondary); }
.dark { color: var(--bg-darker); }

.text-center { text-align: center; }
.lead { font-size: 1.25rem; color: var(--text-main); margin-bottom: 20px; }
.highlight { border-left: 4px solid var(--primary); padding-left: 20px; font-style: italic; font-size: 1.2rem; }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-5 { margin-top: 3rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--bg-darker);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1), transparent 40%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-headline {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    padding: 0 15px;
}

.align-center { align-items: center; }

/* Grid Layouts */
.benefits-grid, .why-grid, .roadmap-grid, .buy-grid, .eco-grid, .news-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s, border-color 0.3s;
}

.glass:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.benefit-card .benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial-card {
    min-width: 350px;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    margin-top: 15px;
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.essence-list {
    list-style: none;
    margin-top: 20px;
}

.essence-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.gold-bg { background-color: var(--primary); }
.olive-bg { background-color: var(--accent); }
.orange-bg { background-color: var(--secondary); }

/* Token Section */
.token-features {
    list-style: none;
}

.token-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.token-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.badge {
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
}

.gold-badge { background: var(--primary); color: var(--bg-darker); }
.orange-badge { background: var(--secondary); color: white; }

.tokenomics-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 127, 0, 0.05));
}

.token-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.stat .label { font-size: 0.8rem; color: var(--text-dim); display: block; }
.stat .value { font-size: 1.2rem; font-weight: 700; color: var(--primary); }

.allocation-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.allocation-item:last-child { border-bottom: none; }

.highlight-card {
    border: 1px solid var(--primary);
}

/* Ecosystem */
.eco-icon { font-size: 2.5rem; margin-bottom: 20px; }
.nft-previews {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.nft-mini {
    width: 60px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

/* Dashboard Mockup */
.dashboard-mockup {
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.mockup-body {
    display: flex;
    height: 400px;
}

.mockup-sidebar {
    width: 200px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-right: 1px solid var(--glass-border);
}

.mockup-item {
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.mockup-item.active {
    background: var(--primary);
    color: var(--bg-darker);
}

.mockup-content {
    flex: 1;
    padding: 30px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mockup-widget {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
}

.full-width { grid-column: span 2; }

.mockup-widget h4 { font-size: 0.8rem; text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px; }
.balance, .apr { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.match-item { background: rgba(255, 255, 255, 0.05); padding: 10px; border-radius: 5px; margin-top: 10px; }

/* News */
.news-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 10px;
}

.news-card h3 { margin-bottom: 10px; font-size: 1.2rem; }

/* Community Large Links */
.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 15px 30px;
    background: var(--bg-darker);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: background 0.3s;
}

.social-btn:hover {
    background: #111;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* Animations */
.animate-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.animate-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease-out; }
.animate-right { opacity: 0; transform: translateX(30px); transition: all 0.8s ease-out; }
.animate-fade { opacity: 0; transition: opacity 1s ease-out; }

.reveal { opacity: 1; transform: translate(0); }

/* Policy Page Layouts */
.policy-container {
    max-width: 900px;
    margin: 120px auto 80px; /* Offset for sticky header */
    padding: 0 20px;
}

.policy-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.policy-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.policy-meta {
    font-size: 0.95rem;
    color: var(--text-dim);
    font-style: italic;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.policy-content h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin: 25px 0 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
}

.policy-callout {
    background: rgba(255, 127, 0, 0.04);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin: 30px 0;
    border-top: 1px solid rgba(255, 127, 0, 0.05);
    border-right: 1px solid rgba(255, 127, 0, 0.05);
    border-bottom: 1px solid rgba(255, 127, 0, 0.05);
}

.policy-callout.critical {
    background: rgba(255, 215, 0, 0.04);
    border-left: 4px solid var(--primary);
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    border-right: 1px solid rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.policy-callout p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-main);
}

.policy-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
    background: var(--glass);
    min-width: 600px;
}

.policy-table th, .policy-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: top;
}

.policy-table th {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .about-grid { grid-template-columns: 1fr; }
    .col-lg-6 { flex: 0 0 100%; }
    .hero-headline { font-size: 3rem; }
    .nav-links, .nav-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .policy-header h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .hero-headline { font-size: 2.5rem; }
    .footer-top { flex-direction: column; gap: 30px; text-align: center; }
    .footer-links { justify-content: center; gap: 20px; }
    .policy-container { margin-top: 100px; }
    .policy-header h1 { font-size: 2rem; }
}

