body {
    margin: 0;
    background: #000;
    color: #00ffcc;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
    text-align: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3);
}

header {
    background: rgba(34, 34, 34, 0.8);
    padding: 20px 10px;
    border-bottom: 2px solid #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

h1 {
    font-size: 22px;
    margin-bottom: 5px;
}

nav a {
    color: #ff00cc;
    text-decoration: none;
    margin: 0 15px;
    font-size: 12px;
}

nav a:hover {
    color: #ffff00;
}

.container {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
}

.section {
    margin-bottom: 50px;
}

.section img {
    max-width: 200px;
    margin: 20px auto;
    display: block;
}

.shop-button {
    display: inline-block;
    background: #ff00cc;
    color: #000;
    padding: 12px 24px;
    font-size: 12px;
    text-decoration: none;
    border: 3px solid #ffff00;
    box-shadow: 0 0 8px #ff00cc, 0 0 20px #ffff00;
    margin-top: 20px;
    animation: pulse 1.2s infinite;
}

.shop-button:hover {
    background: #ffff00;
    color: #000;
    border-color: #ff00cc;
    box-shadow: 0 0 10px #ffff00, 0 0 25px #ff00cc;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

footer {
    border-top: 2px solid #00ffcc;
    padding: 20px;
    background: rgba(17, 17, 17, 0.8);
    font-size: 10px;
    color: #888;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0px, transparent 2px, transparent 4px);
    pointer-events: none;
    z-index: 2;
}

header, .container, footer {
    position: relative;
    z-index: 3;
}
