body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

:root {
    --color-green-dark: #1e3a24;
    --color-gold: #d4af37;
    --color-black-card: #2c2c2c;
    --color-dark-custom: #1a1a1a;
    --color-white-custom: #f0f0f0;
    --color-gold-light: #f7e1b5;
    --color-success-custom: #4CAF50;
    --color-danger-custom: #f44336;
}

.text-gold {
    color: var(--color-gold) !important;
    font-family: 'Playfair Display', serif;
}

.text-white-custom {
    color: var(--color-white-custom) !important;
}

.bg-dark-custom {
    background-color: var(--color-dark-custom) !important;
}

.bg-green-dark-custom {
    background-color: var(--color-green-dark) !important;
}

.bg-black-card {
    background-color: var(--color-black-card) !important;
}

.bg-gold-light-custom {
    background-color: var(--color-gold-light) !important;
}

.border-gold-custom {
    border-color: var(--color-gold) !important;
}

.btn-primary-custom {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark-custom);
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #c09f2f;
    border-color: #c09f2f;
    color: var(--color-dark-custom);
}

.btn-outline-gold-custom {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background-color: transparent;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-gold-custom:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-custom);
}

.btn-success-custom {
    background-color: var(--color-success-custom);
    border-color: var(--color-success-custom);
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-success-custom:hover {
    background-color: #43a047;
    border-color: #43a047;
    color: #fff;
}

.btn-danger-custom {
    background-color: var(--color-danger-custom);
    border-color: var(--color-danger-custom);
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-danger-custom:hover {
    background-color: #e53935;
    border-color: #e53935;
    color: #fff;
}

.form-control-custom {
    background-color: var(--color-black-card);
    border-color: var(--color-gold);
    color: var(--color-white-custom);
}

.form-control-custom::placeholder {
    color: rgba(240, 240, 240, 0.7);
}

.form-control-custom:focus {
    background-color: var(--color-black-card);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    color: var(--color-white-custom);
}

.header-main {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    width: 100%;
    z-index: 1030;
}

.logo-img {
    height: 40px;
    width: auto;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.navbar-nav .nav-link {
    color: var(--color-white-custom);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-gold);
}

.navbar-toggler {
    border-color: var(--color-gold);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: var(--color-dark-custom);
}

.offcanvas-header {
    border-bottom: 1px solid var(--color-gold);
}

.offcanvas-title {
    font-size: 1.5rem;
}

.btn-close {
    filter: invert(1);
}

.hero-section {
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section h1 {
    font-size: 2.8rem;
}

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

.bg-dark-gradient {
    background: linear-gradient(145deg, var(--color-dark-custom) 0%, var(--color-green-dark) 100%);
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-img-top {
    object-fit: cover;
}

.card-img-link {
    display: block;
    overflow: hidden;
    padding: 20px;
    height: 150px;
    align-content: center;
}

.rating .bi-star-fill, .rating .bi-star-half, .rating .bi-star {
    color: var(--color-gold);
}

.accordion-item {
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--color-black-card);
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-green-dark);
    color: var(--color-gold);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--color-gold);
}

.accordion-body {
    background-color: var(--color-black-card);
    color: var(--color-white-custom);
    border-top: 1px solid var(--color-gold);
}

.accordion-button::after {
    filter: invert(1) sepia(1) saturate(1000%) hue-rotate(0deg) brightness(1.5);
}

.bg-dark-footer {
    background-color: #0d0d0d;
}

.footer-main a {
    color: var(--color-white-custom);
    text-decoration: none;
}

.footer-main a:hover {
    color: var(--color-gold);
}

.footer-logos {
    gap: 1rem;
}

.footer-logo-item {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    max-height: 80px;
}

.disclaimer-content {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--color-dark-custom);
    color: var(--color-dark-custom);
    font-size: 0.95rem;
}

.disclaimer-content h3 {
    color: var(--color-dark-custom);
}

.modal-content {
    background-color: var(--color-black-card);
    border: 1px solid var(--color-gold);
}

.modal-header {
    border-bottom: 1px solid var(--color-gold);
}

.modal-footer {
    border-top: 1px solid var(--color-gold);
}

.btn-close-white {
    filter: invert(1);
}

.age-verification-modal-content {
    background-color: var(--color-green-dark);
    border: 2px solid var(--color-gold);
}

.age-verification-modal-content p {
    color: var(--color-white-custom);
}

.age-verification-modal-content .text-muted-custom {
    color: rgba(240, 240, 240, 0.7) !important;
    font-size: 0.85rem;
}

.cookie-banner {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    color: var(--color-white-custom);
    z-index: 1040;
    width: 100%;
    display: none;
    border-top: 1px solid var(--color-gold);
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-banner .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.form-check-input:checked {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Adaptive Typography */
/* Desktop */
h1 {
    font-size: 2.8rem;
}
h2 {
    font-size: 2.2rem;
}
h3 {
    font-size: 1.8rem;
}
h4 {
    font-size: 1.5rem;
}
.site-name {
    font-size: 1.8rem;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    h3 {
        font-size: 1.6rem;
    }
    h4 {
        font-size: 1.4rem;
    }
    .site-name {
        font-size: 1.6rem;
    }
    .hero-section {
        min-height: 70vh;
    }
    .footer-logo-item {
        max-width: 100px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header-main {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .logo-img {
        height: 35px;
    }
    .site-name {
        margin-left: 5px;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    h4 {
        font-size: 1rem;
    }
    .hero-section {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    .card-img-top {
        height: 150px;
        object-fit: contain !important;
    }
    .accordion-button {
        font-size: 0.95rem;
    }
    .footer-logo-item {
        max-width: 150px;
        max-height: 80px;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    .cookie-banner p {
        margin-bottom: 1rem;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        width: 48%;
    }
    .modal-dialog.modal-lg {
        max-width: 95%;
    }
    .modal-body img {
        width: 100%;
        height: auto;
    }
    .navbar-nav {
        overflow-x: hidden;
        white-space: normal;
    }
    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }
    .offcanvas-body {
        padding-right: 0;
    }
    .d-flex.flex-column.flex-md-row.gap-2 {
        flex-direction: column;
    }
    .col-md-4, .col-md-8 {
        width: 100%;
    }
    .card .row.g-0 .col-md-4 img {
        border-radius: 0.375rem 0.375rem 0 0 !important;
    }
}

@media (max-width: 1199px) {
    .navbar-collapse {
        display: none !important;
    }
    .navbar-toggler {
        display: block;
    }
}

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
    .navbar-collapse {
        display: flex !important;
    }
    .offcanvas {
        visibility: hidden;
    }
}
/* Parent container styling */
.rightsFieldUnit {
    padding: 20px 30px; /* Top/bottom and left/right padding for the content area */
}

/* Heading styles */
.rightsFieldUnit h1 {
    font-size: 1.8em; /* Slightly larger than body text, but not excessively large */
    margin-top: 1.5em; /* Space above the heading */
    margin-bottom: 0.6em; /* Space below the heading */
    line-height: 1.2; /* Improved readability for headings */
}

.rightsFieldUnit h2 {
    font-size: 1.5em;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    line-height: 1.3;
}

.rightsFieldUnit h3 {
    font-size: 1.3em;
    margin-top: 1.3em;
    margin-bottom: 0.5em;
    line-height: 1.4;
}

.rightsFieldUnit h4 {
    font-size: 1.1em; /* Slightly larger than paragraph text */
    margin-top: 1.2em;
    margin-bottom: 0.4em;
    line-height: 1.5;
    font-weight: bold; /* Ensure it's bold */
}

.rightsFieldUnit h5 {
    font-size: 1em; /* Same as paragraph text, but bold */
    margin-top: 1.1em;
    margin-bottom: 0.3em;
    line-height: 1.5;
    font-weight: bold;
}

/* Paragraph style */
.rightsFieldUnit p {
    margin-bottom: 1em; /* Space between paragraphs */
    line-height: 1.6; /* Optimal line height for body text readability */
}

/* Unordered list styles */
.rightsFieldUnit ul {
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 2.5em; /* Indentation for bullet points */
    list-style-type: disc; /* Default bullet style */
}

/* List item styles */
.rightsFieldUnit li {
    margin-bottom: 0.5em; /* Space between individual list items */
    line-height: 1.5; /* Readability for list item text */
}
.offcanvas {
   height: 100vh !important;
   max-height: 40vh !important;
}
#contact,
#faq {
    padding: 100px 0 80px;
}