body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #00ff00; /* Bright green text */
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.top-banner {
    width: 100%;
    background-color: #0a0a0a;
    border-bottom: 1px solid #0a5c0a;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
}

.top-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 14px;
}

.crypto-address {
    color: #0f0;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.twitter-link {
    color: #0f0;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    transition: color 0.2s;
}

.twitter-link:hover {
    color: #0a5;
    text-decoration: underline;
}

.terminal {
    width: 95%;
    max-width: 1200px;
    height: 85vh;
    background-color: #0a0a0a;
    border: 1px solid #0a5c0a;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    position: relative;
    margin: 20px auto;
}

.terminal-header {
    height: 24px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid #333;
    user-select: none;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.terminal-body {
    padding: 20px;
    height: calc(100% - 64px);
    overflow-y: auto;
    font-size: 16px;
    white-space: pre;
    font-family: 'Courier New', monospace;
    line-height: 1.4;
}

.prompt {
    color: #2ecc71; /* Green prompt */
    margin-right: 5px;
}

.command {
    color: #2ecc71; /* Green commands */
}

.text {
    color: #00ff00; /* Bright green text */
    white-space: pre;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.purple {
    color: #9f7fe5;
}

.green {
    color: #2ecc71;
}

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

@keyframes glow {
    from {
        box-shadow: 0 0 2px #00ff00, 0 0 4px #00ff00;
    }
    to {
        box-shadow: 0 0 5px #00ff00, 0 0 20px #00ff00;
    }
}

@keyframes flicker {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #00ff00; /* Green cursor */
    margin-left: 2px;
    animation: blink 1s infinite, glow 1.5s ease-in-out infinite alternate;
    vertical-align: middle;
    box-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
}

/* Terminal Effects */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 255, 0, 0) 0%,
        rgba(0, 255, 0, 0.03) 50%,
        rgba(0, 255, 0, 0) 100%
    );
    pointer-events: none;
    z-index: 1000;
    animation: scan 8s linear infinite;
    opacity: 0.1;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.flicker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
}

.glitch {
    position: absolute;
    color: #0f0;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    text-shadow: 0 0 5px #0f0;
    animation: glitch 0.2s linear infinite;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1001;
}

@keyframes glitch {
    0% { text-shadow: 2px 0 #0f0, -2px 0 #0f0; }
    25% { text-shadow: -2px 0 #0f0, 2px 0 #0f0; }
    50% { text-shadow: 2px 0 #0f0, -2px 0 #0f0; }
    75% { text-shadow: -2px 0 #0f0, 2px 0 #0f0; }
    100% { text-shadow: 2px 0 #0f0, -2px 0 #0f0; }
}

/* Title Styling */
.title {
    color: #0f0;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
    line-height: 1.2;
    font-size: 10px;
    white-space: pre;
    font-family: 'Courier New', monospace;
}

.ascii-art {
    color: #0f0;
    line-height: 1.2;
    white-space: pre;
    margin: 10px 0;
}

/* Custom scrollbar */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

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

.terminal-body::-webkit-scrollbar-thumb {
    background: #0a5c0a;
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: #0d7a0d;
}

/* Terminal cursor animation */
@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.blink {
    animation: cursor-blink 1s step-end infinite;
}

/* Conversation Windows */
.terminal-window {
    position: fixed;
    width: 600px;
    height: 400px;
    background-color: #0a0a0a;
    border: 1px solid #0a5c0a;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    top: 50px;
    left: 50px;
    z-index: 1000;
    animation: fadeIn 0.3s;
}

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

@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.95); }
}

.window-header {
    background-color: #0a2a0a;
    padding: 8px 12px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0a5c0a;
    user-select: none;
}

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

.window-close {
    color: #0f0;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.window-close:hover {
    background-color: #0f0;
    color: #000;
}

.window-content {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.4;
    color: #0f0;
    white-space: pre-wrap;
}

/* Conversation List */
.conversation-list {
    margin: 10px 0;
    line-height: 1.6;
}

.conversation-link {
    display: block;
    color: #0f0;
    cursor: pointer;
    padding: 2px 5px;
    margin: 2px 0;
}

.conversation-link:hover {
    background-color: rgba(0, 255, 0, 0.1);
    text-decoration: underline;
}
