/* Terminal-style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 255, 0, 0.03) 50px, rgba(0, 255, 0, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 255, 0, 0.03) 50px, rgba(0, 255, 0, 0.03) 51px),
        radial-gradient(circle at 25% 25%, rgba(0, 255, 0, 0.05) 0%, transparent 2%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 0, 0.05) 0%, transparent 2%),
        radial-gradient(circle at 25% 75%, rgba(0, 255, 0, 0.04) 0%, transparent 1.5%),
        radial-gradient(circle at 75% 25%, rgba(0, 255, 0, 0.04) 0%, transparent 1.5%);
    background-size: 100px 100px, 100px 100px, 200px 200px, 200px 200px, 150px 150px, 150px 150px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #00ff00;
    background-color: rgba(0, 0, 0, 0.85);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.1);
}

.terminal-header {
    background-color: rgba(0, 26, 0, 0.9);
    padding: 10px 20px;
    border-bottom: 1px solid #00ff00;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.1);
}

.file-name {
    font-weight: bold;
    color: #00ff00;
}

.cursor {
    animation: blink 1s infinite;
    color: #00ff00;
}

.content {
    padding: 30px 20px;
    min-height: 70vh;
}

pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    color: #00ff00;
}

/* JSON Syntax Highlighting */
.key {
    color: #00ff00;
    font-weight: normal;
}

.string {
    color: #00cc00;
}

.link {
    color: #00ff00;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.link:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ff00;
}

.footer {
    background-color: rgba(0, 26, 0, 0.9);
    padding: 15px 20px;
    border-top: 1px solid #00ff00;
    font-size: 16px;
    box-shadow: 0 -2px 10px rgba(0, 255, 0, 0.1);
}

.prompt {
    color: #00ff00;
    font-weight: bold;
}

.cursor-blink {
    animation: blink 1s infinite;
    font-weight: bold;
}

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

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .content {
        padding: 20px 15px;
    }
    
    code {
        font-size: 14px;
    }
    
    .terminal-header,
    .footer {
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* Glow effect on hover for interactive elements */
.link:hover {
    animation: glow 0.5s ease-in-out;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px #00ff00;
    }
    50% {
        text-shadow: 0 0 15px #00ff00, 0 0 25px #00ff00;
    }
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border: 1px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
}

/* Skip message for typing animation */
.skip-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #001a00;
    color: #00ff00;
    padding: 10px 20px;
    border: 1px solid #00ff00;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    animation: blink 1.5s infinite;
    z-index: 1000;
}

@media (max-width: 768px) {
    .skip-message {
        bottom: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 12px;
    }
}

