:root {
    --hot-pink: rgb(255, 16, 240);
    --neon-green: rgb(57, 255, 20);
    --black: rgb(0, 0, 0);
    --light-grey: #e0e0e0;
    --dark-grey: #9e9e9e;
    --electric-orange: #ff3503;
    --ninenties-grey: #c0c0c0;

    --white: #fff;

    --light-background: #fff;
    --dark-background: #000;

    --light-text: #e0e0e0;
    --dark-text: #000;
}

body {
    background-color: #008080; /* Classic Teal background */
    color: #000000;
    font-family: "Times New Roman", Times, serif;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Tiled texture effect */
}

main img {
    border: 10px solid #ffffff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    margin: 1rem auto;
    display: block;
    max-width: 100%;
}

.pseal-section {
    background-color: #000080; /* Navy Blue */
    color: #ffffff;
    border: 6px ridge #ffd700; /* Gold Ridge */
    padding: 2rem;
    text-align: center;
}

.pseal-section h2 {
    color: #ffd700;
    font-family: "Times New Roman", serif;
    text-decoration: underline;
}

.pseal-section ul {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed #ffd700;
}

/* 4. Text Emphasis for 'Maximum Heat' */
.text-upper {
    text-transform: uppercase;
}

.strong {
    font-weight: 900;
    color: #ff0000;
}

/* 5. The $8/month 'DEAL' highlight */
.price-callout {
    font-size: 1.5rem;
    background: #00ff00;
    color: #000;
    display: inline-block;
    padding: 10px;
    border: 3px outset #fff;
    font-weight: bold;
    transform: rotate(-2deg); /* Slightly crooked like a sticker */
}

.title {
    color: green;
}

.disclaimer {
    font-size: xx-small;
    max-width: 80ch;
    overflow-y: hidden;
    display: block;
    padding: 1rem 2rem;
    margin: auto;
    background-color: var(--light-grey);
    color: var(--dark-grey);
}

#login-reminder {
    /* Use rem for spacing so it scales with user font settings */
    padding: 0.5rem 1rem;
    margin: 1.5rem auto;
    width: 90%; /* Fluid width for mobile */
    max-width: 600px; /* But don't let it get too wide on desktop */

    /* The "Fake" 90s look using modern units */
    border: 0.25rem dashed #00ff00; /* Scale the border thickness slightly */
    color: #ff00ff;
    background-color: #ff6600;
    text-align: center;
    
    /* Hard pixel shadows are fine; they don't break responsiveness */
    box-shadow: 8px 8px 0px #000000;
    
    /* No border-radius! Curves are too 'Web 2.0' */
    border-radius: 0; 

    & a {
        color: #ffffff;
        font-weight: 900;
        text-decoration: underline;
        font-size: 1.25rem; /* Scales with the browser */
        display: block; /* Larger tap target for mobile users! */
        
        /* The CSS-only Blink */
        animation: modern-blink 1s steps(1) infinite;
    }
}

@keyframes modern-blink {
    50% { opacity: 0; }
}

.membership-tier {
    max-width: 60ch;
    margin: 20px auto;
    padding: 10px;

    /* The classic 90s 'raised' bevel effect */
    border: 5px outset #ff00ff;
    background-color: #c0c0c0; /* Standard Windows 95 Grey */
    font-family: "Times New Roman", Times, serif;
    box-shadow: 10px 10px 0 #000000;

    .membership-title {
        padding: 10px;
        margin-bottom: 10px;
        background-color: #000080; /* Classic Navy Header */
        color: #ffffff;
        text-align: center;
        border: 2px inset #ffffff;

        & h4 {
            padding: 0;
            margin: 0;
            font-size: 32px;
            font-family: "Comic Sans MS", "Comic Sans", cursive;
            color: var(--electric-orange);
            text-transform: uppercase;
            text-decoration: underline;
        }

        .price {
            font-size: 14px;
            font-weight: bold;
            & span {
                font-size: 28px;
                color: #00ff00; /* Lime Green neon */
                text-shadow: 2px 2px #000000;
            }
        }

        .auto-renew-statement {
            color: #ffffff;
            font-size: 10px;
            font-style: italic;
        }

        .tier-value {
            font-size: 20px;
            background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 900;
        }
    }

    & ul {
        border: 2px inset #808080;
        background-color: var(--light-background);
        padding: 20px;
        color: var(--dark-text);

        & li {
            margin-left: 1rem;
            list-style-type: none;
            margin-bottom: 5px;

            &.includes {
                .strong {
                        font-size: 1.2em;
                        font-weight: bold;
                        color: #ff0000;
                }
                
                 &::marker {
                    content: "⭐";
                }
            }

            &.excludes {
                color: var(--light-grey);
                text-decoration: line-through;
                &::marker {
                    content: "🚫";
                }
            }
        }
    }

    .select-tier {
        display: block;
        width: 100%;
        text-align: center;
        padding: 20px 0;

        & a {
            display: inline-block;
            text-decoration: none;
            width: 80%;

            & div {
                background-color: var(--nineties-gray);
                border: 4px outset var(--white);
                color: var(--black);
                font-family: "Arial Black", Gadget, sans-serif;
                font-size: 24px;
                font-weight: bold;
                padding: 10px;
                cursor: pointer;

                &:active {
                    border-style: inset;
                    background-color: #a0a0a0;
                    padding: 11px 9px 9px 11px;
                }
            }

            &:hover div {
                color: #ff0000;
                background-color: #ffff00;
            }
        }
    }
}
    .featured-tier {
    position: relative;
    z-index: 1;
    padding: 8px; 
    background: linear-gradient(
        45deg, 
        red, orange, yellow, green, blue, indigo, violet, red
    );
    background-size: 400% 400%;
    animation: rainbow-scroll 5s ease infinite;
    border: 3px outset #ffffff;
}

    @keyframes rainbow-scroll {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


img {
    display: block;
    max-width: 100%;
    object-fit: contain;
    align-items: center;
}

dl {
    background-color: #000000; /* Black background for that 'Pro' hacker look */
    color: #ffffff;
    padding: 2rem;
    border: 4px groove #c0c0c0;
    max-width: 800px;
    margin: 2rem auto;
    font-family: "Courier New", Courier, monospace;
}

dt {
    color: #00ff00; /* Matrix Green */
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 0.25rem;
    text-transform: uppercase;
}

dd {
    margin-left: 1rem;
    padding: 0.5rem 0;
    line-height: 1.4;
    color: #cccccc;
}

/* 2. The Sticker Table (Neon Chaos) */
table {
    width: 100%;
    margin-top: 1rem;
    background-color: #00ff00; /* Neon Green */
    color: #000000;
    border-collapse: separate;
    border-spacing: 2px;
    border: 5px solid #ff00ff; /* Hot Pink outer frame */
    font-family: Arial, sans-serif;

    & tr {
        th, td {
            padding: 0.5rem;
            border: 1px solid #000;
        }

        th {
            background-color: #ff00ff; /* Hot Pink Headers */
            color: #00ff00; /* Neon Green Text */
            text-align: center;
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        /* Zebra Striping for 'Readability' */
        &:nth-child(even) {
            background-color: #000000;
            color: #00ff00;
        }
    }

    a {
        color: inherit;
        text-decoration: underline;
        &:hover {
            background-color: #ffff00;
            color: #ff0000;
        }
    }
}

/* 3. The Scorch Quote Block */
/* The Management Review Box */
.management-review {
    background-color: #ffffcc; /* Aged paper / 'Cream' look */
    border: 4px inset #808080;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 550px;
    position: relative;
    font-family: "Times New Roman", serif;
    color: #000;
}

/* The 'Official' Stamp Effect */
.management-review::after {
    content: "APPROVED";
    position: absolute;
    top: 10px;
    right: 10px;
    border: 3px solid #ff0000;
    color: #ff0000;
    padding: 5px;
    font-family: "Impact", sans-serif;
    transform: rotate(15deg);
    opacity: 0.3;
    font-size: 1.5rem;
}

.management-review blockquote {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.management-review .reviewer-name {
    text-align: right;
    font-weight: bold;
    display: block;
    margin-top: 1rem;
    color: #000080; /* Navy Blue */
    text-decoration: underline;
}

/* Highlighting the 'Mad Libs' style variables */
.review-variable {
    background-color: #00ff00;
    color: #000;
    font-weight: bold;
    padding: 0 2px;
}
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: "Courier New", Courier, monospace; /* Classic typewriter feel */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Neon Header */
header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("media/img/divebarlocator_neon.png"); /* Replace with your bar photo */
    background-size: contain;
    border-bottom: 2px solid #ff0055;
    box-shadow: 0 0 15px #ff0055;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px #ff0055,
        0 0 30px #ff0055;
    margin: 0;
    text-transform: uppercase;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2 {
    color: #00d4ff;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

section {
    margin-bottom: 2.5rem;
}

blockquote {
    font-style: italic;
    border-left: none;
    text-align: center;
    font-size: 1.4rem;
    color: #ffaa00;
    margin: 40px 0;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
    padding: 0 15px;
}

.nav-link:hover {
    color: #00d4ff;
    text-shadow: 2px 2px #ff00ff; /* That classic 90s glitch/neon look */
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 2.5rem;
    }
}
