:root {
    --neon-blue: #00f3ff;
    --neon-pink: #ff00e6;
    --neon-orange: #ff9900;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --glow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    --neon-green: #39ff14; /* Added for bot status */
    --neon-red: #ff0044; /* Added for burn page */
}

/* Skip Navigation Link for Accessibility */
.skip-nav {
    position: absolute;
    top: -9999px;
    left: -9999px;
    background: var(--neon-blue);
    color: var(--darker-bg);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s, left 0.3s;
}

.skip-nav:focus {
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: auto;
    outline: 3px solid var(--neon-pink);
    outline-offset: 2px;
}

/* Loading State Styles */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--neon-blue);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--darker-bg);
    color: white;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    perspective: 1000px;
    transform: rotateX(60deg);
    transform-style: preserve-3d;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 40px;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, var(--neon-blue) 0%, transparent 1%);
    background-size: 120px 120px;
    background-position: 0 0;
    opacity: 0.3;
}

.digital-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--neon-blue) 50%,
        transparent 100%);
    background-size: 1px 10px;
    animation: digitalRain 10s linear infinite;
}

@keyframes digitalRain {
    0% {
        background-position: 0 -10px;
    }
    100% {
        background-position: 0 0;
    }
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.audio-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--neon-blue);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
}

.audio-toggle:hover {
    box-shadow: 0 0 15px var(--neon-blue);
    transform: scale(1.1);
}

.audio-off {
    display: none;
}

/* Header & Navigation */
header {
    background: linear-gradient(180deg, var(--dark-bg) 0%, transparent 100%);
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-orange);
    text-shadow: 0 0 5px var(--neon-orange), 0 0 10px var(--neon-orange);
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: var(--glow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--neon-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    box-shadow: var(--glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--neon-blue) 1px, transparent 1px),
                      linear-gradient(90deg, var(--neon-blue) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    opacity: 0.1;
    perspective: 1000px;
    transform: rotateX(60deg);
    transform-style: preserve-3d;
    z-index: -1;
}

.hero-content {
    width: 50%;
    z-index: 1;
}

.hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px var(--neon-blue));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--neon-orange), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--neon-blue);
    font-weight: 300;
    text-shadow: 0 0 5px var(--neon-blue);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange));
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 230, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 230, 0.7);
}

.btn-secondary:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--neon-orange);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    position: relative;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tokenomics-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.tokenomics-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-pink);
}

.tokenomics-card p {
    font-size: 1.1rem;
}

.token-symbol {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon-orange);
    text-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
}

/* Terminal Experience */
.terminal-experience {
    padding: 100px 0;
    position: relative;
}

.terminal {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(5, 5, 10, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    border: 1px solid var(--neon-blue);
    font-family: 'Courier New', monospace;
}

.terminal-header {
    background: rgba(10, 10, 26, 0.8);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--neon-blue);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.term-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.close {
    background: #ff5f56;
}

.minimize {
    background: #ffbd2e;
}

.maximize {
    background: #27c93f;
}

.terminal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--neon-blue);
}

.terminal-body {
    padding: 20px;
    height: 350px;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.7);
    scrollbar-width: thin;
    scrollbar-color: var(--neon-blue) rgba(10, 10, 26, 0.8);
}
.terminal-body::-webkit-scrollbar {
    width: 8px;
}
.terminal-body::-webkit-scrollbar-track {
    background: rgba(10, 10, 26, 0.8);
}

.terminal-body::-webkit-scrollbar-thumb {
    background-color: var(--neon-blue);
    border-radius: 10px;
}
.terminal-output {
    margin-bottom: 20px;
}

.term-line {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #0f0;
    line-height: 1.4;
    word-break: break-word;
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.terminal-input {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: 5px 0;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    margin-top: 10px;
}

.prompt {
    font-family: 'Courier New', monospace;
    color: var(--neon-pink);
    margin-right: 10px;
    white-space: nowrap;
}

#term-input {
    background: transparent;
    border: none;
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    flex: 1;
    outline: none;
    caret-color: var(--neon-blue);
}
/* New terminal styling elements to add */
.typing-indicator {
    color: var(--neon-blue);
}

.typing-indicator .dot-1,
.typing-indicator .dot-2,
.typing-indicator .dot-3 {
    animation: blink 1s infinite;
    display: inline-block;
}

.typing-indicator .dot-2 {
    animation-delay: 0.2s;
}

.typing-indicator .dot-3 {
    animation-delay: 0.4s;
}

.term-suggestions {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    border: 1px solid var(--neon-blue);
    border-radius: 5px;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
}

.suggestion-item {
    padding: 5px 10px;
    cursor: pointer;
    color: var(--neon-blue);
}

.suggestion-item:hover {
    background: rgba(0, 243, 255, 0.2);
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--neon-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    box-shadow: 0 0 10px var(--neon-blue);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--neon-pink);
    border-radius: 50%;
    top: 15px;
    right: -10px;
    z-index: 1;
    box-shadow: 0 0 10px var(--neon-pink);
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-orange);
    margin-bottom: 10px;
}

/* Community Section */
.community {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.social-link {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(10, 10, 26, 0.8);
    border: 2px solid var(--neon-blue);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--neon-blue);
}

.social-link img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--neon-blue);
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-orange);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Holographic Display Section */
.holographic-display {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.holo-subtitle {
    text-align: center;
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.holo-container {
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.holo-platform {
    width: 300px;
    height: 30px;
    background: rgba(10, 10, 26, 0.8);
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue);
    z-index: 1;
}

.holo-glow {
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--neon-blue) 0%, transparent 100%);
    opacity: 0.2;
    border-radius: 50%;
    top: -100px;
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 0;
}
/* Holographic Token Wrapper */
.holo-wrapper {
    perspective: 1000px;
    width: 300px;
    height: 300px;
    margin: 30px 0;
    border-radius: 50%;
    overflow: hidden;
}

/* Update these specific token face classes */
.token-face.front {
    z-index: 2;
}

.token-face.back {
    transform: rotateY(180deg);
}

/* Force circular shape on all holographic elements */
.holo-wrapper,
.holo-token,
.token-face,
.token-face::before,
.token-face::after,
.holo-token::before {
    border-radius: 50% !important;
    overflow: hidden;;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.1; height: 200px; }
    50% { opacity: 0.3; height: 250px; }
}

/* Updated Holographic Token Styles */
.holo-token {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    margin: 30px 0;
}

.token-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.9), rgba(20, 20, 40, 0.9));
    border: 3px solid var(--neon-blue);
    overflow: hidden;
    box-shadow:
        0 0 30px var(--neon-blue),
        inset 0 0 30px rgba(0, 243, 255, 0.1);
}

.token-border {
    position: absolute;
    width: 90%;
    height: 90%;
    border: 1px solid var(--neon-orange);
    border-radius: 50%;
    opacity: 0.5;
}

.token-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.token-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.token-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-orange);
    margin-bottom: 5px;
    text-shadow: 0 0 5px var(--neon-orange);
}

.token-symbol {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}
/* Update these specific token face classes */
.token-face.front {
    z-index: 2;
}

.token-face.back {
    transform: rotateY(180deg);
}

.omega-symbol {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--neon-orange);
    text-shadow: 0 0 15px var(--neon-orange);
}

.token-details {
    margin-bottom: 20px;
}

.detail-line {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--neon-blue);
    margin-bottom: 5px;
    text-shadow: 0 0 3px var(--neon-blue);
}

.binary-code {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--neon-pink);
    opacity: 0.7;
    text-shadow: 0 0 3px var(--neon-pink);
}

.holo-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.holo-btn {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    border-radius: 50px;
    padding: 10px 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.holo-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px var(--neon-blue);
    transform: translateY(-2px);
}

.holo-slider {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

#holo-intensity {
    -webkit-appearance: none;
    width: 150px;
    height: 5px;
    background: rgba(0, 243, 255, 0.3);
    border-radius: 5px;
    outline: none;
}

#holo-intensity::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--neon-blue);
    cursor: pointer;
    box-shadow: 0 0 5px var(--neon-blue);
}

/* Add scanlines effect */
.holo-token::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        rgba(0, 243, 255, 0.05) 1px,
        rgba(0, 243, 255, 0.05) 2px,
        transparent 3px
    );
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* Add holographic glitch effect */
.holo-glitch {
    animation: glitch 0.5s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(5px, -5px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(3px, 3px); }
}

/* Twitter Feed Section */
.twitter-feed-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    position: relative;
}
.twitter-feed-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--neon-blue);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}
.twitter-feed-header {
    text-align: center;
    margin-bottom: 30px;
}
.twitter-feed-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.twitter-feed-header p {
    color: #ccc;
    font-size: 1.1rem;
}
.twitter-follow-button {
    text-align: center;
    margin: 20px 0;
}
.twitter-follow-button a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1DA1F2;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}
.twitter-follow-button a:hover {
    background: #1a91da;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.4);
}

/* Bot Status Section */
.bot-status-section {
    padding: 80px 0;
    background: var(--dark-bg);
}
.bot-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.bot-status-card {
    background: rgba(10, 10, 26, 0.8);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}
.bot-status-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.bot-status-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    margin-bottom: 10px;
}
.bot-status-value {
    font-size: 1.5rem;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
}

/* ========================================
   BURN PAGE SPECIFIC STYLES
   ======================================== */

/* Glass Card Effect */
.glass-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 243, 255, 0.1);
}

/* Neon Text Effect */
.neon-text {
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

/* Burn Page Heading Glow Animation */
@keyframes burn-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 68, 0.8)) drop-shadow(0 0 40px rgba(255, 0, 68, 0.6)) drop-shadow(0 0 60px rgba(255, 0, 68, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 68, 1)) drop-shadow(0 0 60px rgba(255, 0, 68, 0.8)) drop-shadow(0 0 90px rgba(255, 0, 68, 0.6));
        transform: scale(1.02);
    }
}

.burn-heading {
    animation: burn-glow 2s ease-in-out infinite;
}

/* Burn Page Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--neon-red), var(--neon-orange));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 0, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 0, 68, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 243, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 243, 255, 0.5);
}

/* Stat Cards */
.stat-card {
    background: rgba(10, 10, 26, 0.9);
    border: 1px solid rgba(255, 0, 68, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 68, 0.4);
}

/* Reward Cards */
.reward-card {
    background: rgba(10, 10, 26, 0.7);
    border: 2px solid rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.reward-card.active {
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.4);
    background: rgba(255, 153, 0, 0.1);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-red), var(--neon-orange));
    transition: width 0.5s ease;
}

/* Burn Page Input Styles */
input[type="number"] {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid rgba(255, 0, 68, 0.3);
    border-radius: 8px;
    padding: 12px;
    color: white;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="number"]:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 0, 68, 0.4);
}

/* Wallet Button */
.wallet-btn {
    background: linear-gradient(135deg, var(--neon-red), var(--neon-orange));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 0, 68, 0.3);
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 0, 68, 0.5);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--neon-red);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navigation Container */
.nav-container {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.nav-links a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    text-shadow: 0 0 10px var(--neon-blue);
}

/* Milestone Items */
.milestone-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.milestone-item:last-child {
    border-bottom: none;
}

/* Flame Icon Animation */
.flame-icon {
    display: inline-block;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Footer Styles (for burn page) */
footer {
    padding: 40px 0;
    text-align: center;
    background: var(--dark-bg);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    margin-top: 80px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

footer p {
    color: #ccc;
    margin: 10px 0;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue);
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}
