body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #fdfdfd;
    margin: 0;
    padding: 0;
    color: #000;
}

.flyer-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border: 2px solid #000;
    box-shadow: 10px 10px 0 #000;
}

.hero {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.splash-image {
    width: 100%;
    height: auto;
    border: 2px solid #000;
    box-shadow: 5px 5px #000;
    transform: rotate(-3deg);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border: 3px solid #000;
}

.hero-text h1 {
    font-size: 48px;
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero-text h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.screenshot {
    text-align: center;
    margin-top: 30px;
    position: relative;
}

.single-screenshot {
    width: 60%;
    border: 2px solid #000;
    transform: rotate(3deg);
    box-shadow: 5px 5px #000;
    margin: 0 auto;
}

.saucer-image {
    position: absolute;
    top: 10px;
    right: -50px;
    width: 150px;
    transform: rotate(-10deg);
    border: 2px solid #000;
}

.tear-offs {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    border-top: 3px dashed #000;
    padding-top: 10px;
}

.tear-off {
    width: 30%;
    text-align: center;
    background-color: #fff;
    border: 2px solid #000;
    padding: 10px;
    transform: rotate(-2deg);
}

.tear-off a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 3px solid #000;
    padding-top: 10px;
}

