@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    background: #0a0a0a;
    color: #00ff00;
    padding: 20px;
    min-height: 100vh;
    image-rendering: pixelated;
    font-size: 12px;
}

/* Scanline effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.05) 0px,
        rgba(0, 255, 0, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border: 4px solid #00ff00;
    box-shadow:
        0 0 10px #00ff00,
        inset 0 0 30px rgba(0, 255, 0, 0.1);
    padding: 20px;
}

h1 {
    text-align: center;
    color: #00ff00;
    margin-bottom: 20px;
    font-size: 24px;
    text-shadow: 0 0 10px #00ff00;
    letter-spacing: 3px;
}

.tagline {
    text-align: center;
    color: #00aa00;
    margin-bottom: 30px;
    font-size: 8px;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.stat-card {
    background: #001100;
    padding: 12px;
    border: 2px solid #00ff00;
    position: relative;
    box-shadow: 0 0 5px #00ff00;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ff00;
}

.stat-label {
    font-size: 8px;
    color: #00aa00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 14px;
    font-weight: normal;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.section {
    background: #001100;
    padding: 15px;
    border: 2px solid #00ff00;
    box-shadow: 0 0 5px #00ff00;
}

.section h2 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 12px;
    text-shadow: 0 0 5px #00ff00;
    letter-spacing: 2px;
}

button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    background: #002200;
    color: #00ff00;
    border: 2px solid #00ff00;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.05s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 0 5px #00ff00,
        inset -2px -2px 0 rgba(0, 255, 0, 0.3),
        inset 2px 2px 0 rgba(0, 255, 0, 0.1);
    position: relative;
}

button:hover:not(:disabled) {
    background: #00ff00;
    color: #000;
    box-shadow:
        0 0 15px #00ff00,
        inset -2px -2px 0 rgba(0, 0, 0, 0.3),
        inset 2px 2px 0 rgba(255, 255, 255, 0.2);
}

button:active:not(:disabled) {
    transform: translate(1px, 1px) scale(0.98);
    box-shadow:
        0 0 5px #00ff00,
        inset 2px 2px 3px rgba(0, 0, 0, 0.5),
        inset -1px -1px 1px rgba(0, 255, 0, 0.2);
}

button:disabled {
    background: #001100;
    color: #004400;
    border-color: #004400;
    cursor: not-allowed;
    box-shadow: none;
}

.primary-action {
    background: #003300 !important;
    border: 3px solid #00ff00 !important;
    font-size: 10px !important;
    padding: 12px !important;
    box-shadow:
        0 0 10px #00ff00,
        inset -2px -2px 0 rgba(0, 255, 0, 0.4),
        inset 2px 2px 0 rgba(0, 255, 0, 0.2) !important;
}

.primary-action:hover:not(:disabled) {
    background: #00ff00 !important;
    box-shadow:
        0 0 20px #00ff00,
        inset -2px -2px 0 rgba(0, 0, 0, 0.3),
        inset 2px 2px 0 rgba(255, 255, 255, 0.3) !important;
}

.button-info {
    font-size: 7px;
    color: #00aa00;
    margin-top: -5px;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 1px;
}

.upgrade-item {
    background: #000;
    padding: 10px;
    margin: 8px 0;
    border: 2px solid #00aa00;
}

.upgrade-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.upgrade-name {
    font-size: 8px;
    color: #00ff00;
}

.upgrade-cost {
    color: #00ff00;
    font-size: 8px;
}

.upgrade-desc {
    font-size: 7px;
    color: #00aa00;
    margin-bottom: 8px;
    line-height: 1.4;
}

.upgrade-owned {
    font-size: 7px;
    color: #00aa00;
}

.log-section {
    background: #000;
    padding: 15px;
    border: 2px solid #00ff00;
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow:
        0 0 5px #00ff00,
        inset 0 0 20px rgba(0, 255, 0, 0.1);
}

.log-section::-webkit-scrollbar {
    width: 8px;
}

.log-section::-webkit-scrollbar-track {
    background: #001100;
}

.log-section::-webkit-scrollbar-thumb {
    background: #00ff00;
    border: 1px solid #000;
}

.log-entry {
    color: #00ff00;
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    margin: 5px 0;
    animation: fadeIn 0.3s;
    line-height: 1.5;
    text-shadow: 0 0 3px #00ff00;
}

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

.log-event {
    color: #ffff00;
    text-shadow: 0 0 3px #ffff00;
}

.log-error {
    color: #ff0000;
    text-shadow: 0 0 3px #ff0000;
}

.log-success {
    color: #00ffff;
    text-shadow: 0 0 3px #00ffff;
}

.graph-container {
    background: #001100;
    padding: 15px;
    border: 2px solid #00ff00;
    margin-bottom: 15px;
    box-shadow: 0 0 5px #00ff00;
}

.graph-container h2 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 12px;
    text-shadow: 0 0 5px #00ff00;
}

canvas {
    width: 100%;
    height: 200px;
    border: 2px solid #004400;
    background: #000;
    image-rendering: pixelated;
}

.prestige-section {
    background: #002200;
    padding: 20px;
    border: 4px solid #00ff00;
    text-align: center;
    margin-top: 15px;
    box-shadow: 0 0 15px #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px #00ff00; }
    50% { box-shadow: 0 0 25px #00ff00; }
}

.prestige-section h2 {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 14px;
    text-shadow: 0 0 10px #00ff00;
}

.prestige-section p {
    color: #00ff00;
    margin-bottom: 15px;
    font-size: 8px;
    line-height: 1.6;
}

.prestige-btn {
    background: #004400;
    font-size: 10px;
    padding: 15px 20px;
    border: 3px solid #00ff00;
    box-shadow:
        0 0 10px #00ff00,
        inset -3px -3px 0 rgba(0, 255, 0, 0.3),
        inset 3px 3px 0 rgba(0, 255, 0, 0.1) !important;
}

.prestige-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow:
        0 0 20px #00ff00,
        inset -3px -3px 0 rgba(0, 0, 0, 0.3),
        inset 3px 3px 0 rgba(255, 255, 255, 0.2) !important;
}

.prestige-btn:active {
    transform: translate(2px, 2px) scale(0.97);
    box-shadow:
        0 0 10px #00ff00,
        inset 3px 3px 3px rgba(0, 0, 0, 0.5),
        inset -2px -2px 1px rgba(0, 255, 0, 0.2) !important;
}

.save-controls {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.save-controls button {
    width: auto;
    padding: 10px 15px;
    font-size: 7px;
}

.reset-btn {
    background: #220000 !important;
    border-color: #ff0000 !important;
    color: #ff0000 !important;
    box-shadow: 0 0 5px #ff0000 !important;
}

.reset-btn:hover:not(:disabled) {
    background: #ff0000 !important;
    color: #000 !important;
    box-shadow: 0 0 15px #ff0000 !important;
}

.save-btn {
    background: #002200 !important;
    border-color: #00ff00 !important;
    box-shadow:
        0 0 5px #00ff00,
        inset -2px -2px 0 rgba(0, 255, 0, 0.3),
        inset 2px 2px 0 rgba(0, 255, 0, 0.1) !important;
}

.save-btn:hover:not(:disabled) {
    background: #00ff00 !important;
    color: #000 !important;
    box-shadow:
        0 0 15px #00ff00,
        inset -2px -2px 0 rgba(0, 0, 0, 0.3),
        inset 2px 2px 0 rgba(255, 255, 255, 0.2) !important;
}

.save-btn:active:not(:disabled) {
    transform: translate(1px, 1px) scale(0.98) !important;
    box-shadow:
        0 0 5px #00ff00,
        inset 2px 2px 3px rgba(0, 0, 0, 0.5),
        inset -1px -1px 1px rgba(0, 255, 0, 0.2) !important;
}

/* CRT flicker effect */
@keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.98; }
    100% { opacity: 1; }
}

.container {
    animation: flicker 0.15s infinite;
}

/* Decision Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #000;
    border: 4px solid #00ff00;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    box-shadow:
        0 0 20px #00ff00,
        inset 0 0 40px rgba(0, 255, 0, 0.1);
    animation: modalSlideIn 0.3s;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: #00ff00;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    text-shadow: 0 0 10px #00ff00;
    letter-spacing: 2px;
    animation: pausedPulse 1.5s infinite;
}

@keyframes pausedPulse {
    0%, 100% {
        text-shadow: 0 0 10px #00ff00;
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 20px #00ff00;
        opacity: 0.8;
    }
}

.decision-text {
    color: #00ff00;
    font-size: 9px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    padding: 15px;
    background: #001100;
    border: 2px solid #003300;
}

.decision-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.decision-choice {
    background: #002200;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 15px;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.05s;
    text-align: left;
    box-shadow:
        0 0 5px #00ff00,
        inset -2px -2px 0 rgba(0, 255, 0, 0.3),
        inset 2px 2px 0 rgba(0, 255, 0, 0.1);
}

.decision-choice:hover {
    background: #00ff00;
    color: #000;
    box-shadow:
        0 0 15px #00ff00,
        inset -2px -2px 0 rgba(0, 0, 0, 0.3),
        inset 2px 2px 0 rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.decision-choice:active {
    transform: translateX(3px) translate(1px, 1px) scale(0.98);
    box-shadow:
        0 0 5px #00ff00,
        inset 2px 2px 3px rgba(0, 0, 0, 0.5),
        inset -1px -1px 1px rgba(0, 255, 0, 0.2);
}

.decision-choice-label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.decision-choice-desc {
    font-size: 7px;
    color: #00aa00;
    line-height: 1.5;
}

.decision-choice:hover .decision-choice-desc {
    color: #003300;
}

/* Mini-Game Styles */
.minigame-container {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    margin: 20px 0;
}

.minigame-section {
    flex: 1;
    text-align: center;
}

.minigame-section h3 {
    font-size: 10px;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 5px #00ff00;
    letter-spacing: 2px;
}

.button-preview {
    width: 200px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid;
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
}

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

.button-controls label {
    font-size: 8px;
    color: #00ff00;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border: 3px solid #003300;
    cursor: pointer;
    transition: all 0.1s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.color-swatch:hover {
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    transform: scale(1.1);
}

.color-swatch.selected {
    border-color: #00ff00;
    border-width: 4px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    transform: scale(1.15);
}

.button-controls input[type="range"] {
    width: 200px;
    accent-color: #00ff00;
}

#radius-value {
    color: #00aa00;
    font-size: 8px;
}

/* Stack Overflow UI */
.stackoverflow-container {
    background: #001100;
    border: 2px solid #003300;
    padding: 20px;
    margin: 15px 0;
}

.stackoverflow-question {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
    margin-bottom: 15px;
}

.so-header {
    color: #00ff00;
    font-size: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ff00;
    letter-spacing: 1px;
}

.so-content {
    color: #00aa00;
    font-size: 8px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.so-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.so-tag {
    background: #002200;
    border: 1px solid #004400;
    padding: 4px 8px;
    font-size: 7px;
    color: #00aa00;
    border-radius: 3px;
}

.stackoverflow-editor {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
}

.so-editor {
    width: 100%;
    height: 120px;
    background: #000;
    color: #00ff00;
    border: 2px solid #003300;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    resize: none;
    box-shadow: inset 0 0 10px rgba(0, 255, 0, 0.1);
}

.so-editor:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3), inset 0 0 10px rgba(0, 255, 0, 0.2);
}

.so-hint {
    margin-top: 10px;
    font-size: 7px;
    color: #006600;
    font-style: italic;
}

/* Code Review UI */
.codereview-container {
    background: #001100;
    border: 2px solid #003300;
    padding: 20px;
    margin: 15px 0;
}

.pr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #000;
    border: 2px solid #004400;
    margin-bottom: 15px;
}

.pr-title {
    color: #00ff00;
    font-size: 9px;
    font-weight: bold;
}

.pr-status {
    color: #00ff00;
    font-size: 8px;
}

.code-diff {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
    margin-bottom: 15px;
}

.diff-header {
    color: #00ff00;
    font-size: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ff00;
}

.diff-content {
    background: #000;
    color: #00aa00;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 8px;
    line-height: 1.6;
    overflow-x: auto;
    border-left: 3px solid #003300;
}

.review-section {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
}

.review-header {
    color: #00ff00;
    font-size: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ff00;
}

.bug-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bug-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #000;
    border: 1px solid #003300;
    cursor: pointer;
    transition: all 0.1s;
}

.bug-item:hover {
    background: #001100;
    border-color: #00ff00;
}

.bug-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #00ff00;
    cursor: pointer;
}

.bug-item label {
    color: #00aa00;
    font-size: 8px;
    cursor: pointer;
    flex: 1;
}

/* Support Call UI */
.support-container {
    background: #001100;
    border: 2px solid #003300;
    padding: 20px;
    margin: 15px 0;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #000;
    border: 2px solid #004400;
    margin-bottom: 15px;
    color: #00ff00;
    font-size: 9px;
}

.priority-badge {
    background: #220000;
    color: #ff0000;
    padding: 4px 8px;
    border: 1px solid #ff0000;
    font-size: 7px;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.customer-message {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
    margin-bottom: 15px;
}

.message-header {
    color: #00ff00;
    font-size: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ff00;
}

.message-content {
    color: #00aa00;
    font-size: 8px;
    line-height: 1.6;
    padding: 10px;
    background: #000;
    border-left: 3px solid #003300;
    margin-bottom: 10px;
}

.customer-info {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    color: #006600;
    padding-top: 10px;
    border-top: 1px solid #003300;
}

.response-section {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
}

.response-header {
    color: #00ff00;
    font-size: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ff00;
}

.response-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.response-option {
    background: #002200;
    color: #00ff00;
    border: 2px solid #004400;
    padding: 12px;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.1s;
    text-align: left;
}

.response-option:hover {
    background: #003300;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    transform: translateX(5px);
}

.response-option:active {
    transform: translateX(3px) scale(0.98);
}

/* Fix Typos UI */
.typos-container {
    background: #001100;
    border: 2px solid #003300;
    padding: 20px;
    margin: 15px 0;
}

.docs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #000;
    border: 2px solid #004400;
    margin-bottom: 15px;
    color: #00ff00;
    font-size: 9px;
}

.file-status {
    background: #002200;
    color: #00ff00;
    padding: 4px 8px;
    border: 1px solid #00ff00;
    font-size: 7px;
}

.typo-section {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
}

.typo-header {
    color: #00ff00;
    font-size: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ff00;
}

.typo-content {
    color: #00aa00;
    font-size: 9px;
    line-height: 1.8;
    padding: 15px;
    background: #000;
    border: 1px solid #003300;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.typo-word {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.1s;
}

.typo-word:hover {
    background: #002200;
}

.typo-word.selected {
    background: #003300;
    color: #00ff00;
    text-decoration: line-through;
}

.typo-hint {
    font-size: 7px;
    color: #006600;
    font-style: italic;
    margin-top: 10px;
}

/* Answer Tickets UI */
.ticket-container {
    background: #001100;
    border: 2px solid #003300;
    padding: 20px;
    margin: 15px 0;
}

.ticket-quick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #000;
    border: 2px solid #004400;
    margin-bottom: 15px;
    color: #00ff00;
    font-size: 9px;
}

.quick-badge {
    background: #002200;
    color: #00ff00;
    padding: 4px 8px;
    border: 1px solid #00ff00;
    font-size: 7px;
}

.quick-question {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
    margin-bottom: 15px;
}

.quick-header {
    color: #00ff00;
    font-size: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ff00;
}

.quick-content {
    color: #00aa00;
    font-size: 8px;
    line-height: 1.6;
    padding: 10px;
    background: #000;
    border-left: 3px solid #003300;
}

.quick-responses {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
}

.quick-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-option {
    background: #002200;
    color: #00ff00;
    border: 2px solid #004400;
    padding: 12px;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.1s;
    text-align: left;
}

.quick-option:hover {
    background: #003300;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    transform: translateX(5px);
}

.quick-option:active {
    transform: translateX(3px) scale(0.98);
}

/* Network Twitter UI */
.twitter-container {
    background: #001100;
    border: 2px solid #003300;
    padding: 20px;
    margin: 15px 0;
}

.twitter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #000;
    border: 2px solid #004400;
    margin-bottom: 15px;
    color: #00ff00;
    font-size: 9px;
}

.followers-count {
    font-size: 7px;
    color: #00aa00;
}

.tweet-section {
    background: #000;
    border: 2px solid #004400;
    padding: 15px;
}

.tweet-header {
    color: #00ff00;
    font-size: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 5px #00ff00;
}

.tweet-prompt {
    color: #00aa00;
    font-size: 8px;
    line-height: 1.6;
    padding: 10px;
    background: #000;
    border-left: 3px solid #003300;
    margin-bottom: 15px;
}

.tweet-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tweet-option {
    background: #002200;
    color: #00ff00;
    border: 2px solid #004400;
    padding: 12px;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.1s;
    text-align: left;
}

.tweet-option:hover {
    background: #003300;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    transform: translateX(5px);
}

.tweet-option:active {
    transform: translateX(3px) scale(0.98);
}

@media (max-width: 768px) {
    .sections {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 10px;
    }

    h1 {
        font-size: 18px;
    }

    .stat-value {
        font-size: 12px;
    }

    .modal-content {
        padding: 20px;
    }

    .decision-choice {
        font-size: 7px;
    }
}
