/* ===== JACK CHAIN OS - Windows XP Retro Style ===== */

:root {
    --bg-desktop: #0A0E1A;
    --cyan: #00E5FF;
    --gold: #FFD700;
    --orange: #FF6B35;
    --purple: #7B2FBE;
    --green: #00FF88;
    --titlebar-start: #1a3a6e;
    --titlebar-end: #2d6bc4;
    --win-bg: #ECE9D8;
    --win-body-bg: #0d1117;
    --text-light: #e6edf3;
    --text-dim: #8b949e;
    --border-win: #0054E3;
    --taskbar-bg: linear-gradient(180deg, #1f3a7a 0%, #122766 50%, #0e1f52 100%);
    --start-green: #3c9a3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', 'Segoe UI', Tahoma, sans-serif;
    background: var(--bg-desktop);
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
    cursor: default;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
}

/* ===== BOOT SCREEN ===== */
.boot-screen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.boot-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.boot-content {
    text-align: center;
}

.boot-ascii {
    color: var(--cyan);
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--cyan);
}

.boot-title {
    font-family: 'Press Start 2P', monospace;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--gold);
}

.boot-progress {
    width: 400px;
    height: 20px;
    border: 2px solid var(--cyan);
    border-radius: 3px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.boot-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--cyan);
}

.boot-text {
    color: var(--text-dim);
    font-size: 12px;
    font-family: 'Noto Sans', monospace;
}

/* ===== DESKTOP ICONS ===== */
.desktop-icons {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    width: 80px;
    text-align: center;
}

.desktop-icon:hover {
    background: rgba(0, 229, 255, 0.15);
}

.desktop-icon .icon-img {
    font-size: 32px;
}

.desktop-icon span {
    font-size: 11px;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

/* ===== WINDOWS ===== */
.win-window {
    position: absolute;
    border: 2px solid var(--border-win);
    border-radius: 8px 8px 0 0;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.1);
    min-width: 400px;
    max-width: 900px;
    max-height: calc(100vh - 60px);
    overflow: hidden;
    z-index: 10;
    animation: windowOpen 0.3s ease-out;
    transition: box-shadow 0.2s;
}

.win-window.focused {
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 229, 255, 0.15);
    z-index: 20;
}

.win-window.hidden {
    display: none;
}

@keyframes windowOpen {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.hero-window {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
}

#win-about { top: 60px; left: 40px; width: 850px; }
#win-tokenomics { top: 80px; left: 80px; width: 750px; }
#win-roadmap { top: 100px; left: 120px; width: 700px; }
#win-ecosystem { top: 70px; left: 60px; width: 870px; }
#win-jackina { top: 65px; left: 50px; width: 850px; }
#win-community { top: 90px; left: 100px; width: 650px; }

/* ===== TITLEBAR ===== */
.win-titlebar {
    background: linear-gradient(180deg, var(--titlebar-start), var(--titlebar-end));
    padding: 6px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: grab;
    border-radius: 6px 6px 0 0;
    user-select: none;
}

.win-titlebar:active { cursor: grabbing; }

.win-titlebar-text {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.win-titlebar-controls {
    display: flex;
    gap: 3px;
}

.win-btn {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(0,0,0,0.1));
}

.win-btn:hover { background: rgba(255,255,255,0.3); }
.win-btn.close:hover { background: #e04040; }

/* ===== WINDOW BODY ===== */
.win-body {
    background: var(--win-body-bg);
    padding: 20px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.win-body::-webkit-scrollbar { width: 14px; }
.win-body::-webkit-scrollbar-track { background: #1a1a2e; }
.win-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), var(--titlebar-end));
    border: 2px solid #1a1a2e;
    border-radius: 4px;
}

/* ===== HERO ===== */
.hero-body { text-align: center; padding: 40px 30px; }

.hero-ascii-art pre {
    color: var(--cyan);
    font-size: 14px;
    line-height: 1.1;
    text-shadow: 0 0 10px var(--cyan);
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 0 0 30px var(--gold), 0 0 60px rgba(255, 215, 0, 0.3);
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.glitch::before {
    color: var(--cyan);
    animation: glitch1 3s infinite;
    clip-path: inset(0 0 60% 0);
}

.glitch::after {
    color: var(--orange);
    animation: glitch2 3s infinite;
    clip-path: inset(60% 0 0 0);
}

@keyframes glitch1 {
    0%, 93%, 100% { transform: translate(0); }
    94% { transform: translate(-3px, 1px); }
    95% { transform: translate(3px, -1px); }
}

@keyframes glitch2 {
    0%, 96%, 100% { transform: translate(0); }
    97% { transform: translate(3px, 1px); }
    98% { transform: translate(-3px, -1px); }
}

.hero-subtitle {
    font-size: 16px;
    color: var(--cyan);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-desc {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.win-action-btn {
    padding: 10px 24px;
    border: 2px solid var(--cyan);
    background: transparent;
    color: var(--cyan);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.win-action-btn:hover {
    background: var(--cyan);
    color: var(--bg-desktop);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.win-action-btn.primary {
    background: var(--cyan);
    color: var(--bg-desktop);
}

.win-action-btn.primary:hover {
    background: transparent;
    color: var(--cyan);
}

.win-action-btn.secondary {
    border-color: var(--text-dim);
    color: var(--text-dim);
}

.win-action-btn.secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.win-action-btn.gold {
    border-color: var(--gold);
    color: var(--gold);
}

.win-action-btn.gold:hover {
    background: var(--gold);
    color: var(--bg-desktop);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.win-action-btn.small {
    padding: 6px 16px;
    font-size: 12px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px 14px;
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 6px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ===== ABOUT ===== */
.about-content h2, .tokenomics-content h2, .roadmap-content h2,
.ecosystem-content h2, .community-content h2,
.mining-content h2, .privacy-content h2 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-card {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.about-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.15);
}

.about-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-card h3 {
    color: var(--cyan);
    font-size: 16px;
    margin-bottom: 8px;
}

.about-card p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.5;
}

/* ===== TOKENOMICS ===== */
.token-chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.token-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.token-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
}

.token-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-box {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.detail-box h4 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 8px;
}

.detail-box p {
    color: var(--text-dim);
    font-size: 13px;
}

/* ===== ROADMAP ===== */
.roadmap-timeline {
    position: relative;
    padding-left: 40px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan), var(--gold), var(--text-dim));
}

.roadmap-phase {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.phase-marker {
    position: absolute;
    left: -33px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    z-index: 1;
}

.roadmap-phase.completed .phase-marker {
    background: var(--cyan);
    color: var(--bg-desktop);
    box-shadow: 0 0 15px var(--cyan);
}

.roadmap-phase.active .phase-marker {
    background: var(--gold);
    color: var(--bg-desktop);
    box-shadow: 0 0 15px var(--gold);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 5px var(--gold); }
    50% { box-shadow: 0 0 25px var(--gold), 0 0 50px rgba(255, 215, 0, 0.3); }
}

.roadmap-phase.upcoming .phase-marker {
    background: rgba(139, 148, 158, 0.3);
    color: var(--text-dim);
    border: 1px solid var(--text-dim);
}

.phase-content {
    flex: 1;
}

.phase-content h3 {
    color: var(--cyan);
    font-size: 18px;
    margin-bottom: 5px;
}

.phase-status {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.roadmap-phase.completed .phase-status { color: var(--green); }
.roadmap-phase.active .phase-status { color: var(--gold); }
.roadmap-phase.upcoming .phase-status { color: var(--text-dim); }

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content li {
    color: var(--text-dim);
    font-size: 13px;
    padding: 3px 0;
    position: relative;
    padding-left: 16px;
}

.phase-content li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
}

/* ===== ECOSYSTEM ===== */
.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.eco-card {
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.eco-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.1);
}

.eco-icon { font-size: 40px; margin-bottom: 10px; }

.eco-card h3 {
    color: var(--cyan);
    font-size: 15px;
    margin-bottom: 8px;
}

.eco-card p {
    color: var(--text-dim);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* ===== JACKINA GAMES ===== */
.jackina-content h2 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.jackina-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.jackina-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    background: rgba(0, 229, 255, 0.03);
    cursor: default;
    transition: all 0.3s;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

.jackina-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.15);
}

.jackina-card.action { border-color: rgba(255, 107, 53, 0.3); background: rgba(255, 107, 53, 0.05); }
.jackina-card.action:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2); }

.jackina-card.puzzle { border-color: rgba(123, 47, 190, 0.3); background: rgba(123, 47, 190, 0.05); }
.jackina-card.puzzle:hover { border-color: var(--purple); box-shadow: 0 6px 20px rgba(123, 47, 190, 0.2); }

.jackina-card.classic { border-color: rgba(0, 229, 255, 0.3); background: rgba(0, 229, 255, 0.05); }
.jackina-card.classic:hover { border-color: var(--cyan); box-shadow: 0 6px 20px rgba(0, 229, 255, 0.2); }

.jackina-card.casino { border-color: rgba(255, 215, 0, 0.3); background: rgba(255, 215, 0, 0.05); }
.jackina-card.casino:hover { border-color: var(--gold); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2); }

.jackina-card.idle { border-color: rgba(0, 255, 136, 0.3); background: rgba(0, 255, 136, 0.05); }
.jackina-card.idle:hover { border-color: var(--green); box-shadow: 0 6px 20px rgba(0, 255, 136, 0.2); }

.jackina-card.sim { border-color: rgba(0, 150, 255, 0.3); background: rgba(0, 150, 255, 0.05); }
.jackina-card.sim:hover { border-color: #0096FF; box-shadow: 0 6px 20px rgba(0, 150, 255, 0.2); }

.jackina-emoji {
    font-size: 28px;
}

/* ===== COMMUNITY ===== */
.community-content { text-align: center; }

.community-desc {
    color: var(--text-dim);
    margin-bottom: 25px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
}

.social-card:hover {
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-3px);
}

.social-icon { font-size: 30px; }
.social-card.twitter:hover { border-color: #1DA1F2; box-shadow: 0 0 20px rgba(29, 161, 242, 0.3); }
.social-card.telegram:hover { border-color: #0088cc; box-shadow: 0 0 20px rgba(0, 136, 204, 0.3); }
.social-card.discord:hover { border-color: #5865F2; box-shadow: 0 0 20px rgba(88, 101, 242, 0.3); }
.social-card.github:hover { border-color: #fff; box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
.social-card.youtube:hover { border-color: #FF0000; box-shadow: 0 0 20px rgba(255, 0, 0, 0.3); }

.contract-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    display: inline-block;
}

.contract-box h3 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 10px;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 4px;
    transition: border-color 0.2s;
}

.contract-address:hover {
    border-color: var(--cyan);
}

.contract-address code {
    color: var(--cyan);
    font-size: 13px;
    font-family: monospace;
}

.copy-icon {
    font-size: 16px;
    color: var(--text-dim);
}

.copy-msg {
    color: var(--green);
    font-size: 12px;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-msg.show { opacity: 1; }

/* ===== TASKBAR ===== */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--taskbar-bg);
    border-top: 2px solid #4080d0;
    display: flex;
    align-items: center;
    z-index: 9999;
    padding: 0 4px;
}

.start-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    background: linear-gradient(180deg, #5cb85c 0%, #3c9a3c 50%, #2d7a2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    height: 32px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    transition: filter 0.2s;
}

.start-btn:hover { filter: brightness(1.1); }

.start-icon { font-size: 18px; }

.taskbar-items {
    display: flex;
    gap: 3px;
    margin-left: 8px;
    flex: 1;
    overflow-x: auto;
}

.taskbar-item {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    height: 28px;
    display: flex;
    align-items: center;
}

.taskbar-item:hover { background: rgba(255, 255, 255, 0.15); }
.taskbar-item.active {
    background: rgba(0, 229, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.3);
}

.taskbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.taskbar-ticker {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
}

.taskbar-clock {
    font-size: 12px;
    color: #fff;
    min-width: 70px;
    text-align: center;
}

/* ===== START MENU ===== */
.start-menu {
    position: fixed;
    bottom: 42px;
    left: 4px;
    width: 280px;
    background: linear-gradient(180deg, #1a2744, #0d1117);
    border: 2px solid var(--border-win);
    border-radius: 8px 8px 0 0;
    z-index: 10000;
    overflow: hidden;
    animation: menuOpen 0.2s ease-out;
}

.start-menu.hidden { display: none; }

@keyframes menuOpen {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.start-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(90deg, var(--titlebar-start), var(--titlebar-end));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.start-menu-avatar { font-size: 28px; }

.start-menu-items { padding: 8px 0; }

.start-menu-item {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.start-menu-item:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
}

.start-menu-item span { font-size: 18px; }

.start-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 16px;
}

/* ===== MINING ===== */
.mining-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.mining-card {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 8px;
    padding: 20px;
}

.mining-card h3 {
    color: var(--cyan);
    font-size: 15px;
    margin-bottom: 8px;
}

.mining-card p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.6;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.crypto-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.4;
}

.crypto-item strong {
    color: var(--cyan);
}

/* ===== PRIVACY ===== */
.section-intro {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.privacy-card {
    background: rgba(123, 47, 190, 0.05);
    border: 1px solid rgba(123, 47, 190, 0.2);
    border-radius: 8px;
    padding: 20px;
}

.privacy-card h3 {
    color: var(--purple);
    font-size: 15px;
    margin-bottom: 8px;
}

.privacy-card p {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.6;
}

/* ===== TABLES ===== */
.token-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 12px;
}

.token-table th {
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
}

.token-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
}

.token-table tr:hover td {
    background: rgba(0, 229, 255, 0.03);
}

.total-row td {
    border-top: 2px solid var(--gold);
    color: var(--gold) !important;
}

.token-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.detail-big {
    font-size: 16px !important;
    color: var(--gold) !important;
    font-weight: 700;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px !important;
    word-break: break-all;
}

.sub-heading {
    color: var(--cyan);
    font-size: 16px;
    margin: 20px 0 12px;
}

.detail-note {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.network-info {
    text-align: left;
}

.network-info p {
    color: var(--text-dim);
    font-size: 13px;
    padding: 4px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .win-window {
        min-width: 95vw !important;
        max-width: 98vw !important;
        left: 1vw !important;
        right: 1vw !important;
    }

    .about-grid, .eco-grid { grid-template-columns: 1fr 1fr; }
    .social-grid { grid-template-columns: 1fr 1fr; }
    .jackina-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-title { font-size: 24px; }

    .desktop-icons { display: none; }
}

@media (max-width: 500px) {
    .about-grid, .eco-grid, .social-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .token-chart-container { flex-direction: column; }
    .token-details { grid-template-columns: 1fr; }
}
