/* Design System for Cucacoin */
:root {
    --bg-black: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary: #00ff88; /* Solana Neon Green */
    --primary-glow: rgba(0, 255, 136, 0.4);
    --secondary: #ffd700; /* Gold */
    --accent: #ff4d4d; /* Red Alert */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --nav-height: 80px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

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

/* --- Navigation --- */
#navbar {
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    font-family: 'Bebas Neue';
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    font-family: 'Bebas Neue';
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), #00ccff);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

.btn.sm { padding: 8px 18px; font-size: 0.9rem; }
.btn.lg { padding: 16px 40px; font-size: 1.3rem; }

/* --- Hero Section --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.6;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

h1.glitch-text {
    font-size: 8rem;
    margin-bottom: 0;
    line-height: 0.8;
    position: relative;
    color: var(--primary);
    text-shadow: 2px 2px 10px rgba(0, 255, 136, 0.5);
}

.slogan {
    font-size: 1.5rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Mascot Animation */
.mascot-wrap {
    position: relative;
    text-align: center;
}

.floating-mascot {
    width: 350px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.mascot-dialog {
    background: var(--card-bg);
    padding: 15px 25px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    position: absolute;
    top: -50px;
    right: -20px;
    backdrop-filter: blur(5px);
    animation: popup 5s infinite;
}

.mascot-dialog p {
    font-weight: bold;
    color: var(--primary);
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-30px) rotate(-2deg); }
}

@keyframes popup {
    0%, 90% { transform: scale(0); opacity: 0; }
    92%, 98% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

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

.text-center { text-align: center; }

h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: var(--primary);
}

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

.about-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(10px);
}

.icon { font-size: 2rem; }

/* --- Buy Steps --- */
.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-num {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.contract-box {
    margin-top: 60px;
    background: #000;
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    border: 1px dashed var(--primary);
}

code {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0 20px;
}

/* --- Tokenomics --- */
.token-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.token-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-card.highlight {
    border: 2px solid var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary-glow);
}

.token-card h3 {
    font-size: 3rem;
    color: var(--primary);
}

/* --- Footer --- */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

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

/* Responsive */
@media (max-width: 992px) {
    .container { padding: 0 40px; }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions { justify-content: center; }
    h1.glitch-text { font-size: 5rem; }
    .mascot-wrap { order: -1; }
    .floating-mascot { width: 250px; }
    .grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    h1.glitch-text { font-size: 4rem; }
    .nav-links { display: none; }
}
