/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'VT323', monospace;
    background: transparent;
    height: 100vh;
    overflow: hidden;
    color: #333;
}

/* ===== DESKTOP LAYOUT ===== */
.desktop {
    width: 100vw;
    height: 100vh;
    position: relative;
    background: transparent;
}

/* ===== MATRIX RAIN BACKGROUND ===== */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.matrix-column {
    position: absolute;
    top: -100vh;
    font-family: 'Courier New', monospace;
    font-size: 30px;
    color: #00ff00;
    opacity: 1;
    animation: matrix-fall linear infinite;
    line-height: 1.2;
    text-shadow: 0 0 30px #00ff00, 0 0 60px #00ff00;
    font-weight: bold;
}

@keyframes matrix-fall {
    0% {
        top: -100vh;
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 1;
    }
}

/* ===== DESKTOP ICONS ===== */
.desktop-icons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 200px;
    min-height: 400px;
    z-index: 10;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.icon-image {
    font-size: 32px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.icon-label {
    font-size: 12px;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

/* Specific icon styles */
.community-icon {
    background: transparent;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.community-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ===== CENTRAL CONTENT ===== */
.central-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.y2k-logo-faded {
    margin-bottom: 20px;
    opacity: 0.3;
    filter: grayscale(100%) blur(1px);
    transition: all 0.3s ease;
}

.faded-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.main-headline {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    letter-spacing: 2px;
}

.contract-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ca-label {
    color: #ffd700;
    font-weight: bold;
    margin-right: 10px;
}

.ca-text {
    color: white;
    font-family: monospace;
    font-size: 14px;
}

.screen-rec {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ===== WINDOW SYSTEM ===== */
.app-window, .browser-window {
    position: fixed;
    background: white;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 500;
    display: none;
    min-width: 400px;
    min-height: 300px;
}

.trading-window-bg { background: black; }
.white-window-bg { background: white; }

.window-title-bar {
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    padding: 8px 12px;
    border-bottom: 1px solid #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
    border-radius: 6px 6px 0 0;
}

.window-title {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.window-controls {
    display: flex;
    gap: 5px;
}

.window-btn {
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
}

.window-btn:hover { background: linear-gradient(to bottom, #e0e0e0, #c0c0c0); }
.window-btn.close:hover { background: #ff0000; color: white; }

.window-content {
    height: calc(100% - 30px);
    overflow-y: auto;
    padding: 15px;
}



.trading-window-bg .window-content { background: black; }

/* ===== TRADING TERMINAL ===== */
#trading-window {
    width: 800px;
    height: 600px;
    max-width: 90vw;
    max-height: 80vh;
    /* Trading Terminal position - top left */
    top: 50px;
    left: 50px;
}
.ticker-row {
    display: flex;
    justify-content: space-around;
    background: #1a1a2e;
    padding: 2px;
    border-radius: 3px;
    margin-bottom: 4px;
}

.ticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #00ff00;
    font-family: monospace;
    gap: 1px;
}

.ticker-name { font-size: 10px; color: #888; }
.ticker-price { font-size: 12px; font-weight: bold; }
.ticker-change { font-size: 10px; }

/* Paper Trading Portfolio */
.portfolio-panel {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.portfolio-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.portfolio-title {
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.5);
    margin-right: 24px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(0, 255, 0, 0.6));
}

.portfolio-balance, .portfolio-positions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    position: relative;
    z-index: 2;
    min-width: 120px;
}

.balance-label, .positions-label {
    color: #aaa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.balance-icon, .positions-icon {
    font-size: 12px;
    filter: drop-shadow(0 0 3px rgba(0, 255, 0, 0.4));
}

.balance-amount, .positions-amount {
    color: #00ff00;
    font-weight: bold;
    font-size: 15px;
    text-shadow: 0 0 6px rgba(0, 255, 0, 0.4);
    font-family: 'Courier New', monospace;
}

.portfolio-panel:hover {
    border-color: #00ff88;
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.portfolio-balance:hover, .portfolio-positions:hover {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.5);
    transform: scale(1.02);
    transition: all 0.2s ease;
}

/* Trade Notifications */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.trade-notification {
    font-family: monospace;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.terminal-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 3fr 1fr;
    gap: 8px;
    height: 400px;
}

.terminal-panel {
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 8px;
    color: #00ff00;
    font-family: monospace;
}

.panel-title {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 6px;
    border-bottom: 1px solid #333;
    padding-bottom: 3px;
}

.chart-panel { grid-column: 1; grid-row: 1 / 3; }
.trade-panel { grid-column: 2; grid-row: 1; }
.order-panel { grid-column: 2; grid-row: 2; }

.percentage-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 8px;
}

.percent-btn {
    background: #333;
    color: #00ff00;
    border: 1px solid #555;
    padding: 4px;
    border-radius: 3px;
    cursor: pointer;
    font-family: monospace;
    font-size: 10px;
    transition: all 0.2s;
}

.percent-btn:hover, .percent-btn.active {
    background: #00ff00;
    color: #000;
}

.action-buttons {
    display: flex;
    gap: 6px;
}

.buy-btn, .sell-btn {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.buy-btn {
    background: #00ff00;
    color: #000;
}

.sell-btn {
    background: #ff0000;
    color: #fff;
}

.buy-btn:hover { background: #00cc00; }
.sell-btn:hover { background: #cc0000; }

.order-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.order-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    font-size: 12px;
    padding: 5px 0;
    border-bottom: 1px solid #222;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.asset-change.positive { color: #00ff00; }
.asset-change.negative { color: #ff0000; }

.terminal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 12px;
}

/* ===== WEB BROWSER ===== */
.web-browser {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: linear-gradient(135deg, 
        #ff6b9d 0%, 
        #c44569 25%, 
        #f8b500 50%, 
        #ff6b9d 75%, 
        #9f6ea3 100%);
    background-size: 400% 400%;
    animation: y2kGradient 8s ease infinite;
    border: 3px solid #333;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
    flex-direction: column;
    cursor: move;
    overflow: hidden;
    position: relative;
}

.web-browser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

@keyframes y2kGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.browser-title-bar {
    background: #f0f0f0;
    padding: 10px 15px;
    border-bottom: 1px solid #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
    border-radius: 9px 9px 0 0;
    position: relative;
    z-index: 2;
}

.browser-title { 
    font-weight: bold; 
    font-size: 16px; 
    color: #333;
    text-shadow: none;
    font-family: 'Arial Black', Arial, sans-serif;
    letter-spacing: 1px;
}

.browser-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.browser-btn {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.2);
    transition: all 0.2s ease;
}

.browser-btn:hover { 
    background: linear-gradient(45deg, #ff8fb3, #d65a7a);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.3);
}

.browser-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(0,0,0,0.2);
}

.browser-btn.close:hover { 
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white; 
}

.browser-toolbar {
    background: #f0f0f0;
    padding: 8px;
    border-bottom: 1px solid #ccc;
    position: relative;
    z-index: 2;
}

.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-btn {
    padding: 6px 12px;
    border: 2px solid #333;
    background: linear-gradient(45deg, #f8b500, #ff6b9d);
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.2);
    transition: all 0.2s ease;
}

.nav-btn:hover { 
    background: linear-gradient(45deg, #ffc700, #ff8fb3);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.3);
}

.nav-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(0,0,0,0.2);
}

.browser-location-bar {
    background: #f0f0f0;
    padding: 8px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.location-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.1),
        0 1px 2px rgba(0,0,0,0.1);
}

.location-field input {
    flex: 1;
    padding: 6px 8px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    outline: none;
}

.go-btn {
    padding: 6px 16px;
    background: linear-gradient(45deg, #0078d4, #106ebe);
    color: white;
    border: 2px solid #333;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.2);
    transition: all 0.2s ease;
}

.go-btn:hover {
    background: linear-gradient(45deg, #106ebe, #005a9e);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.3);
}

.go-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(0,0,0,0.2);
}

.browser-content {
    flex: 1;
    padding: 20px;
    background: white;
    overflow-y: auto;
    display: flex;
    position: relative;
    z-index: 1;
}

/* Custom scrollbar for browser content */
.browser-content::-webkit-scrollbar {
    width: 16px;
}

.browser-content::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 8px;
}

.browser-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.browser-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.browser-content::-webkit-scrollbar-corner {
    background: #e0e0e0;
}

@keyframes y2kContentBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Crypto Header */
.crypto-header {
    background: transparent;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    position: relative;
    z-index: 2;
}

.crypto-price {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.crypto-icon {
    font-size: 18px;
}

.crypto-symbol {
    color: #666;
}

.crypto-value {
    color: #333;
    font-weight: bold;
}

.crypto-change.positive {
    color: #4CAF50;
    font-weight: bold;
}

.crypto-change.negative {
    color: #f44336;
    font-weight: bold;
}

.landing-page {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Y2K Header */
.y2k-header {
    margin-bottom: 20px;
}

.y2k-subtitle {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Y2K Banner */
.y2k-banner {
    background: linear-gradient(45deg, #ff6b9d, #c44569, #f8b500, #9f6ea3);
    background-size: 400% 400%;
    animation: y2kBanner 3s ease infinite;
    padding: 10px;
    margin: 20px 0;
    border-radius: 10px;
    border: 2px solid #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.banner-text {
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

@keyframes y2kBanner {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Y2K Counter */
.y2k-counter {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.counter-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    min-width: 120px;
}

.counter-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Arial Black', Arial, sans-serif;
}

.counter-label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Y2K Buttons */
.y2k-button {
    background: linear-gradient(45deg, #ff6b9d, #c44569) !important;
    border: 2px solid #333 !important;
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.2) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

.y2k-button:hover {
    background: linear-gradient(45deg, #ff8fb3, #d65a7a) !important;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 6px 12px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.3) !important;
}

/* Y2K Footer */
.y2k-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #333;
}

.footer-text {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
    font-style: italic;
}

/* Info Sections */
.info-sections {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
}

.info-panel {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.tokenomics-panel {
    background: linear-gradient(135deg, #fff9c4, #fff176);
    border-color: #fdd835;
}

.roadmap-panel {
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
    border-color: #66bb6a;
}

.panel-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
    text-shadow: none;
}

.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-list li {
    padding: 6px 0;
    font-size: 14px;
    color: #333;
    font-weight: 400;
    border-bottom: none;
    line-height: 1.4;
}

.panel-list li:last-child {
    border-bottom: none;
}

.panel-list li:hover {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    padding-left: 5px;
    transition: all 0.2s ease;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-card {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Testimonials Section */
.testimonials-section {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.testimonials-icon {
    font-size: 20px;
}

.testimonials-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.landing-page .mascot {
    font-size: 80px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.browser-logo {
    max-width: 120px;
    height: auto;
    border-radius: 10px;
    background: transparent;
}

.landing-page .main-headline {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    text-shadow: none;
}

.tagline {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
}

.hodl-btn {
    background: linear-gradient(45deg, #4ecdc4, #6dd5ed);
    color: white;
}

.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

.browser-status-bar {
    background: #f0f0f0;
    padding: 4px 8px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    font-weight: normal;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

/* ===== MSN MESSENGER ===== */
#messenger-window {
    max-height: calc(100vh - 100px);
    overflow: hidden;
    /* MSN Messenger position - bottom right, above taskbar */
    top: 50px;
    right: 50px;
    bottom: 50px;
}
.chat-container {
    display: flex;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 157, 0.1) 0%, 
        rgba(196, 69, 105, 0.1) 25%, 
        rgba(248, 181, 0, 0.1) 50%, 
        rgba(159, 110, 163, 0.1) 75%, 
        rgba(255, 107, 157, 0.1) 100%);
    background-size: 400% 400%;
    animation: y2kContentBg 12s ease infinite;
}

.contacts-panel {
    width: 250px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-right: 2px solid #333;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
}

.contacts-header {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: white;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border-bottom: 2px solid #333;
}

.contacts-title { font-weight: bold; }

.contacts-list {
    flex: 1;
    overflow-y: auto;
}

.contact-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item:hover { background: #e0e0e0; }

.contact-icon { font-size: 20px; }
.contact-name { font-weight: bold; }
.contact-status { font-size: 12px; color: #666; }
.contact-status.online { color: #00aa00; }
.contact-status.away { color: #ffaa00; }
.contact-status.offline { color: #666; }

.chat-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-left: 1px solid #e0e0e0;
    max-height: 600px;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(45deg, #f8b500, #ff6b9d);
    padding: 12px;
    border-bottom: 2px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.chat-title { font-weight: bold; }

.chat-controls {
    display: flex;
    gap: 10px;
}

.nudge-btn, .block-btn {
    padding: 6px 12px;
    border: 2px solid #333;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.nudge-btn:hover, .block-btn:hover {
    background: linear-gradient(45deg, #ff8fb3, #d65a7a);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: white;
    max-height: 400px;
    min-height: 300px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    scroll-behavior: smooth;
}

.message {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.message-time {
    color: #666;
    font-size: 12px;
    min-width: 40px;
}

.message-sender {
    font-weight: bold;
    min-width: 120px;
}

.message-text { flex: 1; }

.chat-input-area {
    border-top: 1px solid #ccc;
    padding: 10px;
    background: #f0f0f0;
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
}

.message-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.message-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #999;
    border-radius: 3px;
}

.send-btn {
    padding: 8px 16px;
    background: linear-gradient(45deg, #0078d4, #106ebe);
    color: white;
    border: 2px solid #333;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.send-btn:hover {
    background: linear-gradient(45deg, #106ebe, #005a9e);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.emoji-picker {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-top: 2px solid #333;
    justify-content: center;
    flex-shrink: 0;
}

.emoji-btn {
    padding: 8px;
    border: 2px solid #333;
    background: linear-gradient(45deg, #f8b500, #ff6b9d);
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.emoji-btn:hover {
    background: linear-gradient(45deg, #ffc700, #ff8fb3);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.emoji-btn {
    padding: 4px 8px;
    border: 1px solid #999;
    background: white;
    cursor: pointer;
    border-radius: 3px;
}

.emoji-btn:hover { background: #f0f0f0; }

/* ===== MEDIA PLAYER ===== */
.music-player {
    position: fixed;
    width: 350px;
    height: 450px;
    /* Media Player position - center left */
    top: 50%;
    left: 200px;
    transform: translateY(-50%);
    display: none;
    z-index: 9999;
    background: linear-gradient(135deg, #ff74a4 0%, #9f6ea3 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
}

.player-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.window-btn {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.window-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.close-btn:hover {
    background: rgba(255, 0, 0, 0.7);
}

/* New Modern Media Player Styles */
.player-container {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.player-header {
    text-align: center;
    margin-bottom: 10px;
}

.player-header h3 {
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.album-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.album-artwork {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-disc {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1a1a1a, #333, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: spin 3s linear infinite;
}

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

.vinyl-disc::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2a2a2a, #444, #2a2a2a);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.vinyl-center {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.track-info {
    text-align: center;
    margin: 10px 0;
}

.track-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.track-artist {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.progress-section {
    width: 100%;
    margin: 10px 0;
}

.progress-bar-container {
    width: 100%;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 3px;
    transition: width 0.1s ease;
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-family: monospace;
}

.controls-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.volume-section {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}

.volume-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.volume-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    overflow: visible;
    position: relative;
    transition: all 0.2s ease;
}

.volume-bar:hover {
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
}

.volume-bar.dragging {
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
}

.volume-handle {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #ff6b9d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.1s ease;
    z-index: 10;
}

.volume-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.volume-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
}

.volume-fill {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 2px;
    transition: width 0.1s ease;
}



/* ===== OTHER WINDOWS ===== */
.scanner-header, .degen-header {
    text-align: center;
    margin-bottom: 20px;
}

.scanner-header h2, .degen-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.meme-header {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.meme-header h2 {
    font-size: 24px;
    margin: 0;
    color: #333;
    font-weight: bold;
}

.scanner-input, .degen-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.scan-input, .spin-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.scan-btn, .spin-btn {
    background: #0078d4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.scan-results, .degen-stats {
    display: grid;
    gap: 10px;
}

.scan-item, .stat {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: #f0f0f0;
    border-radius: 3px;
}

.scan-result.positive { color: #00aa00; }
.scan-result.safe { color: #00aa00; }

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.meme-grid::-webkit-scrollbar {
    width: 8px;
}

.meme-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.meme-grid::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 4px;
}

.meme-grid::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

.meme-item {
    background: linear-gradient(145deg, #f8f8f8, #e8e8e8);
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.meme-item:hover {
    background: linear-gradient(145deg, #fff, #f0f0f0);
    border-color: #007bff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.meme-preview {
    width: 100%;
    height: 100px;
    margin-bottom: 8px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.meme-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.meme-item:hover .meme-image {
    transform: scale(1.1);
}

.meme-name {
    font-size: 11px;
    color: #555;
    word-break: break-all;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.meme-item:hover .meme-name {
    color: #007bff;
}

/* Meme Viewer Modal */
.meme-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meme-viewer-content {
    background: white;
    border-radius: 12px;
    max-width: 80%;
    max-height: 80%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.meme-viewer-header {
    background: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meme-viewer-title {
    font-weight: bold;
    font-size: 16px;
}

.meme-viewer-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.meme-viewer-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.meme-viewer-body {
    padding: 20px;
    text-align: center;
}

.meme-viewer-img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.meme-viewer-footer {
    background: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.meme-action-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.meme-action-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.slot-reel {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.balance-display {
    text-align: center;
    font-weight: bold;
    color: #0078d4;
}

.warning {
    background: #ff4444;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

/* ===== TASKBAR ===== */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, #c0c0c0, #a0a0a0);
    border-top: 1px solid #999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.start-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    border: 1px solid #999;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.start-icon {
    font-size: 16px;
    font-weight: bold;
}

.taskbar-tabs {
    display: flex;
    gap: 2px;
    flex: 1;
    margin: 0 10px;
    overflow-x: auto;
}

.taskbar-tab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    background: linear-gradient(to bottom, #e0e0e0, #c0c0c0);
    border: 1px solid #999;
    border-radius: 2px;
    cursor: pointer;
    font-size: 11px;
    white-space: nowrap;
    min-width: 80px;
    max-width: 150px;
    position: relative;
}

.taskbar-tab.active {
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    border-bottom: 2px solid #0078d4;
}

.taskbar-tab:hover {
    background: linear-gradient(to bottom, #f5f5f5, #d5d5d5);
}

.taskbar-tab .tab-icon {
    font-size: 12px;
}

.taskbar-tab .tab-title {
    overflow: hidden;
    text-overflow: ellipsis;
}

.taskbar-tab .tab-close {
    margin-left: 5px;
    font-size: 10px;
    color: #666;
    cursor: pointer;
    padding: 1px 3px;
    border-radius: 2px;
}

.taskbar-tab .tab-close:hover {
    background: #ff6b6b;
    color: white;
}

.taskbar-icons {
    display: flex;
    gap: 5px;
}

.taskbar-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    border: 1px solid #999;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.taskbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .desktop-icons {
        grid-template-columns: 1fr;
        width: 120px;
    }
    
    .main-headline {
        font-size: 32px;
    }
    
    .browser-window {
        width: 90vw;
        height: 80vh;
    }
    
    .terminal-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .chart-panel {
        grid-column: 1;
        grid-row: 1;
    }
}

/* ===== ENHANCED DEGEN MODE CASINO ===== */
#degen-window {
    background: linear-gradient(135deg, #ff6b9d, #c44569, #f8b500, #00ff00, #00bfff) !important;
    background-size: 400% 400%;
    animation: y2kGradient 8s ease infinite;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    /* Degen Mode position - bottom left, above taskbar */
    top: 50px;
    left: 50px;
    bottom: 50px;
}

#degen-window .window-title-bar {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid #333;
    backdrop-filter: blur(5px);
}

#degen-window .window-controls {
    position: relative;
    z-index: 11;
}

#degen-window .window-btn {
    background: #c0c0c0 !important;
    border: 1px solid #999 !important;
    color: #000 !important;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

#degen-window .window-btn:hover {
    background: #d0d0d0 !important;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

#degen-window .window-btn.close:hover {
    background: #ff0000 !important;
    color: #fff !important;
    box-shadow: 0 0 5px #ff0000;
}

#degen-window .window-title {
    color: #000 !important;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.matrix-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.matrix-column {
    position: absolute;
    top: -100%;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.2;
    opacity: 0.8;
    animation: matrixFall linear infinite;
    text-shadow: 0 0 5px #00ff00;
}

.matrix-column.bright {
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff, 0 0 20px #00ff00;
}

.matrix-column.dim {
    color: #004400;
    text-shadow: 0 0 2px #00ff00;
}

@keyframes matrixFall {
    0% {
        top: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.window-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
}

#degen-window .window-content {
    background: transparent;
    backdrop-filter: none;
    padding: 10px;
}

#scanner-window .window-content {
    background: transparent;
    backdrop-filter: none;
    padding: 6px;
}

#scanner-window .window-title-bar {
    background: rgba(0, 0, 0, 0.9) !important;
    border-bottom: 2px solid #00ff00 !important;
}

#scanner-window .window-title {
    color: #00ff00 !important;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 0 0 5px #00ff00;
}

#scanner-window .window-btn {
    background: #333 !important;
    border: 2px solid #00ff00 !important;
    color: #00ff00 !important;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px #00ff00;
}

#scanner-window .window-btn:hover {
    background: #555 !important;
    box-shadow: 0 0 10px #00ff00;
}

#scanner-window .window-btn.close:hover {
    background: #ff0000 !important;
    color: #fff !important;
    box-shadow: 0 0 10px #ff0000;
}

.degen-header {
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b9d, #c44569, #f8b500);
    background-size: 400% 400%;
    animation: y2kGradient 8s ease infinite;
    padding: 15px;
    border-radius: 12px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 3;
}

.degen-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.warning {
    background: #ff0000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin: 10px 0;
    animation: pulse 2s infinite;
    border: 2px solid #fff;
}

.jackpot-display {
    background: rgba(0,0,0,0.3);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px solid #ffd700;
}

.jackpot-label {
    font-size: 14px;
    color: #ffd700;
    font-weight: bold;
}

.jackpot-amount {
    font-size: 24px;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 0 10px #ffd700;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ffd700; }
    to { text-shadow: 0 0 20px #ffd700, 0 0 30px #ffd700; }
}

.slot-machine-container {
    position: relative;
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.slot-machine {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    position: relative;
}

.slot-reel {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #333, #555);
    border: 3px solid #00ff00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    transition: box-shadow 0.3s ease;
}

.slot-reel.spinning {
    box-shadow: 
        inset 0 0 10px rgba(0,0,0,0.5),
        0 0 20px rgba(0, 255, 0, 0.8),
        0 0 40px rgba(0, 255, 0, 0.4);
    animation: reelGlow 0.5s ease-in-out infinite alternate;
}

@keyframes reelGlow {
    from {
        box-shadow: 
            inset 0 0 10px rgba(0,0,0,0.5),
            0 0 20px rgba(0, 255, 0, 0.8),
            0 0 40px rgba(0, 255, 0, 0.4);
    }
    to {
        box-shadow: 
            inset 0 0 10px rgba(0,0,0,0.5),
            0 0 30px rgba(0, 255, 0, 1),
            0 0 60px rgba(0, 255, 0, 0.6);
    }
}

.reel-content {
    transition: none;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.win-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ffd700, #ff0000);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px #ffd700;
}

.win-line.active {
    opacity: 1;
    animation: winPulse 1s ease-in-out infinite alternate;
}

@keyframes winPulse {
    from { box-shadow: 0 0 10px #ffd700; }
    to { box-shadow: 0 0 20px #ffd700, 0 0 30px #ffd700; }
}

.degen-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.bet-controls label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.bet-buttons {
    display: flex;
    gap: 8px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.bet-btn {
    padding: 10px 20px;
    border: 3px solid #000;
    border-radius: 0;
    background: #c0c0c0;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.1s ease;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    position: relative;
    box-shadow: 
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #ffffff,
        2px 2px 0px #000000;
}

.bet-btn:hover {
    background: #d0d0d0;
    transform: none;
    box-shadow: 
        inset -1px -1px 0px #808080,
        inset 1px 1px 0px #ffffff,
        1px 1px 0px #000000;
}

.bet-btn:active {
    background: #a0a0a0;
    box-shadow: 
        inset 2px 2px 0px #808080,
        inset -2px -2px 0px #ffffff;
    transform: translate(1px, 1px);
}

.bet-btn.active {
    background: #00ff00;
    color: #000;
    border-color: #000;
    box-shadow: 
        inset -2px -2px 0px #00cc00,
        inset 2px 2px 0px #00ff80,
        2px 2px 0px #000000;
}

.spin-btn {
    padding: 20px 40px;
    border: 4px solid #000;
    border-radius: 0;
    background: #ff0000;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.1s ease;
    text-shadow: 2px 2px 0px #000;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    position: relative;
    box-shadow: 
        inset -3px -3px 0px #cc0000,
        inset 3px 3px 0px #ff6666,
        4px 4px 0px #000000;
    letter-spacing: 2px;
}

.spin-btn:hover {
    background: #ff3333;
    transform: none;
    box-shadow: 
        inset -2px -2px 0px #cc0000,
        inset 2px 2px 0px #ff6666,
        3px 3px 0px #000000;
}

.spin-btn:active {
    background: #cc0000;
    box-shadow: 
        inset 3px 3px 0px #990000,
        inset -3px -3px 0px #ff3333;
    transform: translate(2px, 2px);
}

.spin-btn:disabled {
    background: #666;
    border-color: #333;
    cursor: not-allowed;
    transform: none;
    box-shadow: 
        inset -3px -3px 0px #444,
        inset 3px 3px 0px #888,
        4px 4px 0px #000000;
    color: #999;
}

.action-btn {
    padding: 12px 24px;
    border: 3px solid #000;
    border-radius: 0;
    background: #0000ff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.1s ease;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    position: relative;
    box-shadow: 
        inset -3px -3px 0px #0000cc,
        inset 3px 3px 0px #6666ff,
        3px 3px 0px #000000;
    letter-spacing: 1px;
}

.action-btn:hover {
    background: #3333ff;
    transform: none;
    box-shadow: 
        inset -2px -2px 0px #0000cc,
        inset 2px 2px 0px #6666ff,
        2px 2px 0px #000000;
}

.action-btn:active {
    background: #0000cc;
    box-shadow: 
        inset 3px 3px 0px #000099,
        inset -3px -3px 0px #3333ff;
    transform: translate(1px, 1px);
}

.max-bet-btn {
    background: #ff8800;
    box-shadow: 
        inset -3px -3px 0px #cc6600,
        inset 3px 3px 0px #ffaa44,
        3px 3px 0px #000000;
}

.max-bet-btn:hover {
    background: #ff9900;
    box-shadow: 
        inset -2px -2px 0px #cc6600,
        inset 2px 2px 0px #ffaa44,
        2px 2px 0px #000000;
}

.auto-spin-btn {
    background: #00aa00;
    box-shadow: 
        inset -3px -3px 0px #008800,
        inset 3px 3px 0px #44cc44,
        3px 3px 0px #000000;
}

.auto-spin-btn:hover {
    background: #00bb00;
    box-shadow: 
        inset -2px -2px 0px #008800,
        inset 2px 2px 0px #44cc44,
        2px 2px 0px #000000;
}

.auto-spin-btn.active {
    background: #ff0000;
    box-shadow: 
        inset -3px -3px 0px #cc0000,
        inset 3px 3px 0px #ff6666,
        3px 3px 0px #000000;
}

.reset-btn {
    background: #aa0000;
    box-shadow: 
        inset -3px -3px 0px #880000,
        inset 3px 3px 0px #cc4444,
        3px 3px 0px #000000;
}

.reset-btn:hover {
    background: #bb0000;
    box-shadow: 
        inset -2px -2px 0px #880000,
        inset 2px 2px 0px #cc4444,
        2px 2px 0px #000000;
}

.balance-display {
    background: #000;
    padding: 15px 25px;
    border: 4px solid #00ff00;
    border-radius: 0;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 0 0 8px #00ff00;
    box-shadow: 
        inset -3px -3px 0px #008800,
        inset 3px 3px 0px #00ff80,
        4px 4px 0px #000000;
    position: relative;
}

.balance-label {
    margin-right: 8px;
}

.balance-amount {
    font-size: 18px;
}

.degen-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 20px;
}

.stat-label {
    font-weight: bold;
    color: #333;
    font-size: 12px;
}

.stat-value {
    font-weight: bold;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.recent-wins {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.recent-wins h3 {
    margin: 0 0 10px 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 6px rgba(0, 255, 0, 0.4);
}

.wins-list {
    max-height: 120px;
    overflow-y: auto;
}

.win-item {
    background: rgba(0, 255, 0, 0.1);
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 6px;
    border-left: 3px solid #00ff00;
    animation: slideInWin 0.5s ease;
}

@keyframes slideInWin {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== ENHANCED RUG SCANNER ===== */
#scanner-window {
    background: #000 !important;
    max-height: 80vh;
    overflow: hidden;
    /* Rug Scanner position - top right corner */
    position: fixed;
    top: 50px;
    right: 50px;
    width: 400px;
    height: 500px;
}

.scanner-header {
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #00ff00;
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.scanner-header h2 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #fff;
    text-shadow: 0 0 10px #00ff00;
}

.scanner-header p {
    margin: 2px 0;
    color: #00ff00;
    font-size: 11px;
}

.scanner-status {
    margin-top: 4px;
    padding: 4px 8px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    border-radius: 3px;
    font-size: 10px;
    color: #00ff00;
}

.scanner-input {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.coin-selector {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.coin-btn {
    padding: 4px 8px;
    border: 1px solid #333;
    border-radius: 0;
    background: #c0c0c0;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.1s ease;
    font-size: 10px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    box-shadow: 
        inset -1px -1px 0px #808080,
        inset 1px 1px 0px #ffffff,
        1px 1px 0px #000000;
}

.coin-btn:hover {
    background: #d0d0d0;
    box-shadow: 
        inset -1px -1px 0px #808080,
        inset 1px 1px 0px #ffffff,
        1px 1px 0px #000000;
}

.coin-btn.active {
    background: #00ff00;
    color: #000;
    border-color: #000;
    box-shadow: 
        inset -2px -2px 0px #00cc00,
        inset 2px 2px 0px #00ff80,
        2px 2px 0px #000000;
}

.scan-input {
    padding: 6px;
    border: 2px solid #000;
    border-radius: 0;
    background: #000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    text-align: center;
    box-shadow: 
        inset -1px -1px 0px #333,
        inset 1px 1px 0px #666;
}

.scan-input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 
        inset -2px -2px 0px #00cc00,
        inset 2px 2px 0px #00ff80,
        0 0 10px rgba(0, 255, 0, 0.5);
}

.scan-btn {
    padding: 8px 16px;
    border: 2px solid #000;
    border-radius: 0;
    background: #0000ff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.1s ease;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    box-shadow: 
        inset -2px -2px 0px #0000cc,
        inset 2px 2px 0px #6666ff,
        2px 2px 0px #000000;
    letter-spacing: 1px;
}

.scan-btn:hover {
    background: #3333ff;
    box-shadow: 
        inset -2px -2px 0px #0000cc,
        inset 2px 2px 0px #6666ff,
        2px 2px 0px #000000;
}

.scan-btn:active {
    background: #0000cc;
    box-shadow: 
        inset 3px 3px 0px #000099,
        inset -3px -3px 0px #3333ff;
    transform: translate(1px, 1px);
}

.scanning-animation {
    margin: 20px 0;
    text-align: center;
}

.scanning-bar {
    width: 100%;
    height: 20px;
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 10px;
}

.scanning-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #00cc00);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px #00ff00;
}

.scanning-text {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    text-shadow: 0 0 5px #00ff00;
}

.scan-results {
    display: grid;
    gap: 4px;
    margin-bottom: 8px;
}

.scan-item {
    padding: 6px 8px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 0;
    border: 1px solid #00ff00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.scan-label {
    font-weight: bold;
}

.scan-result {
    font-weight: bold;
    text-shadow: 0 0 5px currentColor;
}

.scan-result.positive {
    color: #00ff00;
}

.scan-result.negative {
    color: #ff0000;
}

.scan-result.safe {
    color: #00ff00;
}

.scan-result.warning {
    color: #ffaa00;
}

.scan-summary {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #00ff00;
    border-radius: 0;
    padding: 8px;
    text-align: center;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.summary-header h3 {
    margin: 0 0 6px 0;
    color: #fff;
    text-shadow: 0 0 10px #00ff00;
    font-size: 14px;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    font-size: 11px;
}

.summary-icon {
    font-size: 12px;
}

.summary-text {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

@keyframes degenNotification {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}