/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --contrast: #222222;
    --contrast-2: #575760;
    --contrast-3: #b2b2be;
    --base: #f0f0f0;
    --base-2: #f7f8f9;
    --base-3: #ffffff;
    --accent: #117770;
}

body {
    background-color: #1f1c1d;
    color: #d0d0d0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--accent);
    text-decoration: underline;
}

a:hover, a:focus, a:active {
    color: var(--contrast);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #000;
    color: #fff;
    padding: 10px;
    text-decoration: none;
}

.skip-link:focus {
    left: 0;
    z-index: 100000;
}

/* Header */
.site-header {
    background: #39302f;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.inside-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    transition: transform 0.3s ease;
    text-align: center;
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-logo a {
    text-decoration: none;
    display: inline-block;
}

.header-image {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: filter 0.3s ease;
}

.header-image:hover {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.site-content {
    padding: 40px 20px;
}

.inside-article {
    background: linear-gradient(135deg, #2a2424 0%, #241f1f 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #3a3333;
}

/* Hero Section */
.neon54-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/neon54.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.neon54-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(17, 119, 112, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.neon54-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.neon54-hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neon54-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #9eebe0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon54-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.neon54-hero-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #fe500c 0%, #ff3d00 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(254, 80, 12, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.neon54-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.neon54-hero-btn:hover::before {
    left: 100%;
}

.neon54-hero-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(254, 80, 12, 0.7);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.neon54-hero-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #f5f5f5;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff9d5c;
    display: inline-block;
    background: linear-gradient(90deg, #ff9d5c 0%, #fe500c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #ff9d5c;
    position: relative;
    padding-left: 20px;
}

h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #ff9d5c 0%, #fe500c 100%);
    border-radius: 2px;
}

/* Remove underline from h3 in columns */
.wp-block-column h3 {
    border-bottom: none;
    padding-bottom: 0;
}

.wp-block-columns:has(.wp-block-image) .wp-block-column h3 {
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #d5d5d5;
}

p strong {
    color: #ff9d5c;
    font-weight: 600;
}

ul, ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
    background: #342c2b;
    padding: 25px 25px 25px 50px;
    border-radius: 8px;
    border-left: 4px solid #ff9d5c;
}

li {
    list-style: circle;
    margin-bottom: 1rem;
    color: #d5d5d5;
    line-height: 1.7;
}

li:last-child {
    margin-bottom: 0;
}

li strong {
    color: #ff9d5c;
    font-weight: 600;
}

li::marker {
    color: #ff9d5c;
    font-size: 1.2em;
}

/* Tables */
.wp-block-table {
    margin: 3rem 0;
    overflow-x: auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2424;
}

table.has-fixed-layout {
    table-layout: fixed;
}

th, td {
    padding: 16px;
    border: 1px solid #4a4040;
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    vertical-align: top;
    color: #e0e0e0;
    transition: background-color 0.2s ease;
}

thead th {
    background: linear-gradient(135deg, #3d3433 0%, #342c2b 100%);
    font-weight: 700;
    border-bottom: 3px solid #ff9d5c;
    white-space: normal;
    color: #ff9d5c;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

tbody tr {
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: #3a3232;
}

tbody tr:nth-child(even) {
    background-color: #322b2a;
}

tbody tr:nth-child(even):hover {
    background-color: #3a3232;
}

tbody td {
    min-width: 100px;
}

tbody td strong {
    color: #ff9d5c;
}

/* Buttons */
.wp-block-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.wp-block-button {
    display: inline-block;
}

.wp-block-button__link {
    display: inline-block;
    padding: 0.667em 1.333em;
    background-color: #fe500c;
    color: #ffffff;
    font-size: 1.125em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 0 4px rgba(253, 71, 7, 0.7);
}

.wp-block-button__link:hover,
.wp-block-button__link:focus {
    background-color: #ff682c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Cover Block */
.wp-block-cover {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}

.wp-block-cover__image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.wp-block-cover__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.spacer {
    height: 186px;
}

.has-text-align-center {
    text-align: center;
}

.has-base-3-color {
    color: var(--base-3);
}

.has-large-font-size {
    font-size: 2.25em;
}

.wp-block-cover .has-base-3-color {
    text-shadow: 0 2px 15px #000;
}

/* Columns */
.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    margin: 3rem 0;
    align-items: center;
}

/* Default column styling - for text-only columns */
.wp-block-column {
    flex: 1;
    min-width: 0;
    background: linear-gradient(135deg, #342c2b 0%, #2a2424 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #4a4040;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: #5a5050;
}

.wp-block-column h2 {
    color: #ff9d5c;
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #4a4040;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.wp-block-column h3 {
    color: #ff9d5c;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.wp-block-column h3::before {
    display: none;
}

.wp-block-column p {
    color: #d5d5d5;
    line-height: 1.8;
}

.wp-block-column p:last-child {
    margin-bottom: 0;
}

/* Special styling for columns with images */
.wp-block-columns:has(.wp-block-image) {
    background: transparent;
    gap: 4em;
}

.wp-block-columns:has(.wp-block-image) .wp-block-column {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    transform: none;
}

.wp-block-columns:has(.wp-block-image) .wp-block-column:hover {
    transform: none;
    box-shadow: none;
}

.wp-block-columns:has(.wp-block-image) .wp-block-column h2 {
    border-bottom: 3px solid #ff9d5c;
    padding-bottom: 12px;
    display: inline-block;
}

.wp-block-columns:has(.wp-block-image) .wp-block-column h3 {
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

.wp-block-columns:has(.wp-block-image) .wp-block-column h3::before {
    display: block;
}

/* Image column specific styling */
.wp-block-column:has(.wp-block-image) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-block-column .wp-block-image {
    position: relative;
}

.wp-block-column .wp-block-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #ff9d5c;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.5;
}

/* Images */
.wp-block-image {
    margin: 2rem 0;
}

.wp-block-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

figure {
    margin: 0;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #1f1c1d 0%, #2a2424 50%, #1f1c1d 100%);
    padding: 50px 20px 30px;
    margin-top: 60px;
    border-top: 3px solid #ff9d5c;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ff9d5c 50%, transparent 100%);
}

.inside-site-info {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-section {
    padding: 25px;
    background: rgba(52, 44, 43, 0.5);
    border-radius: 12px;
    border: 1px solid #4a4040;
}

.footer-section h4 {
    color: #ff9d5c;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Age Restriction Section */
.age-restriction {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 157, 92, 0.15) 0%, rgba(254, 80, 12, 0.1) 100%);
    border: 2px solid #ff9d5c;
}

.age-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9d5c 0%, #fe500c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 157, 92, 0.4);
}

.age-restriction p {
    flex: 1;
    font-weight: 500;
    color: #d0d0d0;
    font-size: 1rem;
}

/* Disclaimer Section */
.disclaimer {
    border-left: 4px solid #ff9d5c;
}

/* Copyright Section */
.copyright {
    text-align: center;
    background: transparent;
    border: none;
    padding: 20px 0 0;
}

.copyright p {
    color: #909090;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: #ff9d5c;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fe500c;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .inside-header {
        padding: 18px 30px;
    }

    .header-image {
        width: 160px;
    }

    .neon54-hero-content h1 {
        font-size: 3rem;
    }

    .neon54-hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: relative;
        background: #39302f;
    }

    .inside-header {
        padding: 18px 20px;
    }

    .header-image {
        width: 150px;
    }

    .neon54-hero {
        background-image: url('images/neon-54.webp');
        min-height: 60vh;
        background-attachment: scroll;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    .neon54-hero-overlay {
        padding: 40px 20px;
    }

    .neon54-hero-content {
        padding: 0 1rem;
    }

    .neon54-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .neon54-hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .neon54-hero-btn {
        padding: 14px 36px;
        font-size: 1.1rem;
        width: auto;
    }

    .inside-article {
        padding: 30px;
    }

    .site-content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .wp-block-columns {
        flex-direction: column;
        gap: 2em;
    }

    .wp-block-columns:has(.wp-block-image) {
        gap: 2.5em;
    }

    .wp-block-column {
        padding: 25px;
    }

    .wp-block-columns:has(.wp-block-image) .wp-block-column {
        padding: 0;
    }

    .wp-block-column h2,
    .wp-block-column h3 {
        font-size: 1.3rem;
    }

    .wp-block-column .wp-block-image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .spacer {
        height: 100px;
    }

    .has-large-font-size {
        font-size: 1.5em;
    }

    .wp-block-table {
        margin: 2rem -20px;
        border-radius: 0;
        box-shadow: none;
    }

    table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 0;
    }

    thead {
        display: none;
    }

    tbody, tr {
        display: block;
        width: 100%;
    }

    tr {
        margin-bottom: 20px;
        background: #2a2424 !important;
        border: 1px solid #4a4040;
        border-radius: 8px;
        padding: 15px;
    }

    tr:hover {
        background: #2a2424 !important;
    }

    td {
        display: block;
        width: 100% !important;
        min-width: 0 !important;
        padding: 8px 0;
        border: none !important;
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    td:first-child {
        font-weight: 700;
        color: #ff9d5c;
        font-size: 1rem;
        margin-bottom: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #4a4040 !important;
    }

    td strong {
        display: block;
        margin-bottom: 3px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 25px;
        margin-top: 50px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-section {
        padding: 20px;
    }

    .age-restriction {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .age-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-links {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .inside-header {
        padding: 16px 15px;
    }

    .header-image {
        width: 130px;
    }

    .neon54-hero {
        min-height: 55vh;
        border-radius: 6px;
    }

    .neon54-hero-overlay {
        padding: 30px 15px;
    }

    .neon54-hero-content {
        padding: 0 0.5rem;
    }

    .neon54-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .neon54-hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .neon54-hero-btn {
        padding: 12px 28px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .inside-article {
        padding: 25px;
    }

    .wp-block-column {
        padding: 20px;
    }

    .wp-block-columns:has(.wp-block-image) .wp-block-column {
        padding: 0;
    }

    ul, ol {
        padding: 20px 20px 20px 45px;
    }

    .wp-block-column .wp-block-image::before {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }

    .wp-block-table {
        margin: 2rem -15px;
    }

    table {
        font-size: 0.85rem;
    }

    tr {
        padding: 12px;
        margin-bottom: 15px;
    }

    td {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    td:first-child {
        font-size: 0.95rem;
        padding-bottom: 6px;
        margin-bottom: 6px;
    }
}

@media (max-width: 360px) {
    .inside-header {
        padding: 14px 10px;
    }

    .header-image {
        width: 110px;
    }

    .neon54-hero-content h1 {
        font-size: 1.75rem;
    }

    .neon54-hero-content p {
        font-size: 0.95rem;
    }

    .neon54-hero-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}
