body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212; /* Very dark background */
    color: #e0e0e0; /* Light grey text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif; /* Or a more decorative font if desired */
    color: #00bcd4; /* Cyan for headings */
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }

a {
    color: #00bcd4; /* Cyan for links */
    text-decoration: none;
    transition: none; /* No animation */
}

a:hover {
    color: #00a7b9; /* Slightly darker cyan on hover */
    text-decoration: none; /* Ensure no underline on hover */
}

.btn {
    border-radius: 5px;
    font-weight: 500;
    transition: none; /* No animation */
    text-decoration: none !important; /* Remove underline from buttons */
}

.btn-primary {
    background-color: #00bcd4;
    border-color: #00bcd4;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #00a7b9;
    border-color: #00a7b9;
    color: #1a1a1a;
}

.btn-secondary {
    background-color: #4a4a4a;
    border-color: #4a4a4a;
    color: #e0e0e0;
}

.btn-secondary:hover {
    background-color: #5a5a5a;
    border-color: #5a5a5a;
    color: #e0e0e0;
}

.section-padding {
    padding: 60px 0;
}

.bg-dark-section {
    background-color: #1a1a1a; /* Slightly lighter dark for sections */
}

.bg-gradient-overlay {
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('media/pics/dark-texture_3.jpg') no-repeat center center / cover;
}

.card {
    background-color: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    color: #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
}

.card-title {
    color: #00bcd4;
}

.card-body {
    flex-grow: 1; /* Allow content to grow and push footer down */
}

.card-footer {
    background-color: #2a2a2a;
    border-top: 1px solid #3a3a3a;
}

.table {
    color: #e0e0e0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-bordered {
    border-color: #3a3a3a;
}

.table thead th {
    border-bottom: 2px solid #00bcd4;
    color: #00bcd4;
}

.form-control {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #e0e0e0;
}

.form-control::placeholder {
    color: #888;
}

.form-control:focus {
    background-color: #2a2a2a;
    border-color: #00bcd4;
    color: #e0e0e0;
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
}

/* Specific styling for the disclaimer block */
.disclaimer-block {
    background-color: #2a0000; /* Dark red background */
    border: 2px solid #ff0000; /* Red border */
    padding: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
    border-radius: 10px;
    text-align: center;
    color: #ffe0e0; /* Light red text */
    position: relative;
    overflow: hidden;
}

.disclaimer-block::before {
    content: "\f071"; /* Font Awesome warning icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 3rem;
    color: #ff0000;
    opacity: 0.2;
}

.disclaimer-block h3 {
    color: #ffcccc; /* Lighter red for heading */
    margin-bottom: 15px;
    font-size: 1.8rem;
    position: relative;
    padding-left: 50px; /* Make space for the icon */
    text-align: left;
}

.disclaimer-block h3 i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: #ff0000;
}

.disclaimer-block p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-align: left;
    padding-left: 50px;
}

.disclaimer-block .contact-numbers {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    text-align: left;
    padding-left: 50px;
}

.disclaimer-block .contact-numbers span {
    display: block;
    margin-bottom: 5px;
}

/* Footer logo styling */
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between logos */
    padding: 20px 0;
    border-top: 1px solid #3a3a3a;
    margin-top: 30px;
}

.footer-logos img {
    max-width: 130px; /* Adjusted max-width */
    height: auto;
    display: block; /* Remove extra space below images */
}

.footer-logos .icon-18-plus {
    font-size: 2.5rem;
    color: #ff0000; /* Red for 18+ icon */
    font-weight: bold;
    margin-left: 10px;
    line-height: 1; /* Align with images */
}

/* Ensure equal height for grid items */
.row.row-cols-1.row-cols-md-2.row-cols-lg-2.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.row-cols-1.row-cols-md-2.row-cols-lg-2.g-4 > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Age Verification Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #e0e0e0;
}

.age-overlay-content {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.age-overlay-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00bcd4; /* Cyan for heading */
}

.age-overlay-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.age-buttons button {
    margin: 0 15px;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: none; /* No animation */
}

.age-buttons .btn-primary {
    background-color: #00bcd4;
    border-color: #00bcd4;
    color: #1a1a1a;
}

.age-buttons .btn-primary:hover {
    background-color: #00a7b9;
    border-color: #00a7b9;
}

.age-buttons .btn-secondary {
    background-color: #4a4a4a;
    border-color: #4a4a4a;
    color: #e0e0e0;
}

.age-buttons .btn-secondary:hover {
    background-color: #5a5a5a;
    border-color: #5a5a5a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed; /* Or fixed, depending on preference */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2a2a2a; /* Darker background for the banner */
    color: #e0e0e0;
    padding: 10px 0;
    z-index: 1050; /* Above most content, below age overlay */
    font-size: 0.9rem;
    border-bottom: 1px solid #3a3a3a;
}

.cookie-banner p {
    color: #e0e0e0;
}

.cookie-banner .btn-primary {
    background-color: #00bcd4;
    border-color: #00bcd4;
    color: #1a1a1a;
}

.cookie-banner .btn-primary:hover {
    background-color: #00a7b9;
    border-color: #00a7b9;
    color: #1a1a1a;
}

.cookie-banner .btn-outline-info {
    color: #00bcd4;
    border-color: #00bcd4;
}

.cookie-banner .btn-outline-info:hover {
    background-color: #00bcd4;
    color: #1a1a1a;
}

/* Modal styling for dark theme */
.modal-content {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border: 1px solid #3a3a3a;
}

.modal-header {
    border-bottom: 1px solid #3a3a3a;
}

.modal-title {
    color: #00bcd4;
}

.btn-close-white {
    filter: invert(1); /* Makes the close button white */
}

.form-check-input:checked {
    background-color: #00bcd4;
    border-color: #00bcd4;
}

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

/* Accordion overrides for instant toggle */
.accordion-collapse {
    transition: none !important;
}

.accordion-button::after {
    transition: none !important;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg); /* Prevent rotation animation */
}

.accordion-button {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
    border-bottom: 1px solid #3a3a3a;
}

.accordion-button:not(.collapsed) {
    color: #00bcd4 !important;
    background-color: #2a2a2a !important;
    box-shadow: none;
}

.accordion-item {
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-body {
    background-color: #2a2a2a;
    border-top: 1px solid #3a3a3a;
}

.bg-secondary-dark {
    background-color: #2a2a2a;
}

.clickable-row {
    cursor: pointer;
}

.clickable-row .fa-chevron-down {
    transition: none; /* No animation for chevron */
}

.clickable-row[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg); /* Instant rotation */
}
/* Styling for the policy content wrapper */
.policyScopeWrap {
    padding: 40px 20px; /* Top/bottom and side padding */
    max-width: 960px; /* Max width for readability */
    margin: 0 auto; /* Center the content block */
    background-color: #1a1a1a; /* Slightly lighter dark background for content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    margin-top: 60px; /* Top margin to separate from previous section */
    margin-bottom: 60px; /* Bottom margin to separate from next section */
}

/* Headings within policy content */
.policyScopeWrap h1 {
    font-size: 2rem; /* Moderate size for main policy title */
    color: #00bcd4; /* Cyan color for headings */
    margin-top: 1.8rem; /* Top margin for spacing */
    margin-bottom: 1rem; /* Bottom margin for spacing */
    line-height: 1.3; /* Line height for readability */
}

.policyScopeWrap h2 {
    font-size: 1.75rem; /* Slightly smaller than h1 */
    color: #00bcd4;
    margin-top: 1.6rem;
    margin-bottom: 0.9rem;
    line-height: 1.3;
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* Smaller heading */
    color: #00bcd4;
    margin-top: 1.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.policyScopeWrap h4 {
    font-size: 1.25rem; /* Sub-heading size */
    color: #00bcd4;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    line-height: 1.4;
}

.policyScopeWrap h5 {
    font-size: 1.1rem; /* Smallest heading, almost like strong text */
    color: #00bcd4;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

/* Paragraphs within policy content */
.policyScopeWrap p {
    font-size: 1rem; /* Standard paragraph text size */
    color: #e0e0e0; /* Light grey for body text */
    margin-bottom: 1rem; /* Space between paragraphs */
    line-height: 1.6; /* Line height for readability */
}

/* Unordered lists within policy content */
.policyScopeWrap ul {
    list-style-type: disc; /* Standard disc bullet points */
    margin-left: 20px; /* Indentation for the list */
    margin-bottom: 1rem; /* Space after the list */
    padding-left: 0; /* No extra padding */
    color: #e0e0e0; /* Inherit text color */
}

/* List items within policy content */
.policyScopeWrap li {
    font-size: 1rem; /* Standard list item text size */
    color: #e0e0e0; /* Light grey for list items */
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Line height for readability */
}

.form-check-input:disabled~.form-check-label, .form-check-input[disabled]~.form-check-label{
    opacity: 1 !important;
}

#rating-grid img{
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.age-buttons{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}