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

body {
    font-family: 'Orbitron', 'Courier New', monospace;
    background: 
        radial-gradient(circle at 30% 20%, #0d1117 0%, #161b22 25%, #0d1117 50%),
        linear-gradient(45deg, #0d1117 0%, #21262d 50%, #0d1117 100%);
    color: #f0f6fc;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 99px,
            rgba(255, 193, 7, 0.02) 100px,
            rgba(255, 193, 7, 0.02) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 99px,
            rgba(255, 193, 7, 0.02) 100px,
            rgba(255, 193, 7, 0.02) 101px
        );
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.dashboard {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 25px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1);
    letter-spacing: 8px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3),
            0 0 60px rgba(255, 215, 0, 0.1);
    }
    to {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.7),
            0 0 50px rgba(255, 215, 0, 0.5),
            0 0 70px rgba(255, 215, 0, 0.3);
    }
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Terminal-Style Header */
.header {
    background: 
        linear-gradient(135deg, #161b22 0%, #21262d 50%, #161b22 100%);
    border-bottom: 3px solid #ffc107;
    padding: 15px 25px;
    position: relative;
    box-shadow: 
        0 0 20px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 193, 7, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffc107, transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #ffc107;
    text-shadow: 
        0 0 10px #ffc107,
        0 0 20px #ffc107,
        0 0 30px #ffc107;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

/* Header Wallet Button */
.header .connect-wallet-btn {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    min-width: 160px;
    justify-content: center;
    margin-top: 3px;
}

.header .connect-wallet-btn:hover {
    background: linear-gradient(135deg, #e6c200, #d4af00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.header .wallet-info {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid #ffd700;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    backdrop-filter: blur(10px);
}

.header .wallet-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header .wallet-address {
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
    word-break: break-all;
}

.header .wallet-balance {
    color: #cccccc;
    font-size: 11px;
}

.logo::after {
    content: '>';
    color: #ffc107;
    margin-left: 10px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.nav-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    background: transparent;
    color: #f0f6fc;
    border: 1px solid #30363d;
    padding: 8px 16px;
    border-radius: 0;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    border-color: #ffc107;
    color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.twitter-btn {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #0d1117;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.twitter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.twitter-btn:hover::before {
    left: 100%;
}

.twitter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
}

/* Main Content - Terminal Grid */
.main-content {
    display: grid;
    grid-template-columns: 1.3fr 1.4fr 1.3fr;
    grid-template-rows: auto 1fr auto;
    gap: 0;
    flex: 1;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

/* AI Models - Terminal Windows */
.ai-models-left,
.ai-models-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #0d1117;
    border-right: 2px solid #30363d;
    border-left: 2px solid #30363d;
    position: relative;
}

.ai-models-left {
    border-left: none;
}

.ai-models-right {
    border-right: none;
}

.ai-model {
    background: #161b22;
    border: 1px solid #30363d;
    border-bottom: 2px solid #ffc107;
    padding: 0;
    min-height: 240px;
    position: relative;
    transition: all 0.3s ease;
}

.ai-model:hover {
    background: #21262d;
    border-color: #ffc107;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.2);
}

.model-header {
    background: #0d1117;
    border-bottom: 1px solid #30363d;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.model-header::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ffc107;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffc107;
}

.model-header h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffc107;
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pnl {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.pnl.positive {
    background: #238636;
    color: #ffffff;
    border: 1px solid #2ea043;
}

.pnl.negative {
    background: #da3633;
    color: #ffffff;
    border: 1px solid #f85149;
}

.pnl.neutral {
    background: #6e7681;
    color: #ffffff;
    border: 1px solid #8b949e;
}

.model-buttons {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 10px 15px;
    background: #0d1117;
    border-bottom: 1px solid #30363d;
}

.btn {
    background: transparent;
    color: #8b949e;
    border: 1px solid #30363d;
    padding: 6px 12px;
    border-radius: 0;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
    margin-right: 2px;
}

.btn:hover {
    background: #21262d;
    color: #f0f6fc;
    border-color: #ffc107;
}

.btn.active {
    background: #ffc107;
    color: #0d1117;
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.model-content {
    font-size: 12px;
    line-height: 1.5;
    color: #f0f6fc;
    min-height: 140px;
    max-height: 220px;
    overflow-y: auto;
    padding: 15px;
    background: #161b22;
    font-family: 'Courier New', monospace;
    scrollbar-width: thin;
    scrollbar-color: #ffc107 #30363d;
}

.model-content::-webkit-scrollbar {
    width: 6px;
}

.model-content::-webkit-scrollbar-track {
    background: #30363d;
}

.model-content::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 3px;
}

.model-content::-webkit-scrollbar-thumb:hover {
    background: #ffeb3b;
}

.placeholder {
    width: 100%;
    height: 100px;
    border: 1px dashed #30363d;
    border-radius: 0;
    background: #0d1117;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e7681;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

/* Chart Section - Terminal Display */
.chart-section {
    display: flex;
    flex-direction: column;
    background: #0d1117;
    border: 2px solid #30363d;
    border-top: 3px solid #ffc107;
    position: relative;
    grid-column: 2;
    grid-row: 1 / -1;
}

.chart-section::before {
    content: 'TRADING TERMINAL v2.1.3';
    position: absolute;
    top: 10px;
    left: 15px;
    color: #ffc107;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.chart-container {
    position: relative;
    flex: 1;
    min-height: 500px;
    background: #161b22;
    border: 1px solid #30363d;
    margin: 30px 15px 15px 15px;
    overflow: hidden;
}

#priceChart {
    width: 100% !important;
    height: 100% !important;
}

.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.price-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffc107;
    color: #0d1117;
    padding: 8px 12px;
    border-radius: 0;
    font-weight: 900;
    font-size: 16px;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    z-index: 10;
    border: 1px solid #ffeb3b;
}

.trade-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.trade-marker {
    position: absolute;
    width: 2px;
    height: 20px;
    background: #ffc107;
    transform: translateX(-1px);
    box-shadow: 0 0 10px #ffc107;
}

.trade-marker.buy {
    background: #2ea043;
    box-shadow: 0 0 10px #2ea043;
}

.trade-marker.sell {
    background: #da3633;
    box-shadow: 0 0 10px #da3633;
}

.chart-footer {
    background: #0d1117;
    border-top: 1px solid #30363d;
    padding: 10px 15px;
    color: #8b949e;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Orbitron', monospace;
}

/* Ticker Section - Terminal Status Bar */
.ticker-section {
    background: #0d1117;
    border-top: 2px solid #ffc107;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    grid-column: 1 / -1;
    position: relative;
}

.ticker-section::before {
    content: 'MARKET DATA STREAM';
    position: absolute;
    top: -12px;
    left: 15px;
    background: #0d1117;
    color: #ffc107;
    padding: 0 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-item {
    text-align: center;
    min-width: 150px;
    background: #161b22;
    border: 1px solid #30363d;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background: #21262d;
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.ticker-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #30363d;
}

.symbol {
    font-size: 16px;
    font-weight: 800;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.price {
    font-size: 18px;
    font-weight: 900;
    color: #f0f6fc;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px #ffc107;
}

.ticker-time {
    font-size: 10px;
    color: #8b949e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

/* Technical Containers - Terminal Panels */
.technical-containers {
    display: flex;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
    background: #0d1117;
    border-top: 2px solid #ffc107;
    padding: 15px;
    grid-column: 1 / -1;
}

.tech-container {
    background: #161b22;
    border: 1px solid #30363d;
    border-left: 2px solid #ffc107;
    padding: 15px;
    min-width: 120px;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.tech-container:hover {
    background: #21262d;
    border-color: #ffc107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.1);
}

.tech-header {
    font-size: 11px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #30363d;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.tech-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tech-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    padding: 3px 0;
    border-bottom: 1px solid #30363d;
    font-family: 'Courier New', monospace;
}

.tech-item:last-child {
    border-bottom: none;
}

.tech-label {
    color: #8b949e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-value {
    color: #f0f6fc;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

.ticker-metrics span span {
    color: #ffc107;
    font-weight: 700;
}

/* Trading Panel - Floating Terminal */
.trading-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0d1117;
    border: 2px solid #ffc107;
    padding: 15px;
    min-width: 250px;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
    position: relative;
    overflow: hidden;
}

.trading-panel::before {
    content: 'TRADE CONSOLE';
    position: absolute;
    top: -12px;
    left: 15px;
    background: #0d1117;
    color: #ffc107;
    padding: 0 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trade-info h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ffc107;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #30363d;
    font-family: 'Orbitron', monospace;
}

.trade-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    padding: 6px 10px;
    background: #161b22;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.stat:hover {
    background: #21262d;
    border-color: #ffc107;
    transform: translateX(5px);
}

.stat .label {
    color: #8b949e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat .value {
    color: #f0f6fc;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 2s infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-trade {
    animation: slideIn 0.5s ease-out;
}

/* Prediction Market Section */
.prediction-market {
    background: #0d1117;
    border-top: 3px solid #ffc107;
    padding: 30px;
    margin-top: 20px;
    position: relative;
}

/* Wallet Section Styles */
.wallet-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.wallet-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.connect-wallet-btn {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    min-width: 200px;
    justify-content: center;
}

.connect-wallet-btn:hover {
    background: linear-gradient(135deg, #e6c200, #d4af00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-subtitle {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

.wallet-info {
    background: #1a1a1a;
    border: 1px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 300px;
}

.wallet-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.wallet-address {
    font-size: 14px;
    color: #ffd700;
    font-weight: 600;
    word-break: break-all;
    text-align: center;
}

.wallet-balance {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
}

.disconnect-btn {
    background: #ff4444;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disconnect-btn:hover {
    background: #cc3333;
    transform: translateY(-1px);
}


.prediction-market::before {
    content: 'PREDICTION MARKET v1.0';
    position: absolute;
    top: -12px;
    left: 30px;
    background: #0d1117;
    color: #ffc107;
    padding: 0 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #30363d;
}

.prediction-header h2 {
    font-size: 24px;
    font-weight: 900;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.connect-wallet-btn {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #0d1117;
    border: none;
    padding: 10px 20px;
    border-radius: 0;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.connect-wallet-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #f0f6fc;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.wallet-address {
    color: #ffc107;
    font-weight: 700;
}

.wallet-balance {
    color: #8b949e;
}

.prediction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.prediction-card {
    background: #161b22;
    border: 2px solid #30363d;
    border-top: 3px solid #ffc107;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.prediction-card:hover {
    border-color: #ffc107;
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.2);
    transform: translateY(-5px);
}

.crypto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #30363d;
}

.crypto-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
    margin-bottom: 5px;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #f0f6fc;
    font-family: 'Orbitron', monospace;
}

.price-change {
    font-size: 14px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 0;
    font-family: 'Orbitron', monospace;
}

.price-change.positive {
    background: #238636;
    color: #ffffff;
    border: 1px solid #2ea043;
}

.price-change.negative {
    background: #da3633;
    color: #ffffff;
    border: 1px solid #f85149;
}

.prediction-periods {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #30363d;
}

.period-selector {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.period-selector label {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #0d1117;
    border: 1px solid #30363d;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
    color: #8b949e;
}

.period-selector label:hover {
    border-color: #ffc107;
    background: #21262d;
}

.period-selector input[type="radio"] {
    display: none;
}

.period-selector input[type="radio"]:checked + span {
    color: #ffc107;
    font-weight: 700;
}

.period-selector input[type="radio"]:checked ~ span {
    color: #ffc107;
    font-weight: 700;
}

.prediction-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.prediction-option {
    background: #0d1117;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
}

.prediction-option:hover {
    border-color: #ffc107;
    background: #21262d;
}

.prediction-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    width: 100%;
}

.prediction-option input[type="radio"] {
    display: none;
}

.prediction-option input[type="radio"]:checked + .option-text {
    color: #ffc107;
    font-weight: 700;
}

.prediction-option input[type="radio"]:checked ~ .option-odds {
    color: #ffc107;
    font-weight: 700;
}

.option-text {
    font-size: 12px;
    font-weight: 600;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.option-odds {
    font-size: 14px;
    font-weight: 700;
    color: #f0f6fc;
    font-family: 'Orbitron', monospace;
}

.bet-amount {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bet-amount input {
    flex: 1;
    background: #0d1117;
    border: 1px solid #30363d;
    color: #f0f6fc;
    padding: 10px 15px;
    border-radius: 0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    transition: all 0.3s ease;
}

.bet-amount input:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.place-bet-btn {
    background: #ffc107;
    color: #0d1117;
    border: none;
    padding: 10px 15px;
    border-radius: 0;
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.place-bet-btn:hover {
    background: #ffeb3b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.place-bet-btn:disabled {
    background: #6e7681;
    color: #8b949e;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: #0d1117;
    border-top: 3px solid #ffc107;
    padding: 30px 0;
    margin-top: 40px;
    position: relative;
}

.footer::before {
    content: 'NAVIGATION';
    position: absolute;
    top: -12px;
    left: 30px;
    background: #0d1117;
    color: #ffc107;
    padding: 0 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #161b22;
    border: 2px solid #30363d;
    color: #f0f6fc;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-nav-btn:hover::before {
    left: 100%;
}

.footer-nav-btn:hover {
    border-color: #ffc107;
    color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.footer-twitter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    border: 2px solid #1da1f2;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-twitter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-twitter-btn:hover::before {
    left: 100%;
}

.footer-twitter-btn:hover {
    background: linear-gradient(45deg, #0d8bd9, #1da1f2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.footer-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #30363d;
}

.footer-info p {
    color: #8b949e;
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-nav {
        gap: 15px;
    }
    
    .footer-nav-btn,
    .footer-twitter-btn {
        padding: 10px 15px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-nav-btn,
    .footer-twitter-btn {
        width: 200px;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
    }
    
    .chart-section {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .ai-models-left,
    .ai-models-right {
        grid-column: 1 / -1;
        flex-direction: row;
        overflow-x: auto;
    }
    
    .ai-model {
        min-width: 250px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 0;
    }
    
    .ai-models-left,
    .ai-models-right {
        flex-direction: column;
    }
    
    .ai-model {
        min-width: auto;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-section {
        gap: 10px;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .twitter-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .ticker-item {
        min-width: 120px;
    }
    
    .tech-container {
        min-width: 100px;
    }
    
    .trading-panel {
        bottom: 15px;
        right: 15px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }
    
    .header-content {
        gap: 10px;
    }
    
    .nav-section {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .nav-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .twitter-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .ticker-item {
        min-width: 100px;
        padding: 8px 10px;
    }
    
    .tech-container {
        min-width: 80px;
        padding: 10px;
    }
    
    .trading-panel {
        bottom: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        width: calc(100% - 20px);
    }
    
    .chart-container {
        min-height: 300px;
    }
    
    .price-indicator {
        top: 15px;
        right: 15px;
        padding: 6px 10px;
        font-size: 14px;
    }
}