/* CSS Document */
<style type="text/css">
	
	
.OFF {
  display:none;
  visibility:hidden;
  opacity:0;
}

/* -------------------------
   GLOBAL PUNK / ZINE STYLE
-------------------------- */

body {
    font-family: 'Special Elite', 'Courier New', monospace;
    background: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 17px;
    letter-spacing: 0.3px;

    /* dirty photocopy texture overlay */
    background-image:
        url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQIW2NkYGD4DwABBAEAH8gXJgAAAABJRU5ErkJggg=="),
        radial-gradient(rgba(0,0,0,0.06), transparent 70%);
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-blend-mode: multiply;
}

/* -------------------------
   HEADER (TABS)
-------------------------- */

header {
    width: 100%;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    gap: 22px;
    border-bottom: 3px solid black;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
}

header a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    padding: 4px 8px;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}

header a.active {
    border-bottom: 3px solid black;
}

/* -------------------------
   MAIN LAYOUT
-------------------------- */

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 25px 15px;
}

img.logo {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto 25px auto;
}

/* -------------------------
   CONTENT SECTIONS
-------------------------- */

.section {
    display: none;
    white-space: pre-line;

    padding: 20px;
    background: rgba(255, 255, 255, 0.8);

    /* torn-paper-ish border */
    border: 2px dashed black;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);

    font-size: 16px;
}

.visible {
    display: block;
}

/* -------------------------
   ZINE LIST (PDF LINKS)
-------------------------- */

.zine-list {
    margin-top: 30px;
    padding: 0;
    list-style: none;
    border-top: 2px dashed black;
    padding-top: 18px;
}

.zine-list li {
    margin: 5px 0;
    font-size: 15px;
}

.zine-list a {
    color: #000;
    text-decoration: underline;
}

/* -------------------------
   DOWNLOAD ALL BUTTON
-------------------------- */

.download-all {
    display: inline-block;
    margin-top: 25px;
    margin-bottom: 10px;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid black;
    text-transform: uppercase;
    background: white;
    text-decoration: none;
    color: black;
    cursor: pointer;

    /* grungy offset effect */
    box-shadow: 3px 3px 0px #000;
}
.download-all:active {
    box-shadow: none;
    transform: translate(3px,3px);
}

/* -------------------------
   RESPONSIVE
-------------------------- */

@media (max-width: 600px) {
    header { gap: 15px; font-size: 16px; }
    .container { padding: 20px 10px; }
    img.logo { margin-bottom: 20px; }
    body { font-size: 16px; }
    .section { padding: 15px; }
}

</style>
