body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header,
main,
footer {
    position: relative;
    z-index: 10;
}

header {
    text-align: center;
    padding: 40px 0;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    text-transform: lowercase;
}

.header-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10% 40px 10%;
    position: relative;
    z-index: 10;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10% 60px 10%;
    flex-grow: 1;
}

canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: black;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    background:
        radial-gradient(circle at top left, #7fdd5f 0%, transparent 40%),
        radial-gradient(circle at bottom right, #70468c 0%, transparent 40%);
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    display: block;
}

footer {
    padding: 0 10% 40px 10%;
    margin-top: auto;
    width: 80%;
}



        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 25px;
            font-size: 1.0rem;
            color: #ffffff;
            line-height: 1.4;
            flex-wrap: nowrap;
            gap: 10px;
        }

.hours,
.social-row,
.address-text {
    flex: 1;
}

.hours {
    text-align: left;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.address-text {
    text-align: right;
}

.social-link {
    text-decoration: none;
    outline: none;
    display: flex;
}

.social-link.maps {
    margin-right: -4px;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    fill: #19bf24;
    filter: drop-shadow(0 0 8px #7fdd5f);
}

.legal-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #19bf24;
}

.legal-content {
            max-width: 600px;
            text-align: left;
            line-height: 1.6;
            margin-bottom: 50px;
        }
        .legal-section {
            margin-bottom: 30px;
        }
        .legal-section h2 {
            font-size: 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 5px;
            margin-bottom: 10px;
            text-transform: lowercase;
        }
        .back-link {
            margin-top: 20px;
            display: inline-block;
            color: #19bf24;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .back-link:hover {
            text-decoration: underline;
        }

@media (max-width: 480px) {
    main {
        padding: 0 10%;
        flex: none;
    }

    .content-image {
        margin-top: 0px;
        margin-bottom: 40px;
    }

    footer {
        padding: 0 10% 40px 10%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hours,
    .address-text {
        text-align: center;
    }

    .social-row {
        align-self: center;
        gap: 25px;
        margin-top: 0;
    }

    .social-link.maps {
        margin-right: -4px;
    }

    .social-link svg {
        width: 30px;
        height: 30px;
    }
}
