/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #00ff00;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 1px solid #333;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    letter-spacing: 2px;
}

.nav-tabs {
    display: flex;
    gap: 5px;
}

.tab {
    padding: 8px 16px;
    background: #222;
    color: #888;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
}

.tab:hover, .tab.active {
    background: #333;
    color: #00ff00;
}

.tab.highlight {
    background: #ff4444;
    color: white;
}

.header-icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
}

.icon {
    cursor: pointer;
    transition: transform 0.3s;
}

.icon:hover {
    transform: scale(1.2);
}

/* Ticker Bar */
.ticker-bar {
    background: #111;
    border-bottom: 1px solid #333;
    overflow: hidden;
    padding: 8px 0;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.ticker-item.green { color: #00ff00; }
.ticker-item.super-green { 
    color: #00ff00; 
    text-shadow: 0 0 10px #00ff00;
    font-size: 16px;
}
.ticker-item.red { color: #ff4444; }

.change {
    margin-left: 5px;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Left Column */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-section {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #333;
}

.video-caption {
    padding: 10px;
    font-size: 11px;
    color: #666;
    text-align: center;
    border-top: 1px solid #333;
}

/* Question Cards */
.question-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.question-card {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    font-size: 12px;
    color: #aaa;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.question-card:hover {
    border-color: #00ff00;
    color: #00ff00;
}

.question-card.highlight-card {
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a);
    border-color: #444;
}

/* Manifesto */
.manifesto {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
}

.manifesto h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.manifesto p {
    font-size: 13px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 15px;
    text-align: justify;
}

.manifesto p:last-child {
    color: #00ff00;
    font-weight: bold;
}

/* Center Column */
.center-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.big-take {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
}

.big-take h3 {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.big-take h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #00ff00;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.big-take p {
    font-size: 13px;
    line-height: 1.8;
    color: #888;
    text-align: justify;
}

.news-article {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 25px;
}

.news-article h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-article p {
    font-size: 12px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 15px;
    text-align: justify;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coin-logo {
    display: flex;
    justify-content: center;
    padding: 30px;
}

.logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4));
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 100px rgba(255, 215, 0, 0.6)); }
}

.tagline-box {
    background: #111;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
}

.tagline-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.search-links {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.everywhere {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #00ff00;
    text-align: center;
    text-shadow: 0 0 10px #00ff00;
}

.news-image {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a, #1a0a2a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-visualization {
    position: relative;
    width: 150px;
    height: 150px;
}

.neural-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ff00;
    animation: node-pulse 1.5s ease-in-out infinite;
}

.neural-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.neural-node:nth-child(2) { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 0.3s; }
.neural-node:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.6s; }
.neural-node:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 0.9s; }

@keyframes node-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.connection-lines {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer Ticker */
.footer-ticker {
    background: #00ff00;
    color: #0a0a0a;
    padding: 10px 0;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.ticker-scroll {
    display: flex;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.ticker-scroll span {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 0 50px;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .right-column {
        grid-column: span 2;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .coin-logo, .tagline-box, .news-image {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .right-column {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .question-cards {
        grid-template-columns: 1fr;
    }
    
    .header {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-tabs {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

/* Matrix Rain Effect Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at center, transparent 0%, #0a0a0a 70%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(0, 255, 0, 0.02) 50px,
            rgba(0, 255, 0, 0.02) 51px
        );
    z-index: -1;
}

/* Scanline Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    z-index: 9999;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
}
