@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #000;
    color: #00ff00;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    padding: 20px;
    line-height: 1.8;
    background-image:
            repeating-linear-gradient(
                    0deg,
                    rgba(0, 255, 0, 0.03) 0px,
                    transparent 1px,
                    transparent 2px,
                    rgba(0, 255, 0, 0.03) 3px
            );
    animation: scanlines 8s linear infinite;
}
@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}
.container {
    max-width: 800px;
    margin: 0 auto;
    border: 4px double #00ff00;
    padding: 30px;
    background: rgba(0, 20, 0, 0.8);
    box-shadow:
            0 0 20px rgba(0, 255, 0, 0.5),
            inset 0 0 20px rgba(0, 255, 0, 0.1);
}
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border: 2px solid #00ff00;
    background: rgba(0, 50, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
    from { box-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00; }
    to { box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00; }
}
h1 {
    font-size: 24px;
    color: #00ff00;
    text-shadow: 2px 2px #003300;
    margin-bottom: 10px;
    letter-spacing: 3px;
}
.subtitle {
    font-size: 10px;
    color: #00cc00;
    margin-top: 10px;
}
.menu {
    list-style: none;
    padding: 0;
}
.menu-item {
    margin: 20px 0;
    padding: 15px;
    border: 2px solid #00ff00;
    background: rgba(0, 30, 0, 0.6);
    transition: all 0.3s;
    position: relative;
}
.menu-item:before {
    content: "▶ ";
    color: #00ff00;
    font-size: 12px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}
.menu-item:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: translateX(10px);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}
.menu-item:hover:before {
    animation: blink 0.5s infinite;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
a {
    color: #00ff00;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    text-shadow: 1px 1px #003300;
    vertical-align: middle;
}
a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}
.footer {
    margin-top: 40px;
    text-align: center;
    font-size: 8px;
    color: #00aa00;
    padding: 20px;
    border-top: 2px dashed #00ff00;
}
.crt-effect {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px
    );
    z-index: 9999;
}
/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px 0;
}
.gallery-item {
    border: 2px solid #00ff00;
    background: rgba(0, 30, 0, 0.6);
    padding: 10px;
    text-align: center;
    transition: all 0.3s;
}
.gallery-item:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
    transform: scale(1.02);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #00aa00;
}
.gallery-title {
    margin-top: 10px;
    font-size: 10px;
    color: #00cc00;
    word-break: break-all;
}
.extensions-info {
    margin-top: 15px;
    font-size: 9px;
    color: #00aa00;
    text-align: center;
    padding: 10px;
    border: 1px dashed #00aa00;
    background: rgba(0, 30, 0, 0.4);
    word-break: break-word;
}
.back-link {
    margin-top: 30px;
    text-align: center;
    padding: 15px;
    border: 2px solid #00ff00;
    background: rgba(0, 30, 0, 0.6);
    transition: all 0.3s;
}
.back-link:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}
@media (max-width: 600px) {
    body { padding: 10px; font-size: 10px; }
    h1 { font-size: 16px; }
    a { font-size: 10px; }
    .gallery { grid-template-columns: 1fr; }
}