:root {
    --primary-bg: #050505;
    --secondary-bg: #0f0f0f;
    --surface: #161616;
    --primary-accent: #8b0000;
    --glow-accent: #ff1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: rgba(255, 26, 26, 0.15);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.dark-glow-theme {
    scroll-behavior: smooth;
}

.global-transition {
    transition: all 0.4s ease-out;
}

.section-spacer {
    padding: 80px 0;
}

.glow-text {
    text-shadow: 0 0 10px var(--glow-accent);
}

.card-glass {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.btn-accent {
    background: var(--primary-accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-accent:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--glow-accent);
    color: white;
}

/* ===== header ===== */
.header-block {
    background-color: #050505 !important;
    border-bottom: 1px solid rgba(255, 26, 26, 0.15);
    z-index: 1050;
}

.header-block .navbar {
    padding: 1rem 0;
    background-color: #050505 !important;
}

.header-block .brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.header-block .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.header-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #a0a0a0 !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease-out;
}

.header-block .nav-link:hover,
.header-block .nav-link.active {
    color: #ff1a1a !important;
    text-shadow: 0 0 8px rgba(255, 26, 26, 0.4);
}

.header-block .dropdown-menu {
    background-color: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-block .dropdown-item {
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease-out;
}

.header-block .dropdown-item:hover {
    background-color: rgba(139, 0, 0, 0.2);
    color: #ff1a1a;
}

.header-block .btn-cta {
    background-color: #8b0000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    transition: all 0.4s ease-out;
    box-shadow: inset 0 0 10px rgba(255, 26, 26, 0.2);
}

.header-block .btn-cta:hover {
    background-color: #ff1a1a;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
    transform: translateY(-2px);
}

.header-block .navbar-toggler {
    border: 1px solid rgba(255, 26, 26, 0.3);
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
}

.header-block .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .header-block .navbar-collapse {
        background-color: #0f0f0f;
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 26, 26, 0.1);
    }

    .header-block .nav-cta-wrapper {
        margin-top: 1rem;
        width: 100%;
    }

    .header-block .btn-cta {
        width: 100%;
        text-align: center;
    }
}

/* ===== hero ===== */
.hero-editorial {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-editorial__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-editorial__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.8) 100%);
}

.hero-editorial__content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-editorial__pill-container {
    background: #ffffff;
    border-radius: 60px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 900px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 26, 26, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-editorial__badge-pill {
    display: inline-block;
    background: #050505;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.hero-editorial__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #050505;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    hyphens: auto;
}

.hero-editorial__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.hero-editorial__btn {
    display: inline-block;
    background: #8b0000;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-editorial__btn:hover {
    background: #ff1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.4);
    color: #ffffff;
}

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

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

@media (max-width: 768px) {
    .hero-editorial {
        padding: 60px 15px;
    }

    .hero-editorial__pill-container {
        border-radius: 40px;
        padding: 3rem 1.5rem;
    }

    .hero-editorial__title {
        font-size: 1.125rem;
    }

    .hero-editorial__subtitle {
        font-size: 0.95rem;
    }

    .hero-editorial__badge-pill {
        font-size: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .hero-editorial__btn {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
}

/* ===== sydney-bars-preview ===== */
.sydney-bars-preview {
    background-color: #050505;
    color: #ffffff;
    overflow: hidden;
}

.sydney-bars-preview h2 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.sydney-bars-preview .filter-btn {
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    color: #a0a0a0;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease-out;
    font-weight: 500;
}

.sydney-bars-preview .filter-btn:hover,
.sydney-bars-preview .filter-btn.active {
    background: #8b0000;
    color: #ffffff;
    border-color: #ff1a1a;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
}

.sydney-bars-preview .venue-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 26, 26, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.sydney-bars-preview .venue-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 26, 26, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 26, 26, 0.1);
}

.sydney-bars-preview .card-img-link {
    display: block;
    overflow: hidden;
    height: 200px;
}

.sydney-bars-preview .venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sydney-bars-preview .venue-card:hover .venue-img {
    transform: scale(1.1);
}

.sydney-bars-preview .rating-badge {
    background: rgba(255, 26, 26, 0.1);
    color: #ff1a1a;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(255, 26, 26, 0.2);
}

.sydney-bars-preview .badge-247 {
    background: #8b0000;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sydney-bars-preview .venue-info i {
    color: #ff1a1a;
    font-size: 1.1rem;
}

.sydney-bars-preview .btn-cta-outline {
    background: transparent;
    border: 2px solid #8b0000;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sydney-bars-preview .btn-cta-outline:hover {
    background: #8b0000;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.6);
    transform: scale(1.05);
}

/* ===== melbourne-bars-preview ===== */
.melbourne-bars-preview {
    background-color: #050505;
    padding: 80px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.melbourne-bars-preview .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.melbourne-bars-preview .section-subtitle {
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.melbourne-bars-preview .filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 26, 26, 0.3);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease-out;
    font-size: 0.9rem;
    font-weight: 500;
}

.melbourne-bars-preview .filter-btn:hover,
.melbourne-bars-preview .filter-btn.active {
    background: #8b0000;
    border-color: #ff1a1a;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.4);
}

.melbourne-bars-preview .bar-card {
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.melbourne-bars-preview .bar-card:hover {
    transform: translateY(-8px);
    border-color: #ff1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 26, 26, 0.1);
}

.melbourne-bars-preview .img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.melbourne-bars-preview .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.melbourne-bars-preview .bar-card:hover img {
    transform: scale(1.1);
}

.melbourne-bars-preview .card-body {
    padding: 24px;
    flex-grow: 1;
}

.melbourne-bars-preview .card-title-link {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.melbourne-bars-preview .card-title-link:hover {
    color: #ff1a1a;
}

.melbourne-bars-preview .card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.melbourne-bars-preview .venue-info {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.melbourne-bars-preview .info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.melbourne-bars-preview .info-item i {
    color: #ff1a1a;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.melbourne-bars-preview .info-item a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.melbourne-bars-preview .info-item a:hover {
    color: #ffffff;
}

.melbourne-bars-preview .venue-desc {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

.melbourne-bars-preview .btn-glow {
    background: #8b0000;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.melbourne-bars-preview .btn-glow:hover {
    background: #ff1a1a;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.6);
    transform: scale(1.02);
    color: #ffffff;
}

@media (max-width: 768px) {
    .melbourne-bars-preview .section-title {
        font-size: 1.8rem;
    }

    .melbourne-bars-preview .card-body h3 {
        font-size: 1.1rem;
    }

    .melbourne-bars-preview {
        padding: 50px 0;
    }
}

/* ===== reviews-preview ===== */
.reviews-preview {
    background-color: #050505;
    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.reviews-preview__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
    margin-bottom: 0.5rem;
}

.reviews-preview__divider {
    width: 80px;
    height: 4px;
    background: #8b0000;
    margin-bottom: 1.5rem;
    position: relative;
}

.reviews-preview__divider::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff1a1a;
    filter: blur(4px);
    top: 0;
    left: 0;
}

.reviews-preview__subtitle {
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.reviews-preview__card {
    background-color: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 12px;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    position: relative;
}

.reviews-preview__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 26, 26, 0.25);
    border-color: #ff1a1a;
}

.reviews-preview__img-wrapper {
    height: 220px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    position: relative;
}

.reviews-preview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reviews-preview__card:hover .reviews-preview__img {
    transform: scale(1.1);
}

.reviews-preview__content {
    padding: 24px;
}

.reviews-preview__meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #666666;
}

.reviews-preview__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviews-preview__card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.reviews-preview__card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reviews-preview__card-title a:hover {
    color: #ff1a1a;
}

.reviews-preview__excerpt {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    hyphens: auto;
}

.reviews-preview__btn {
    background-color: #8b0000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
    display: inline-block;
    border: none;
}

.reviews-preview__btn:hover {
    background-color: #ff1a1a;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.5);
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .reviews-preview__card--offset {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .reviews-preview__title {
        font-size: 16px;
    }

    .reviews-preview__subtitle {
        font-size: 0.9rem;
    }

    .reviews-preview__card-title {
        font-size: 14px;
    }

    .reviews-preview {
        padding: 40px 15px;
    }
}

/* ===== faq ===== */
.faq-section {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.faq-section .faq-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.faq-section .faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #8b0000;
    margin: 15px auto 0;
    box-shadow: 0 0 10px #ff1a1a;
}

.faq-section .faq-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.faq-section .faq-accordion {
    max-width: 100%;
}

.faq-section .faq-item {
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-section .faq-item:hover {
    border-color: rgba(255, 26, 26, 0.4);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.1);
}

.faq-section .faq-header {
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.3s ease;
    outline: none;
}

.faq-section .faq-header:hover {
    color: #ff1a1a;
}

.faq-section .faq-icon {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #8b0000;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #ff1a1a;
}

.faq-section .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-section .faq-body-content {
    padding: 0 1.5rem 1.5rem;
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .faq-section .faq-title {
        font-size: 1.5rem;
    }

    .faq-section .faq-header {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-section .faq-body-content {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== gallery ===== */
.pather-gallery {
    background-color: #050505;
    color: #ffffff;
    overflow: hidden;
}

.pather-gallery__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pather-gallery__divider {
    width: 60px;
    height: 3px;
    background: #8b0000;
    box-shadow: 0 0 10px #ff1a1a;
}

.pather-gallery__subtitle {
    font-family: 'Inter', sans-serif;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pather-gallery__filter-btn {
    background-color: #161616;
    color: #ffffff;
    border: 1px solid rgba(255, 26, 26, 0.2);
    padding: 10px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease-out;
    border-radius: 4px;
    cursor: pointer;
}

.pather-gallery__filter-btn:hover {
    border-color: #ff1a1a;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.3);
    transform: translateY(-2px);
}

.pather-gallery__filter-btn.active {
    background-color: #8b0000;
    border-color: #ff1a1a;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
}

.pather-gallery__card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.1);
    transition: transform 0.4s ease;
}

.pather-gallery__img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.pather-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.pather-gallery__card:hover .pather-gallery__img {
    transform: scale(1.1);
}

.pather-gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.9) 100%);
    transition: all 0.4s ease;
}

.pather-gallery__item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.pather-gallery__location {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #ff1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pather-gallery__card:hover {
    border-color: rgba(255, 26, 26, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .pather-gallery__title {
        font-size: 1.25rem;
    }

    .pather-gallery__subtitle {
        font-size: 0.9rem;
    }

    .pather-gallery__filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===== footer ===== */
.footer-block {
    background-color: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 26, 26, 0.15);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.footer-block__logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.footer-block__description {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-block__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid #8b0000;
    border-radius: 8px;
}

.footer-block__age-limit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ff1a1a;
    font-size: 1.1rem;
}

.footer-block__badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer-block__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
}

.footer-block__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #8b0000;
}

.footer-block__nav-list,
.footer-block__contact-list,
.footer-block__legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-block__nav-list li,
.footer-block__contact-list li {
    margin-bottom: 12px;
}

.footer-block__link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 0.95rem;
}

.footer-block__link:hover {
    color: #ff1a1a;
    text-shadow: 0 0 8px rgba(255, 26, 26, 0.5);
}

.footer-block__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-block__contact-list i {
    color: #8b0000;
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-block__separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
    margin: 40px 0;
    opacity: 0.3;
}

.footer-block__copyright {
    color: #666666;
    font-size: 0.85rem;
    margin: 0;
}

.footer-block__legal-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

@media (min-width: 768px) {
    .footer-block__legal-list {
        justify-content: flex-end;
    }
}

.footer-block__legal-list .footer-block__link {
    font-size: 0.85rem;
}

@media (max-width: 767px) {
    .footer-block {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer-block__description {
        margin: 0 auto;
    }

    .footer-block__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-block__contact-list li {
        justify-content: center;
    }
}

/* ===== PAGE: privacy ===== */
.policy-body-content { background-color: #050505; color: #a0a0a0; font-family: 'Inter', sans-serif; padding: 80px 0; overflow-x: hidden; } .policy-body-content .policy-content-wrapper { max-width: 900px; margin: 0 auto; padding: 0 20px; } .policy-body-content .policy-header-stack { border-bottom: 1px solid rgba(255, 26, 26, 0.15); padding-bottom: 40px; position: relative; } .policy-body-content .policy-header-stack span { color: #ff1a1a; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; display: block; margin-bottom: 15px; } .policy-body-content .policy-header-stack h1 { color: #ffffff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 3rem; margin-bottom: 20px; text-shadow: 0 0 20px rgba(255, 26, 26, 0.3); } .policy-body-content .policy-header-stack .lead-text { font-size: 1.25rem; color: #ffffff; margin-bottom: 15px; } .policy-body-content .policy-header-stack .update-timestamp { font-size: 0.9rem; color: #666666; } .policy-body-content .policy-main-text h2 { color: #ffffff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; margin-top: 50px; margin-bottom: 20px; border-left: 3px solid #8b0000; padding-left: 20px; } .policy-body-content .policy-main-text p { line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; } .policy-body-content .policy-main-text ul { list-style: none; padding-left: 0; margin-bottom: 30px; } .policy-body-content .policy-main-text li { position: relative; padding-left: 30px; margin-bottom: 15px; line-height: 1.6; } .policy-body-content .policy-main-text li::before { content: '\2022'; color: #ff1a1a; position: absolute; left: 10px; font-weight: bold; } .policy-body-content .policy-main-text strong { color: #ffffff; } .policy-body-content .policy-main-text a { color: #ff1a1a; text-decoration: none; transition: color 0.3s ease; } .policy-body-content .policy-main-text a:hover { color: #ffffff; } .policy-body-content .contact-details-block { background: #161616; padding: 30px 30px 30px 45px; border-radius: 8px; border: 1px solid rgba(255, 26, 26, 0.15); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); } .policy-body-content .contact-details-block ul li { display: flex; align-items: center; margin-bottom: 15px; padding-left: 0; } .policy-body-content .contact-details-block ul li::before { content: none; } .policy-body-content .contact-details-block i { color: #ff1a1a; margin-right: 15px; font-size: 1.5rem; } @media (max-width: 768px) { .policy-body-content { padding: 40px 0; } .policy-body-content .policy-header-stack h1 { font-size: 18px; } .policy-body-content .policy-main-text h2 { font-size: 16px; margin-top: 30px; } .policy-body-content .policy-main-text h3 { font-size: 14px; } .policy-body-content .policy-header-stack .lead-text { font-size: 1rem; } .policy-body-content .policy-main-text p { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
.policy-body-content {
  background-color: #050505;
  color: #ffffff;
  padding: 80px 0;
  line-height: 1.8;
}
.policy-body-content .policy-content-wrapper {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 25px;
}
.policy-body-content h2 {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #8b0000;
  padding-left: 1.25rem;
}
.policy-body-content p {
  font-family: 'Inter', sans-serif;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.policy-body-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  background: #0f0f0f;
  border: 1px solid rgba(255, 26, 26, 0.15);
  padding: 1.5rem;
  border-radius: 8px;
}
.policy-body-content li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.8rem;
  color: #a0a0a0;
  font-family: 'Inter', sans-serif;
}
.policy-body-content li:last-child {
  margin-bottom: 0;
}
.policy-body-content li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: #ff1a1a;
  font-weight: bold;
}
.policy-body-content a {
  color: #ff1a1a;
  text-decoration: none;
  transition: all 0.3s ease-out;
  font-weight: 500;
}
.policy-body-content a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 26, 26, 0.8);
}
@media (max-width: 768px) {
  .policy-body-content {
    padding: 40px 0;
  }
  .policy-body-content h2 {
    font-size: 16px;
    margin-top: 2rem;
    border-left-width: 3px;
  }
  .policy-body-content p, .policy-body-content li {
    font-size: 14px;
    line-height: 1.6;
  }
  .policy-body-content ul {
    padding: 1rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.policy-body-content { padding: 60px 0; background-color: #050505; color: #ffffff; font-family: 'Inter', sans-serif; line-height: 1.6; } .policy-content-wrapper { max-width: 900px; margin: 0 auto; padding: 0 20px; } .policy-header-meta { margin-bottom: 40px; border-bottom: 1px solid rgba(255, 26, 26, 0.2); padding-bottom: 20px; } .policy-header-meta h1 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 700; color: #ffffff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; } .last-updated { font-size: 0.9rem; color: #ff1a1a; font-weight: 500; } .policy-text-block h2 { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: #ffffff; margin-top: 40px; margin-bottom: 20px; position: relative; padding-left: 15px; } .policy-text-block h2::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background-color: #8b0000; box-shadow: 0 0 10px #ff1a1a; } .policy-text-block p { color: #a0a0a0; margin-bottom: 20px; font-size: 1rem; } .policy-text-block ul { list-style: none; padding-left: 25px; margin-bottom: 25px; } .policy-text-block ul li { position: relative; padding-left: 25px; color: #a0a0a0; margin-bottom: 12px; } .policy-text-block ul li::before { content: '\2022'; color: #ff1a1a; font-weight: bold; position: absolute; left: 0; font-size: 1.2rem; line-height: 1.4; }
.contact-details-block { padding-left: 45px; }
.contact-details-block ul { list-style: none; padding-left: 0; margin: 0; }
.contact-details-block li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: #a0a0a0; }
.contact-details-block li i { color: #ff1a1a; font-size: 1.25rem; flex-shrink: 0; }
.contact-details-block li a { color: #ff1a1a; text-decoration: none; transition: color 0.3s ease; }
.contact-details-block li a:hover { color: #ffffff; text-shadow: 0 0 8px rgba(255, 26, 26, 0.8); } .policy-text-block a { color: #ff1a1a; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; } .policy-text-block a:hover { color: #ffffff; text-shadow: 0 0 8px rgba(255, 26, 26, 0.8); } @media (max-width: 768px) { .policy-header-meta h1 { font-size: 1.8rem; } .policy-text-block h2 { font-size: 1.4rem; } .policy-text-block p { font-size: 0.95rem; } }

/* ===== PAGE: cookies ===== */
.policy-body-content .policy-content-wrapper { color: #a0a0a0; font-family: 'Inter', sans-serif; line-height: 1.6; max-width: 900px; margin: 0 auto; padding: 40px 20px; }.policy-body-content .policy-heading { color: #ffffff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 24px; margin-bottom: 20px; position: relative; display: inline-block; }.policy-body-content .policy-heading::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 2px; background: #8b0000; box-shadow: 0 0 10px #ff1a1a; }.policy-body-content .policy-text { margin-bottom: 1.5rem; font-size: 16px; }.policy-body-content .policy-list { list-style: none; padding-left: 0; margin-bottom: 1.5rem; }.policy-body-content .policy-list-item { display: flex; align-items: flex-start; margin-bottom: 15px; color: #a0a0a0; }.policy-body-content .policy-list-item i { color: #ff1a1a; font-size: 20px; margin-right: 12px; margin-top: 2px; flex-shrink: 0; }.policy-body-content .policy-list-item strong { color: #ffffff; margin-right: 5px; }.policy-body-content .policy-link { color: #ff1a1a; text-decoration: none; transition: all 0.3s ease; font-weight: 500; }.policy-body-content .policy-link:hover { color: #ffffff; text-shadow: 0 0 8px #ff1a1a; }.policy-body-content .policy-alert { background: rgba(139, 0, 0, 0.1); border-left: 4px solid #8b0000; border-radius: 8px; color: #ffffff; font-size: 14px; }.policy-body-content .policy-alert i { font-size: 24px; vertical-align: middle; margin-right: 10px; color: #ff1a1a; }@media (max-width: 768px) { .policy-body-content .policy-heading { font-size: 18px; } .policy-body-content .policy-text { font-size: 14px; } .policy-body-content .policy-list-item { font-size: 14px; } }

/* ===== PAGE: about ===== */
.about-content-section { background-color: #050505; position: relative; }
.about-content-section .border-glow { border: 1px solid rgba(255, 26, 26, 0.2); box-shadow: 0 0 20px rgba(255, 26, 26, 0.05); }
.about-content-section .badge { background-color: #8b0000; color: #ffffff; letter-spacing: 1px; }
.about-content-section .about-value-card { background-color: #0f0f0f; border: 1px solid rgba(255, 26, 26, 0.1); border-radius: 12px; transition: all 0.3s ease-in-out; }
.about-content-section .about-value-card:hover { transform: translateY(-5px); border-color: #ff1a1a; box-shadow: 0 10px 30px rgba(255, 26, 26, 0.1); }
.about-content-section .icon-box i { color: #ff1a1a; }
.about-content-section .map-interactive-container { background-color: #0f0f0f; }
.about-content-section .btn-accent { background-color: transparent; border: 1px solid #8b0000; color: #ffffff; padding: 10px 25px; transition: all 0.3s ease; }
.about-content-section .btn-accent.active, .about-content-section .btn-accent:hover { background-color: #8b0000; box-shadow: 0 0 15px rgba(255, 26, 26, 0.4); }
.about-content-section .ratio-21x9 { border: 1px solid rgba(255, 26, 26, 0.2); }
@media (max-width: 768px) {
  .about-content-section .ratio-21x9 { ratio: 4x3; }
  .about-content-section h2.display-5 { font-size: 1.5rem; }
}

/* ===== PAGE: sydney-sports-bars ===== */
.sydney-sports-bars-section {
  padding: 60px 0;
  background-color: #050505;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.sydney-sports-bars-section .section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sydney-sports-bars-section .section-separator {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #8b0000, transparent);
  margin-top: 15px;
}

.sydney-sports-bars-section .search-wrapper {
  position: relative;
}

.sydney-sports-bars-section .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0a0a0;
  font-size: 1.2rem;
}

.sydney-sports-bars-section .form-control {
  background-color: #161616;
  border: 1px solid rgba(255, 26, 26, 0.2);
  color: #ffffff !important;
  padding-left: 45px;
  height: 50px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sydney-sports-bars-section .form-control::placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.sydney-sports-bars-section .form-control:focus {
  background-color: #1a1a1a;
  border-color: #ff1a1a;
  box-shadow: 0 0 10px rgba(255, 26, 26, 0.3);
  color: #ffffff !important;
}

.sydney-sports-bars-section .btn-outline-glow {
  border: 1px solid #8b0000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}

.sydney-sports-bars-section .btn-outline-glow:hover, 
.sydney-sports-bars-section .btn-outline-glow.active {
  background-color: #8b0000;
  box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
  border-color: #ff1a1a;
}

.sydney-sports-bars-section .bar-card {
  background-color: #0f0f0f;
  border: 1px solid rgba(255, 26, 26, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sydney-sports-bars-section .bar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 26, 26, 0.1);
}

.sydney-sports-bars-section .bar-card__image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sydney-sports-bars-section .bar-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sydney-sports-bars-section .bar-card:hover .bar-card__img {
  transform: scale(1.05);
}

.sydney-sports-bars-section .bar-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #8b0000;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

.sydney-sports-bars-section .bar-card__body {
  padding: 20px;
}

.sydney-sports-bars-section .bar-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.sydney-sports-bars-section .bar-card__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sydney-sports-bars-section .bar-card__title a:hover {
  color: #ff1a1a;
}

.sydney-sports-bars-section .bar-card__rating {
  color: #ffcc00;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sydney-sports-bars-section .bar-card__address {
  font-size: 0.85rem;
  color: #a0a0a0;
}

.sydney-sports-bars-section .bar-card__address a {
  color: #a0a0a0;
  text-decoration: none;
}

.sydney-sports-bars-section .bar-card__address a:hover {
  color: #ffffff;
}

.sydney-sports-bars-section .bar-card__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cccccc;
  margin-bottom: 15px;
}

.sydney-sports-bars-section .bar-card__meta {
  background-color: #161616;
  padding: 12px;
  border-radius: 8px;
}

.sydney-sports-bars-section .bar-card__meta-item {
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-bottom: 4px;
}

.sydney-sports-bars-section .bar-card__meta-item strong {
  color: #ffffff;
}

.sydney-sports-bars-section .btn-glow {
  background-color: #8b0000;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.sydney-sports-bars-section .btn-glow:hover {
  background-color: #ff1a1a;
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sydney-sports-bars-section .section-title {
    font-size: 1.5rem;
  }
  .sydney-sports-bars-section .bar-card__image-wrap {
    height: 180px;
  }
}

/* ===== PAGE: melbourne-sports-bars ===== */
.melbourne-category { background-color: #050505; font-family: 'Inter', sans-serif; }
.melbourne-category__title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #ffffff; text-transform: uppercase; letter-spacing: 1px; }
.melbourne-category .text-accent { color: #8b0000; }
.melbourne-category__search-box .form-control { background: #161616; border: 1px solid rgba(255, 26, 26, 0.15); color: #ffffff; border-radius: 8px; transition: all 0.3s ease; }
.melbourne-category__search-box .form-control:focus { background: #0f0f0f; border-color: #ff1a1a; box-shadow: 0 0 10px rgba(255, 26, 26, 0.2); outline: none; }
.melbourne-category__search-box .form-control::placeholder { color: #666666; }
.melbourne-category__card { background: #161616; border: 1px solid rgba(255, 26, 26, 0.15); border-radius: 12px; height: 100%; transition: all 0.3s ease; display: flex; flex-direction: column; overflow: hidden; }
.melbourne-category__card:hover { transform: translateY(-5px); border-color: #ff1a1a; box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3); }
.melbourne-category__image-link { position: relative; height: 220px; overflow: hidden; display: block; }
.melbourne-category__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.melbourne-category__card:hover .melbourne-category__img { transform: scale(1.05); }
.melbourne-category__rating { position: absolute; top: 15px; right: 15px; background: rgba(5, 5, 5, 0.85); padding: 5px 12px; border-radius: 20px; color: #ffffff; font-weight: 500; font-size: 0.85rem; display: flex; align-items: center; gap: 5px; border: 1px solid rgba(255, 26, 26, 0.3); }
.melbourne-category__content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.melbourne-category__name { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.melbourne-category__name a:hover { color: #ff1a1a !important; }
.melbourne-category__address { font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.melbourne-category__address a:hover { color: #ffffff !important; }
.melbourne-category__info-row { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; border-bottom: 1px dashed rgba(255, 255, 255, 0.05); padding-bottom: 0.25rem; }
.melbourne-category__label { color: #a0a0a0; }
.melbourne-category__value { color: #ffffff; text-align: right; }
.melbourne-category__badge { background: rgba(139, 0, 0, 0.1); border: 1px solid rgba(255, 26, 26, 0.2); color: #ff1a1a; font-weight: 400; padding: 5px 10px; margin-right: 5px; margin-bottom: 5px; transition: 0.3s; }
.melbourne-category__badge:hover { background: #8b0000; color: #ffffff; }
.melbourne-category__comment { margin-top: auto; border-color: rgba(255, 26, 26, 0.1) !important; }
@media (max-width: 768px) { .melbourne-category__title { font-size: 1.2rem; } .melbourne-category__image-link { height: 180px; } }

/* ===== PAGE: recommendations-reviews ===== */
.reviews-category-section {
  background-color: #050505;
  min-height: 80vh;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.reviews-category-section .badge.bg-accent {
  background-color: #8b0000;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 26, 26, 0.4);
}

.reviews-category-section .filter-btn {
  border-color: rgba(255, 26, 26, 0.3);
  color: #a0a0a0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.reviews-category-section .filter-btn:hover,
.reviews-category-section .filter-btn.active {
  background-color: #8b0000;
  border-color: #ff1a1a;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 26, 26, 0.2);
}

.reviews-category-section .form-control {
  background-color: #161616;
  border: 1px solid rgba(255, 26, 26, 0.15);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
}

.reviews-category-section .form-control::placeholder {
  color: #666666;
}

.reviews-category-section .form-control:focus {
  background-color: #1a1a1a;
  border-color: #ff1a1a;
  box-shadow: 0 0 8px rgba(255, 26, 26, 0.2);
  color: #ffffff;
}

.reviews-category-section .review-card {
  background-color: #0f0f0f;
  border: 1px solid rgba(255, 26, 26, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.reviews-category-section .review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 26, 26, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 26, 26, 0.05);
}

.reviews-category-section .review-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.reviews-category-section .review-card:hover .review-img {
  transform: scale(1.05);
}

.reviews-category-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.reviews-category-section .transition-link {
  transition: color 0.3s ease;
}

.reviews-category-section .transition-link:hover {
  color: #ff1a1a !important;
}

.reviews-category-section .review-meta {
  font-size: 0.85rem;
  color: #666666;
}

.reviews-category-section .review-meta i {
  color: #8b0000;
}

.reviews-category-section .text-accent {
  color: #ff1a1a;
}

.reviews-category-section .btn-link:hover {
  color: #ffffff !important;
  padding-left: 5px !important;
}

@media (max-width: 767px) {
  .reviews-category-section h3 {
    font-size: 1.1rem;
  }
  .reviews-category-section .review-img {
    height: 200px;
  }
}

.main-comment-item {
    background-color: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.main-comment-item:hover {
    border-color: #ff1a1a;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.1);
}

.avatar-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b0000, #ff1a1a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-user-name {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.comment-meta-info {
    color: #666666;
    font-size: 0.85rem;
}

.comment-message-text {
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-btn-link {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 0.9rem;
    padding: 0;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.comment-btn-link:hover {
    color: #ff1a1a;
}

.comment-btn-link i {
    vertical-align: middle;
    margin-right: 4px;
}

.reply-comment-item {
    background-color: #0f0f0f;
    border: 1px solid rgba(255, 26, 26, 0.1);
    border-left: 3px solid #8b0000;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.reply-comment-item:hover {
    border-color: rgba(255, 26, 26, 0.4);
    background-color: #121212;
}

.avatar-initials.sm {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #333333, #555555);
}

.reply-comment-item .comment-message-text {
    color: #888888;
    font-size: 0.95rem;
}


/* ===== PAGE TEMPLATE: sydney-sports-bars ===== */
.detail-main-content {
    padding: 80px 0;
    background-color: #050505;
    color: #ffffff;
}

.detail-main-content .btn-cta {
    background-color: #8b0000;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.detail-main-content .btn-cta:hover {
    background-color: #ff1a1a;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
    transform: translateY(-2px);
}

.venue-article__image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 26, 26, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.venue-article__img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-article__img:hover {
    transform: scale(1.03);
}

.venue-article__heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.venue-article__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a0a0a0;
}

.venue-article__screens-block {
    background: #0f0f0f;
    border-left: 4px solid #8b0000;
    border-radius: 8px;
}

.sidebar-card {
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sidebar-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.sidebar-info-list li span {
    font-size: 0.95rem;
}

.highlight-item {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.comment-card {
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.1);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.comment-card:hover {
    border-color: rgba(255, 26, 26, 0.3);
}

.avatar-initials {
    width: 45px;
    height: 45px;
    background: #8b0000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.avatar-initials.sm {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
}

.comment-user-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ffffff;
}

.comment-meta-info {
    color: #666666;
    font-size: 0.8rem;
}

.comment-message-text {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comment-btn-link {
    background: transparent;
    border: none;
    color: #666666;
    font-size: 0.85rem;
    padding: 0;
    transition: color 0.3s ease;
}

.comment-btn-link:hover,
.comment-btn-link.active {
    color: #ff1a1a;
}

.comment-input-area {
    background: #0f0f0f;
    border-radius: 12px;
    border: 1px dashed rgba(255, 26, 26, 0.2);
    padding: 28px;
}

.comment-input-area .form-control {
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    color: #ffffff;
}

.comment-input-area .form-control:focus {
    background: #1a1a1a;
    border-color: #8b0000;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.2);
}

.comment-input-area .form-control::placeholder {
    color: #666666;
}

@media (max-width: 768px) {
    .venue-article__img {
        height: 300px;
    }

    .hero-editorial__title {
        font-size: 1.5rem !important;
    }

    .detail-main-content {
        padding: 40px 15px;
    }
}

/* ===== PAGE TEMPLATE: melbourne-sports-bars ===== */
.venue-detail-section {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.venue-detail-section .breadcrumb-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.venue-detail-section .breadcrumb-link:hover {
    color: #ff1a1a;
}

.venue-detail-section .breadcrumb-item.active {
    color: #ff1a1a;
    font-weight: 500;
}

.venue-detail-section .venue-content-block,
.venue-detail-section .sidebar-info-card,
.venue-detail-section .comments-section-wrapper {
    background-color: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 12px;
}

.venue-detail-section .comments-section-wrapper {
    padding: 28px;
}

.venue-detail-section .venue-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    border-left: 4px solid #8b0000;
    padding-left: 15px;
}

.venue-detail-section .venue-description p {
    color: #a0a0a0;
    line-height: 1.8;
}

.venue-detail-section .venue-feature-list {
    list-style: none;
    padding: 0;
}

.venue-detail-section .venue-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    margin-bottom: 10px;
}

.venue-detail-section .venue-feature-list i {
    color: #ff1a1a;
    font-size: 1.25rem;
}

.venue-detail-section .venue-gallery-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.venue-detail-section .venue-gallery-img:hover {
    transform: scale(1.03);
}

.venue-detail-section .sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.venue-detail-section .sidebar-info-list {
    list-style: none;
    padding: 0;
}

.venue-detail-section .sidebar-info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.25rem;
}

.venue-detail-section .sidebar-info-list i {
    font-size: 1.5rem;
    color: #8b0000;
}

.venue-detail-section .match-item {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.venue-detail-section .match-time {
    background: #050505;
    color: #ff1a1a;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.venue-detail-section .comment-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.venue-detail-section .avatar-initials {
    width: 45px;
    height: 45px;
    background: #8b0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.venue-detail-section .comment-user-name {
    font-size: 1rem;
    color: #ffffff;
}

.venue-detail-section .comment-meta-info {
    color: #666666;
}

.venue-detail-section .comment-btn-link {
    background: none;
    border: none;
    color: #a0a0a0;
    font-size: 0.85rem;
    padding: 0;
    transition: color 0.3s ease;
}

.venue-detail-section .comment-btn-link:hover,
.venue-detail-section .comment-btn-link.active {
    color: #ff1a1a;
}

.venue-detail-section .custom-input,
.venue-detail-section .custom-textarea {
    background-color: #050505;
    border: 1px solid rgba(255, 26, 26, 0.2);
    color: #ffffff;
}

.venue-detail-section .custom-input:focus,
.venue-detail-section .custom-textarea:focus {
    background-color: #050505;
    border-color: #ff1a1a;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.2);
}

.venue-detail-section .custom-input::placeholder,
.venue-detail-section .custom-textarea::placeholder {
    color: #666666 !important;
}

.venue-detail-section .btn-cta-submit {
    background-color: #8b0000;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.venue-detail-section .btn-cta-submit:hover {
    background-color: #ff1a1a;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .venue-detail-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .venue-detail-section .venue-section-title {
        font-size: 1.25rem;
    }

    .venue-detail-section .venue-gallery-img {
        height: 200px;
    }
}

/* ===== PAGE TEMPLATE: recommendations-reviews ===== */
.detail-page-content {
    background-color: #050505;
    color: #ffffff;
}

.detail-page-content .btn-cta {
    background-color: #8b0000;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.detail-page-content .btn-cta:hover {
    background-color: #ff1a1a;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
    transform: translateY(-2px);
}

.comments-section .btn-cta {
    background-color: #8b0000;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.comments-section .btn-cta:hover {
    background-color: #ff1a1a;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
    transform: translateY(-2px);
}

.article-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.article-meta i {
    color: #ff1a1a;
    margin-right: 5px;
    font-size: 1.1rem;
}

.article-meta__divider {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 26, 26, 0.3);
}

.article-main-img {
    border: 1px solid rgba(255, 26, 26, 0.2);
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-text-content h2,
.article-text-content h3 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-text-content p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.gallery-item-wrap {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 26, 26, 0.1);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.sidebar-card,
.sidebar-cta {
    background-color: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 12px;
}

.sidebar-cta .btn-cta {
    background-color: #8b0000;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sidebar-cta .btn-cta:hover {
    background-color: #ff1a1a;
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
    transform: translateY(-2px);
}

.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #8b0000;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 26, 26, 0.1);
}

.sidebar-list-item:last-child {
    border-bottom: none;
}

.sidebar-link {
    color: #a0a0a0;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: #ff1a1a;
}

.comments-wrapper {
    background: #0f0f0f;
    border-radius: 20px;
    border: 1px solid rgba(255, 26, 26, 0.1);
    padding: 32px;
}

.comments-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-align: center;
}

.comment-card {
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.1);
    border-radius: 12px;
    color: #a0a0a0;
}

.avatar-initials {
    width: 48px;
    height: 48px;
    background: #8b0000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.avatar-initials.sm {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
}

.comment-user-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ffffff;
}

.comment-meta-info {
    font-size: 0.75rem;
    color: #666666;
}

.comment-btn-link {
    background: none;
    border: none;
    color: #8b0000;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0;
}

.comment-btn-link:hover {
    color: #ff1a1a;
}

.comment-btn-link.active i {
    color: #ff1a1a;
}

.comment-input-area .form-control {
    background: #161616;
    border: 1px solid rgba(255, 26, 26, 0.15);
    color: #ffffff;
    border-radius: 8px;
}

.comment-input-area .form-control:focus {
    background: #1c1c1c;
    border-color: #ff1a1a;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.2);
}

.comment-input-area .form-control::placeholder {
    color: #666666;
}

@media (max-width: 768px) {
    .hero-editorial__title {
        font-size: 1.5rem !important;
    }

    .article-text-content {
        padding: 0 10px;
    }
}