.glow-pulse {
    animation: glow-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0px transparent;
}

.deepco-main-ascii {
    font-size: 14px;
    display: flex;
    justify-content: center;
}

@media (max-width: 800px) {
    .deepco-main-ascii {
        font-size: 10px;
    }
}

@media (max-width: 600px) {
    .deepco-main-ascii {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .deepco-main-ascii {
        font-size: 5px;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 6px 2px #00ffff;
    }
    50% {
        box-shadow: 0 0 12px 4px #00aaff;
    }
}
.intern-highlight {
    position: relative;
}

.intern-arrow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
    z-index: 10;
}

.arrow-text {
    font-size: 1rem;
    color: #ccc;
    background: #222;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 2px;
    white-space: nowrap;
    font-family: monospace;
    letter-spacing: 0.5px;
}

.arrow-down {
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #ccc;
}


.landing-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.landing-action {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 32px 0;
}

.link-button {
    text-transform: inherit;
    font-family: 'Courier New', monospace;
}

.big-button {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px;
    text-decoration: none;
    border: 2px solid #555;
    border-radius: 4px;
    cursor: pointer;
    flex: 1 1 45%; /* Grow equally, shrink equally, base width ~45% */
    min-width: 200px; /* prevent too small buttons on very narrow screens */
    text-align: center;
}

.primary {
    background-color: #222;
    color: #0f0;
}

.secondary {
    background-color: #222;
}

.terminal-header {
    color: #00ff66;
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    padding-top: 20px;
    margin-left: 24px;
    text-transform: uppercase;
    box-shadow: 0 0 4px rgba(0, 255, 100, 0.2);
}

.terminal-body,
.receipt-body,
.receipt-footer {
    border: 2px solid #333;
    border-radius: 8px;
    background: #111;
    margin: 24px;
    white-space: pre-line;
    font-family: 'Courier New', monospace;
    padding: 20px;
}

/* Landing page specific terminal body styling */
.landing-panel .terminal-body {
    margin: 16px 24px;
    width: calc(100% - 48px);
    box-sizing: border-box;
}

.landing-panel .terminal-body:first-of-type {
    margin-top: 24px;
}

/* Section headers within terminal bodies */
.section-header {
    color: #00ff88;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid #333;
    text-shadow: 0 0 2px rgba(0, 255, 136, 0.3);
    letter-spacing: 1px;
}

/* Add some spacing between content lines */
.terminal-body span:not(.section-header) {
    display: block;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Style the block type examples */
.terminal-body .dirt,
.terminal-body .junk,
.terminal-body .valuable {
    font-size: 1.2em;
    font-weight: bold;
    display: inline;
    margin-right: 4px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .landing-panel {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .terminal-body {
        margin: 12px;
        padding: 16px;
    }
    
    .landing-panel .terminal-body {
        margin: 12px;
        width: calc(100% - 24px);
    }
    
    .section-header {
        font-size: 1rem;
    }
}

.landing-footer {
    margin: 24px;
    padding: 12px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    border-top: 1px solid #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.admin-link {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.admin-link:hover {
    color: #aaa;
    text-decoration: underline;
}
