/*
  DESIGN THEME: Neon Nights Urban Grit
  - Dark backgrounds (#0D0D0D) with neon red (#FF2D2D) accents
  - Electric blue (#00D4FF) secondary accent
  - Bebas Neue headlines, Source Sans 3 body
  - Urban authenticity, high contrast
*/

:root {
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Source Sans 3", sans-serif;
    --color-background: #0d0d0d;
    --color-foreground: #fafafa;
    --color-card: #1a1a1a;
    --color-primary: #ff2d2d;
    --color-secondary: #00d4ff;
    --color-muted: #666666;
    --color-border: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    position: relative;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: #ffffff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 60;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

@media (max-width: 640px) {
    .promo-banner {
        font-size: 0.75rem;
    }
}

nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    text-shadow:
        0 0 10px rgba(255, 45, 45, 0.8),
        0 0 20px rgba(255, 45, 45, 0.6),
        0 0 30px rgba(255, 45, 45, 0.4);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
    background: none;
    border: 0;
    padding: 0;
    appearance: none;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.desktop-directions-btn {
    display: none;
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 104px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(51, 51, 51, 0.5);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links a.btn {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .desktop-directions-btn {
        display: inline-flex;
    }

    .nav-links .nav-directions-btn {
        display: none !important;
    }
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow:
        0 0 20px rgba(255, 45, 45, 0.4),
        0 0 40px rgba(255, 45, 45, 0.2);
}

.btn-primary:hover {
    background: #e62929;
}

.btn-outline {
    border: 2px solid rgba(255, 45, 45, 0.5);
    color: var(--color-foreground);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 45, 45, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 104px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("images/rjs-liquor-store-chicago-hero-bottles.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.6), rgba(13, 13, 13, 1));
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.9), transparent, rgba(13, 13, 13, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow:
        0 0 10px rgba(255, 45, 45, 0.8),
        0 0 20px rgba(255, 45, 45, 0.6),
        0 0 30px rgba(255, 45, 45, 0.4),
        0 0 40px rgba(255, 45, 45, 0.2);
    animation: neonFlicker 3s infinite;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 6rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 8rem;
    }
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-display);
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 2rem;
    }
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

@media (min-width: 640px) {
    .hero-info {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-info-item svg {
    color: var(--color-primary);
}

.separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary);
    display: none;
}

@media (min-width: 640px) {
    .separator {
        display: block;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-pulse {
    animation: pulseGlow 2s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 45, 45, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: pulse 2s infinite;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow:
        0 0 10px rgba(255, 45, 45, 0.8),
        0 0 20px rgba(255, 45, 45, 0.6),
        0 0 30px rgba(255, 45, 45, 0.4);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 4rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 42rem;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background: var(--color-card);
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.5s;
}

.card:hover {
    border-color: rgba(255, 45, 45, 0.5);
}

.card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-card), rgba(26, 26, 26, 0.5), transparent);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.card-icon {
    color: var(--color-primary);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
}

.card-description {
    color: var(--color-muted);
}

.store-photo {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow:
        0 0 5px rgba(255, 45, 45, 0.5),
        0 0 10px rgba(255, 45, 45, 0.3);
}

.store-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.7s;
}

.store-photo:hover img {
    transform: scale(1.05);
}

.photo-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.tastings {
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.9));
    border-top: 1px solid rgba(255, 45, 45, 0.3);
    border-bottom: 1px solid rgba(255, 45, 45, 0.3);
}

.tastings-container {
    text-align: center;
    max-width: 800px;
}

.tastings-icon {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.tastings-title {
    margin-bottom: 0.5rem;
}

.tastings-time {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.tastings-copy {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .premium-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.premium-text h2 {
    font-size: 3rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow:
        0 0 10px rgba(255, 45, 45, 0.8),
        0 0 20px rgba(255, 45, 45, 0.6);
}

@media (min-width: 768px) {
    .premium-text h2 {
        font-size: 4rem;
    }
}

.premium-text p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

.premium-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 0 10px rgba(255, 45, 45, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Premium Hover Transitions */
.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 45, 45, 0.4);
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Offset Masonry Aesthetics */
@media (min-width: 768px) {
    .gallery-item:nth-child(2) {
        transform: translateY(2rem);
    }
    
    .gallery-item:nth-child(2):hover {
        transform: translateY(1.5rem) scale(1.02);
    }

    .gallery-item:nth-child(4) {
        transform: translateY(2rem);
    }
    
    .gallery-item:nth-child(4):hover {
        transform: translateY(1.5rem) scale(1.02);
    }
}

.why-rjs {
    background-color: var(--color-card);
    border-top: 1px solid rgba(51, 51, 51, 0.5);
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
}

.why-card {
    padding: 2rem;
    text-align: center;
    background: transparent;
    border: none;
}

.why-card:hover {
    border-color: transparent;
}

.why-card-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.why-card-copy {
    color: var(--color-muted);
}

.reviews-showcase {
    background:
        radial-gradient(circle at top, rgba(255, 45, 45, 0.12), transparent 34%),
        linear-gradient(to bottom, rgba(18, 18, 18, 0.95), rgba(13, 13, 13, 1));
    border-top: 1px solid rgba(255, 45, 45, 0.18);
    border-bottom: 1px solid rgba(255, 45, 45, 0.18);
}

.reviews-note {
    color: var(--color-muted);
    margin-top: 1rem;
}

.review-direction {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.92), rgba(17, 17, 17, 0.92));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.review-direction + .review-direction {
    margin-top: 2rem;
}

.direction-heading {
    margin-bottom: 1.75rem;
}

.direction-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 45, 45, 0.12);
    border: 1px solid rgba(255, 45, 45, 0.28);
    color: #ffd0d0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.direction-title {
    font-size: 2rem;
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.review-rail-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.review-rail-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-rail-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-rail-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.review-card {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(32, 32, 32, 0.95), rgba(22, 22, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 45, 0.28);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: #ffc107;
    fill: #ffc107;
}

.review-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.review-source {
    color: #d1d1d1;
}

.review-rail-wrap {
    position: relative;
}

.review-rail-wrap::before,
.review-rail-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4rem;
    z-index: 2;
    pointer-events: none;
}

.review-rail-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(17, 17, 17, 1), rgba(17, 17, 17, 0));
}

.review-rail-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(17, 17, 17, 1), rgba(17, 17, 17, 0));
}

.review-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 340px);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 0.25rem;
    padding: 0.25rem 0.25rem 1rem;
    scrollbar-width: thin;
}

.review-rail:focus-visible {
    outline: 2px solid rgba(255, 45, 45, 0.7);
    outline-offset: 6px;
    border-radius: 1rem;
}

.review-rail .review-card {
    scroll-snap-align: start;
    min-height: 235px;
}

.review-rail .review-text {
    font-size: 1rem;
    color: #f2f2f2;
}

.review-rail .review-author {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.review-rail-source {
    color: #a2a2a2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
}

.carousel-btn {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}

.carousel-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(255, 45, 45, 0.45);
    background: rgba(255, 45, 45, 0.12);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (min-width: 960px) {
    .review-rail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: end;
    }

    .review-rail-meta {
        align-items: end;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .review-direction {
        padding: 1.25rem;
    }

    .direction-title {
        font-size: 1.6rem;
    }

    .review-rail-score {
        font-size: 3rem;
    }

    .review-rail {
        grid-auto-columns: minmax(260px, 86vw);
    }

    .review-rail-actions .btn {
        width: 100%;
    }
}

.info-card {
    padding: 2rem;
    background: var(--color-card);
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 0.5rem;
    height: 100%;
    box-shadow:
        0 0 5px rgba(255, 45, 45, 0.5),
        0 0 10px rgba(255, 45, 45, 0.3);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-card-header svg {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
}

.info-card-header h3 {
    font-size: 1.875rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
}

.hours-list {
    list-style: none;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

.hours-item.today {
    color: var(--color-primary);
    font-weight: 600;
}

.hours-notice {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 45, 45, 0.1);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.hours-notice strong {
    color: var(--color-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    font-size: 1.125rem;
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
    }
}

.contact-buttons .btn {
    flex: 1;
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow:
        0 0 5px rgba(255, 45, 45, 0.5),
        0 0 10px rgba(255, 45, 45, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    background-image: url("images/hero-bottles.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--color-background), rgba(255, 45, 45, 0.1), var(--color-background));
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow:
        0 0 10px rgba(255, 45, 45, 0.8),
        0 0 20px rgba(255, 45, 45, 0.6),
        0 0 30px rgba(255, 45, 45, 0.4);
    animation: neonFlicker 3s infinite;
}

.cta-copy {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(51, 51, 51, 0.5);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    footer .container {
        flex-direction: row;
    }
}

.footer-section {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-section:first-child {
        text-align: left;
    }

    .footer-section:last-child {
        text-align: right;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-display);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow:
        0 0 10px rgba(255, 45, 45, 0.8),
        0 0 20px rgba(255, 45, 45, 0.6);
}

.footer-tagline {
    font-size: 0.875rem;
    color: #ffffff;
}

.footer-copy {
    font-size: 0.875rem;
    color: #ffffff;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--color-primary);
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-note {
    font-size: 0.75rem;
    color: #ffffff;
    margin-top: 0.25rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes neonFlicker {
    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.8;
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 45, 45, 0.4),
            0 0 40px rgba(255, 45, 45, 0.2);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 45, 45, 0.6),
            0 0 60px rgba(255, 45, 45, 0.3);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Focus Ring for Keyboard Navigation (WCAG) */
:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 4px;
}
