body {
    font-family: 'Inter', sans-serif;
    background-color: #050711;
    color: #E0E0E0;
}
.gradient-text {
    background: linear-gradient(90deg, #A55EE3, #4390F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 7, 17, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-card {
    background: #10121a;
    border: 1px solid #2a2d3e;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.token-card:hover {
    border-color: #4390F1;
    box-shadow: 0 0 15px rgba(67, 144, 241, 0.2);
}
.action-btn {
    background-color: #1c1e2b;
    border: 1px solid #3c3f58;
    transition: all 0.2s ease;
}
.action-btn:hover {
    background-color: #2a2d3e;
    border-color: #4390F1;
    color: #fff;
}
.ai-btn {
    background: rgba(165, 94, 227, 0.15);
    border: 1px solid rgba(165, 94, 227, 0.5);
    color: #c471ed;
    transition: all 0.3s ease;
    /*display: none !important;*/
}
.ai-btn:hover {
    background: rgba(165, 94, 227, 0.3);
    border-color: #A55EE3;
    color: #fff;
    box-shadow: 0 0 10px rgba(165, 94, 227, 0.5);
}
.ai-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.feature-card, .roadmap-card, .path-step, .why-card {
    background: rgba(10, 14, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.cta-button-secondary {
    background-color: transparent;
    border: 1px solid #4390F1;
    transition: all 0.3s ease;
}
.cta-button-secondary:hover {
    background-color: rgba(67, 144, 241, 0.1);
}
.cta-button-primary {
    background: linear-gradient(90deg, #A55EE3, #4390F1);
}
.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 25px rgba(165, 94, 227, 0.3);
}
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.new-token-animation { animation: fadeIn 0.5s ease-out forwards; }
#token-feed::-webkit-scrollbar { width: 8px; }
#token-feed::-webkit-scrollbar-track { background: #10121a; }
#token-feed::-webkit-scrollbar-thumb { background: #2a2d3e; border-radius: 4px; }
#token-feed::-webkit-scrollbar-thumb:hover { background: #4390F1; }
.insight-loading-spinner { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (max-width: 767px) {
    .token-card {
        zoom: 65%;
    }
}

/* === CORRECTED AND UPDATED NEWS SCROLLER STYLES === */
.news-container {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
.news-marquee-content {
    animation: marquee 60s linear infinite;
}
.news-container:hover .news-marquee-content {
    animation-play-state: paused;
}
.news-panel {
    transition: transform 0.3s ease;
}
.news-panel:hover {
    transform: scale(1.03);
}
