@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

body.punk-theme {
    background-color: #000;
    color: #fff;
    font-family: 'Courier Prime', 'Courier', monospace;
    text-transform: uppercase;
    margin: 0;
    padding: 20px;
    line-height: 1.2;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    border: 5px solid #fff;
    padding: 20px;
    background-color: #000;
}

header {
    border-bottom: 10px solid #fff;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

h1 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: -2px;
    background-color: #fff;
    color: #000;
    display: inline-block;
    padding: 0 10px;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #fff;
    margin-top: 40px;
}

.poster-box {
    border: 2px solid #fff;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.poster-box::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #fff;
    z-index: -1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    border: 3px solid #fff;
    padding: 15px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
    /*filter: grayscale(100%) contrast(200%);*/
    border: 1px solid #fff;
}

.punk-button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-family: 'Courier Prime', monospace;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
}

.punk-button:hover {
    background-color: #000;
    color: #fff;
    outline: 2px solid #fff;
}

input, textarea {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
    font-family: 'Courier Prime', monospace;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #fff;
    padding: 10px;
    text-align: left;
}

.error {
    background-color: #fff;
    color: #000;
    padding: 5px;
    font-weight: bold;
}

a {
    color: #fff;
    text-decoration: underline;
}

a:hover {
    background-color: #fff;
    color: #000;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 2px solid #fff;
    margin: 10px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*filter: grayscale(100%);*/
}
