/* AngryBot - Tactical Robotic Trading Systems */

:root {
    --ab-green: #39ff14;
    --ab-green-dark: #2bcc10;
    --ab-green-glow: rgba(57, 255, 20, 0.3);
    --ab-dark: #0a0a0a;
    --ab-darker: #050505;
    --ab-card: #111111;
    --ab-card-border: #1a1a1a;
    --ab-text: #e0e0e0;
    --ab-muted: #666;
}

.text-muted {
    color: #adb5bd !important;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
    background-color: var(--ab-darker);
    color: var(--ab-text);
    overflow-x: hidden;
}

/* Typography */
.brand-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--ab-green);
}

.fw-900 { font-weight: 900; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.text-ab-green { color: var(--ab-green) !important; }
.text-white-70 { color: rgba(255,255,255,0.7); }
.bg-black { background-color: #000 !important; }

/* Navbar */
.navbar {
    background: rgba(5, 5, 5, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ab-card-border);
    padding: 0.8rem 0;
}
.navbar .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: var(--ab-muted) !important;
    transition: color 0.3s;
}
.navbar .nav-link:hover {
    color: var(--ab-green) !important;
}

/* Buttons */
.btn-ab {
    background: var(--ab-green) !important;
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
    opacity: 1 !important;
}
.btn-ab:hover {
    background: var(--ab-green-dark) !important;
    color: #000 !important;
    box-shadow: 0 0 20px var(--ab-green-glow);
    transform: translateY(-1px);
}
.btn-ab:disabled {
    background: var(--ab-green) !important;
    color: #000 !important;
    opacity: 0.75 !important;
}
.btn-outline-ab {
    border: 2px solid var(--ab-green);
    color: var(--ab-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.3s;
}
.btn-outline-ab:hover {
    background: var(--ab-green);
    color: #000;
    box-shadow: 0 0 20px var(--ab-green-glow);
}
.btn-muted {
    background: #adb5bd !important;
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s;
    opacity: 1 !important;
}
.btn-muted:hover {
    background: #9aa1a8 !important;
    color: #000 !important;
}
.btn-muted:disabled {
    background: #adb5bd !important;
    color: #000 !important;
    opacity: 0.75 !important;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    background: var(--ab-darker);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(57, 255, 20, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.hero-title {
    font-family: 'Orbitron', monospace;
    line-height: 1.1;
}
.hero-logo {
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 0 40px var(--ab-green-glow));
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.hero-metrics {
    font-size: 0.9rem;
}

/* Sections */
.section-dark {
    background: var(--ab-dark);
}
.section-darker {
    background: var(--ab-darker);
}

/* Stats Bar */
.stats-bar {
    background: #080808;
    border-top: 1px solid var(--ab-card-border);
    border-bottom: 1px solid var(--ab-card-border);
}

/* Cards */
.card-dark {
    background: var(--ab-card);
    border: 1px solid var(--ab-card-border);
    border-radius: 12px;
    color: var(--ab-text);
}
.card-glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 12px;
    transition: all 0.3s;
}
.card-glass:hover {
    border-color: rgba(57, 255, 20, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}
.border-ab {
    border-color: rgba(57, 255, 20, 0.3) !important;
}

/* Step Cards */
.card-step {
    position: relative;
    transition: all 0.3s;
    border-radius: 12px;
}
.card-step:hover {
    transform: translateY(-4px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--ab-green);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    font-family: 'Orbitron', monospace;
}

/* Rules */
.rules-list {
    list-style: none;
    padding: 0;
}
.rules-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--ab-card-border);
    color: var(--ab-text);
}
.rules-list li:last-child {
    border-bottom: none;
}
.rule-label {
    color: var(--ab-green);
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Anti-Ponzi */
.anti-ponzi-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
        var(--ab-darker);
    padding: 80px 0;
}
.anti-ponzi-logo {
    filter: drop-shadow(0 0 30px var(--ab-green-glow));
}
.anti-ponzi-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.3);
    border-radius: 50px;
    padding: 12px 28px;
    color: white;
}

/* Modal Dark */
.modal-dark {
    background: var(--ab-card);
    border: 1px solid var(--ab-card-border);
    color: var(--ab-text);
}
.form-dark {
    background: #000;
    border: 1px solid var(--ab-card-border);
    color: white;
}
.form-dark:focus {
    background: #000;
    border-color: var(--ab-green);
    color: white;
    box-shadow: 0 0 0 0.2rem var(--ab-green-glow);
}
.alert-dark.border-ab {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2) !important;
    color: var(--ab-text);
}

/* Footer */
.footer-dark {
    background: #030303;
    border-top: 1px solid var(--ab-card-border);
}

/* Wallet connected */
.wallet-connected {
    color: var(--ab-green) !important;
    border-color: var(--ab-green) !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Chart */
#growthChart {
    max-height: 350px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-metrics {
        flex-direction: column;
        gap: 10px !important;
    }
    .hero-metrics .vr {
        display: none;
    }
    .display-4 {
        font-size: 2rem;
    }
    .display-6 {
        font-size: 1.5rem;
    }
}
