/* GNU LAB - DOS Style CSS */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

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

body {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background-color: #000000;
    color: #00ff00;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 40px;
    border: 2px solid #00ff00;
    padding: 20px;
    background-color: #001100;
}

.ascii-art {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.2;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff00;
    text-shadow: 0 0 20px #00ff00;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 1.2rem;
    color: #00aa00;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/* Main Content */
main {
    flex: 1;
    margin-bottom: 40px;
}

section {
    margin-bottom: 40px;
    border: 1px solid #00ff00;
    padding: 20px;
    background-color: #000800;
}

h2 {
    font-size: 1.5rem;
    color: #00ff00;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff00;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #00aa00;
    font-size: 1rem;
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    border: 1px solid #00ff00;
    padding: 20px;
    background-color: #000400;
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    background-color: #001100;
    box-shadow: 0 0 20px #00ff00;
    transform: translateY(-2px);
}

.product-item h3 {
    font-size: 1.3rem;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00ff00;
}

.product-item p {
    color: #00aa00;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.status {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #00ff00;
    color: #000000;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #00ff00;
}

.status.paused {
    background-color: #ffff00;
    color: #000000;
    border: 1px solid #ffff00;
    text-shadow: 0 0 5px #ffff00;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-info p {
    background-color: #000400;
    padding: 15px;
    border: 1px solid #00ff00;
    font-size: 1.1rem;
    color: #00ff00;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background-color: #001100;
    box-shadow: 0 0 15px #00ff00;
}

/* Donations Section */
.donations {
    margin-bottom: 40px;
    border: 1px solid #00ff00;
    padding: 20px;
    background-color: #000800;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.wallet-item {
    border: 1px solid #00ff00;
    padding: 20px;
    background-color: #000400;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.wallet-item:hover {
    background-color: #001100;
    box-shadow: 0 0 20px #00ff00;
    transform: translateY(-2px);
}

.wallet-item h3 {
    font-size: 1.2rem;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00ff00;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
}

.wallet-address {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #00aa00;
    background-color: #000200;
    padding: 10px;
    border: 1px solid #00ff00;
    margin-bottom: 10px;
    word-break: break-all;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-address:hover {
    background-color: #001100;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.wallet-qr {
    font-size: 0.8rem;
    color: #00aa00;
    background-color: #000200;
    padding: 5px 10px;
    border: 1px solid #00ff00;
    display: inline-block;
    margin-top: 5px;
}

.donation-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #00aa00;
    font-style: italic;
}

/* Footer */
footer {
    text-align: center;
    border-top: 2px solid #00ff00;
    padding: 20px;
    background-color: #001100;
    position: relative;
}

.footer-line {
    height: 1px;
    background-color: #00ff00;
    margin-bottom: 20px;
    box-shadow: 0 0 10px #00ff00;
}

footer p {
    color: #00aa00;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cursor-blink {
    display: inline-block;
    animation: blink 1s infinite;
    font-size: 1.2rem;
    color: #00ff00;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .ascii-art {
        font-size: 8px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ascii-art {
        font-size: 6px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

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

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

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

/* Selection Styling */
::selection {
    background-color: #00ff00;
    color: #000000;
}

/* Focus Styling */
*:focus {
    outline: 2px solid #00ff00;
    outline-offset: 2px;
}

/* Link Styling */
a {
    color: #00ff00;
    text-decoration: none;
    text-shadow: 0 0 10px #00ff00;
    transition: all 0.3s ease;
}

a:hover {
    color: #00aa00;
    text-shadow: 0 0 15px #00aa00;
    background-color: #001100;
    padding: 2px 4px;
    border: 1px solid #00ff00;
}

a:visited {
    color: #00ff00;
}
