@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 2px solid #ffffff;
}

header h1 {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 10px;
    transition: color 0.3s;
}

nav a:hover {
    color: #888888;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.merch-grid, .albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.merch-item, .album-item {
    text-align: center;
    border: 2px solid #ffffff;
    padding: 20px;
    transition: border-color 0.3s;
}

.merch-item:hover, .album-item:hover {
    border-color: #888888;
}

.merch-placeholder, .album-placeholder {
    width: 150px;
    height: 150px;
    background-color: #222222;
    border: 1px solid #ffffff;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #888888;
}

.merch-item h3, .album-item h3 {
    font-size: 10px;
    margin-bottom: 10px;
}

.merch-item p, .album-item p {
    font-size: 8px;
    color: #cccccc;
}

.events-list {
    max-width: 600px;
    margin: 30px auto;
}

.no-events {
    text-align: center;
    color: #888888;
    font-size: 10px;
}

.about-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.event-item {
    border: 2px solid #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: border-color 0.3s;
}

.event-item:hover {
    border-color: #888888;
}

.event-item h3 {
    font-size: 10px;
    margin-bottom: 10px;
    color: #ffffff;
}

.event-item p {
    font-size: 8px;
    color: #cccccc;
}

.music-player {
    text-align: center;
    max-width: 400px;
    margin: 30px auto;
    border: 2px solid #ffffff;
    padding: 30px;
}

.player-placeholder {
    width: 200px;
    height: 50px;
    background-color: #222222;
    border: 1px solid #ffffff;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #888888;
}

footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 2px solid #ffffff;
    font-size: 8px;
    color: #888888;
}

.music-link {
    text-align: center;
    margin: 30px auto;
}

a {
    color: #ffffff;
}

@media (max-width: 768px) {
    body {
        font-size: 10px;
    }
    
    header h1 {
        font-size: 18px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav a {
        font-size: 8px;
    }
    
    h2 {
        font-size: 14px;
    }
    
    .merch-grid, .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .merch-placeholder, .album-placeholder {
        width: 120px;
        height: 120px;
    }
}
