
    body, html {
        margin: 0;
        padding: 0;
        height: 100%;
        font-family: 'VT323', monospace; /* Use VT323 font */
        font-size: 24px; /* Adjust this value to make the font larger */
        background-color: #000033;
        color: #fff;
    }
    
    a {
        color: #fff;
        text-decoration: none;
    }
    
    a:hover {
        color: #fff;
        text-decoration: underline;
    }
    
    img {
        image-rendering: pixelated;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }
    
    /* Container and Layout */
    .container {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    .main-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background-size: cover;
        background-position: center;
        position: relative;
        padding: 20px;
    }
    
    /* Header and Footer */
    .header, .footer-image {
        background-repeat: repeat-x;
        background-size: contain;
        height: 20vw;
        min-height: 100px;
        max-height: 500px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        image-rendering: pixelated;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }
    
    .header {
        background-image: url('/images/headerbg.png');
        image-rendering: pixelated;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }
    
    .footer-image {
        background-image: url('/images/footerbg.png');
        image-rendering: pixelated;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }
    
    .header-house, .footer-city {
        height: 100%;
        max-height: 100%;
        width: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: contain;
        image-rendering: pixelated;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }
    
    .footer-info {
        background-color: #cc0052;
        color: #fff;
        text-align: center;
        padding: 20px;
        font-size: 0.8em;
    }
    
    .footer-info .highlight {
        color: #ffcc00;
    }
    
    .footer-container {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    /* Navigation Bar */
    .nav-bar {
        background-color: #cc0052;
        padding: 10px;
        display: flex;
        justify-content: center;
    }
    
    .menu-buttons {
        display: flex;
        justify-content: space-around;
        width: 100%;
        max-width: 800px;
    }
    
    .menu-button {
        padding: 10px 15px;
        background-color: #ff0066;
        border: 2px solid #ffcc00;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 0.8em;
        position: relative;
        font-family: 'VT323', monospace; /* Use VT323 font */
    }
    
    .menu-button:hover {
        background-color: #ff3399;
    }
    
    .dropdown {
        display: none;
        position: absolute;
        background-color: #ff0066;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
    }
    
    .dropdown a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        border: 2px solid #00ffff;
        margin: 4px;
        font-family: 'VT323', monospace; /* Use VT323 font */
    }
    
    .dropdown a:hover {
        background-color: #ff3399;
    }
    
    .menu-button:hover .dropdown {
        display: block;
    }
    
    /* Artist Section */
    .artist-selection {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 800px;
        margin-bottom: 20px;
    }
    
    .artist-icon {
        width: 180px;
        text-align: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .artist-icon:hover {
        transform: scale(1.05);
    }
    
    .artist-icon img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border: 2px solid #ffcc00;
        background-color: rgba(0, 0, 0, 0.7);
        image-rendering: pixelated;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }
    
    .artist-name {
        margin-top: 10px;
        color: #ffcc00;
        text-shadow: 2px 2px #ff0066;
        font-size: 1em;
    }
    
    .artist-profile {
        width: 100%;
        max-width: 800px;
        background-color: rgba(0, 0, 0, 0.7);
        border: 2px solid #ffcc00;
        padding: 20px;
        margin-top: 20px;
    }
    
    .artist-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .choose-title {
        color: #fff;
        text-shadow: 2px 2px #ff0066;
        font-size: 2em;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 40px;
    }
    
    .artist-image {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border: 2px solid #ffcc00;
        margin-bottom: 10px;
    }
    
    .artist-title {
        font-size: 2em;
        text-align: center;
        color: #ffcc00;
        text-shadow: 2px 2px #ff0066;
        margin-bottom: 10px;
        
    }
    
    .artist-bio {
        text-align: justify;
        margin-bottom: 20px;
    }
    
    /* Button Styles */
    .button {
        background-color: #ff0066;
        color: white;
        border: none;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        font-family: 'VT323', monospace; /* Use VT323 font */
    }
    
    .button.yellow {
        background-color: #ffcc00;
        color: #000033;
    }
    
    .button-container {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .footer-button {
        background-color: #ffcc00; /* Yellow background */
        color: #000033; /* Dark text color */
        border: none;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px; /* Same font size as other buttons */
        margin: 4px 2px;
        cursor: pointer;
        font-family: 'VT323', monospace; /* Use VT323 font */
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .footer-button img {
        width: 20px;
        height: 20px;
    }
    
    /* Portfolio and Booking Form */
    .portfolio-container, .booking-form {
        display: none;
        margin-top: 20px;
    }
    
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .portfolio-item {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        cursor: pointer;
    }
    
    .booking-form form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .booking-form input, .booking-form textarea {
        width: 100%;
        padding: 10px;
        font-family: 'VT323', monospace;
    }
    
    /* Aftercare Section */
    .aftercare-container {
        background-color: rgba(0, 0, 0, 0.7);
        border: 2px solid #ffcc00;
        padding: 20px;
        margin-top: 20px;
        width: 80%;
        max-width: 800px;
    }
    
    .aftercare-title {
        color: #ffcc00;
        text-shadow: 2px 2px #ff0066;
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .aftercare-section {
        margin-bottom: 20px;
    }
    
    .aftercare-section h3 {
        color: #00ffff;
        margin-bottom: 10px;
    }
    
    .aftercare-section ul {
        list-style-type: none;
        padding-left: 20px;
    }
    
    .aftercare-section li {
        margin-bottom: 10px;
    }
    
    .aftercare-section li::before {
        content: "→ ";
        color: #ff0066;
    }
    
    /* Merchandise Section */
    .merchandise-container {
        background-color: rgba(0, 0, 0, 0.7);
        border: 2px solid #ffcc00;
        padding: 20px;
        margin-top: 20px;
        width: 80%;
        max-width: 800px;
    }
    
    .merchandise-title {
        color: #ffcc00;
        text-shadow: 2px 2px #ff0066;
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .merchandise-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .merchandise-item {
        background-color: rgba(255, 255, 255, 0.1);
        border: 2px solid #00ffff;
        padding: 15px;
        text-align: center;
        transition: transform 0.3s ease;
    }
    
    .merchandise-item:hover {
        transform: scale(1.05);
    }
    
    .merchandise-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
        margin-bottom: 10px;
    }
    
    .merchandise-name {
        color: #00ffff;
        margin-bottom: 5px;
    }
    
    .merchandise-price {
        color: #ffcc00;
        font-weight: bold;
    }
    
    .buy-button {
        background-color: #ff0066;
        color: white;
        border: none;
        padding: 5px 10px;
        margin-top: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-family: 'VT323', monospace;
    }
    
    .buy-button:hover {
        background-color: #ff3399;
    }
    
    /* Location Section */
    .location-container {
        background-color: rgba(0, 0, 0, 0.7);
        border: 2px solid #ffcc00;
        padding: 20px;
        margin-top: 20px;
        width: 80%;
        max-width: 800px;
    }
    
    .location-title {
        color: #ffcc00;
        text-shadow: 2px 2px #ff0066;
        font-size: 1.5em;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .location-info {
        margin-bottom: 20px;
    }
    
    .map-container {
        width: 100%;
        height: 300px;
        border: 2px solid #00ffff;
    }
    
    /* Responsive Media Query */
    @media (max-width: 768px) {
        .menu-buttons {
            flex-direction: column;
            align-items: center;
        }
    
        .menu-button {
            margin-bottom: 10px;
            width: 100%;
        }
    
        .dropdown {
            position: static;
            display: none;
        }
    
        .menu-button:hover .dropdown {
            display: block;
        }
    
        .artist-selection {
            flex-wrap: wrap;
            justify-content: center;
        }
    
        .artist-icon {
            width: 45%;
            margin-bottom: 20px;
        }
    
        .merchandise-container {
            width: 90%;
        }
    
        .location-container {
            width: 90%;
        }
    }

    /* ============================================================
       PAGE-SPECIFIC OVERRIDES
       These are scoped with a body class so each page renders
       exactly like its original standalone HTML file did.
       The body class is set per-page via $bodyClass in header.php.
       ============================================================ */

    /* --- Artist pages (stephen, taylor, kid, bronwyn) --- */
    .page-artist .artist-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        border: 2px solid #ffcc00;
        margin-bottom: 10px;
    }

    /* --- Taylor only: yellow links in bio --- */
    .page-taylor .artist-profile a {
        color: #ffcc00;
        text-decoration: none;
    }

    .page-taylor .artist-profile a:hover {
        text-decoration: underline;
    }

    /* --- Merchandise page --- */
    .page-merchandise .merchandise-container {
        position: relative;
    }

    .page-merchandise paypal-cart-button[data-id="pp-view-cart"] {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .page-merchandise .merchandise-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: contain;
        margin-bottom: 10px;
        image-rendering: pixelated;
        image-rendering: -moz-crisp-edges;
        image-rendering: crisp-edges;
    }

    /* --- Hats page --- */
    .page-hats .merchandise-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .page-hats .merchandise-container {
        position: relative;
        text-align: center;
    }

    .page-hats paypal-cart-button[data-id="pp-view-cart"] {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .page-hats .merchandise-title {
        text-align: center;
    }

    .page-hats .paypal-button-wrapper {
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }

    .page-hats paypal-add-to-cart-button {
        display: inline-block;
        min-width: 250px;
    }

    /* --- Gift Certificate page --- */
    .page-gift .merchandise-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .page-gift .paypal-button-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 20px 0;
    }

    /* force PayPal HostedButtons into a single horizontal row */
    .page-gift #paypal-container-CFC3KN5YFR5WQ .css-s2u0oi {
        display: flex !important;
        flex-direction: row !important;
    }

    /* override their container query that would re-stack at narrow widths */
    @container (max-width: 47rem) {
        .page-gift #paypal-container-CFC3KN5YFR5WQ .css-s2u0oi {
            flex-direction: row !important;
        }
    }

    /* ============================================================
       GALLERY + LIGHTBOX (database-driven artist pages)
       ============================================================ */

    /* Avatar hover: B&W by default, color on hover or current artist */
    .artist-icon { position: relative; }

    /* DEFAULT (homepage): everyone in COLOR */
    .artist-icon .avatar-color { display: block; }
    .artist-icon .avatar-bw    { display: none; }

    /* ARTIST PAGE: grey everyone out, except the artist being viewed.
       Hovering a greyed-out artist previews them in color. */
    .page-artist .artist-icon .avatar-color { display: none; }
    .page-artist .artist-icon .avatar-bw    { display: block; }

    .page-artist .artist-icon:hover .avatar-color,
    .page-artist .artist-icon.current .avatar-color { display: block; }

    .page-artist .artist-icon:hover .avatar-bw,
    .page-artist .artist-icon.current .avatar-bw { display: none; }

    /* Square thumbnail grid, like the old LightWidget layout */
    .tattoo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
        margin-top: 20px;
    }

    .tattoo-thumb {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        cursor: pointer;
        display: block;
        border: 0;
    }

    .tattoo-thumb:hover {
        outline: 2px solid #ffcc00;
    }

    /* Floater viewer */
    #lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 10, 0.92);
        z-index: 1000;
        align-items: center;
        justify-content: center;
    }

    #lightbox.open { display: flex; }

    #lbImage {
        max-width: 92vw;
        max-height: 92vh;
        display: block;
        box-shadow: 0 0 40px rgba(0,0,0,0.8);
    }

    #lightbox button {
        position: fixed;
        background: #ffcc00;
        color: #000033;
        border: none;
        font-family: 'VT323', monospace;
        font-size: 42px;
        line-height: 1;
        width: 64px;
        height: 64px;
        cursor: pointer;
        z-index: 1001;
    }

    #lightbox button:hover { background: #ffe066; }

    #lbClose { top: 18px; right: 18px; }
    #lbPrev  { left: 18px; top: 50%; transform: translateY(-50%); }
    #lbNext  { right: 18px; top: 50%; transform: translateY(-50%); }

    @media (max-width: 600px) {
        #lightbox button { width: 48px; height: 48px; font-size: 32px; }
        .tattoo-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    }

    /* ============================================================
       ANNOUNCEMENT + EDITABLE PAGES + PRODUCT PAGES
       ============================================================ */

    .news-container {
        background-color: rgba(0, 0, 0, 0.7);
        border: 2px solid #ffcc00;
        padding: 20px;
        margin-top: 30px;
        width: 100%;
        max-width: 800px;
        box-sizing: border-box;
    }

    .page-container {
        background-color: rgba(0, 0, 0, 0.7);
        border: 2px solid #ffcc00;
        padding: 20px;
        margin-top: 20px;
        width: 80%;
        max-width: 800px;
        box-sizing: border-box;
    }

    /* content that comes out of the rich-text editor */
    .page-body img {
        max-width: 100%;
        height: auto;
    }

    .page-body h2 { color: #ffcc00; text-shadow: 2px 2px #ff0066; }
    .page-body h3 { color: #00ffff; }
    .page-body a  { color: #ffcc00; }

    .page-body .ql-align-center  { text-align: center; }
    .page-body .ql-align-right   { text-align: right; }
    .page-body .ql-align-justify { text-align: justify; }

    /* product page photo (e.g. the hat) */
    .product-photo {
        display: block;
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 420px;
        margin: 0 auto 16px auto;
        border: 2px solid #00ffff;
    }

    .page-product .merchandise-price {
        text-align: center;
        font-size: 1.2em;
    }

    @media (max-width: 768px) {
        .page-container { width: 90%; }
    }
