body {
    font-family: 'Open Sans', sans-serif;
    background-color: #000;
    color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #dc3545; /* Red for headings */
}

.text-white {
    color: #f8f9fa !important;
}

.text-danger {
    color: #dc3545 !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-dark {
    background-color: #212529 !important;
}

.bg-dark-card {
    background-color: #343a40 !important; /* Slightly lighter dark for cards */
}

.border-danger {
    border-color: #dc3545 !important;
}

.header-top {
    background-color: #1a1a1a !important;
    color: #cccccc !important;
}

.navbar-brand .site-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #dc3545;
}

.navbar-nav .nav-link {
    color: #f8f9fa !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: #dc3545 !important;
}

.hero-section {
    background-image: url('visuals/pics/colombia-city-night.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 3px;
    width: 80px;
    background-color: #dc3545;
}

.card {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #dc3545;
}

.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #1a1a1a;
    border-bottom: 1px solid #dc3545;
}
.card-img-link {
    display: block;
}

.card-body {
    color: #f8f9fa;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.payment-icons .bi, .payment-icon-img {
    height: 30px;
    width: auto;
    vertical-align: middle;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(175deg); /* To make icons light blue/cyan for visibility on dark background */
}

.payment-icon-img {
    height: 28px;
    width: auto;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
    text-decoration: none !important;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: #fff;
}

.btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff;
    text-decoration: none !important;
}

.btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
    color: #fff;
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
    text-decoration: none !important;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: #fff;
}

.accordion-item {
    border: 1px solid #dc3545;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 600;
    color: #f8f9fa !important;
    background-color: #343a40 !important;
    border-bottom: 1px solid #dc3545;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    color: #dc3545 !important;
    background-color: #212529 !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #dc3545;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(330deg); /* Red arrow */
}

.accordion-body {
    background-color: #212529;
    color: #cccccc;
}

.responsible-gaming-block {
    background-color: #1a1a1a;
}

.bg-responsible {
    background-color: #343a40 !important;
}

.footer-links .list-inline-item a {
    text-decoration: none;
}

.footer-links .list-inline-item a:hover {
    color: #dc3545 !important;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-logos .footer-img {
    max-width: 120px;
    height: auto;
    display: block;
}

.footer-logos .footer-img-18plus {
    max-width: 50px;
    height: auto;
    display: block;
}

@media (max-width: 767.98px) {
    .navbar-brand .site-title {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .footer-logos .footer-img {
        max-width: 100px;
    }
    .footer-logos .footer-img-18plus {
        max-width: 40px;
    }
}
/* Wrapper for rightsCloud content, providing spacing and max-width */
.rightsCloudWrap {
    margin-top: 2.5rem; /* Top margin for separation */
    padding-left: 1.5rem; /* Horizontal padding for content */
    padding-right: 1.5rem; /* Horizontal padding for content */
    max-width: 1200px; /* Maximum width for content readability */
    margin-left: auto; /* Center the wrapper horizontally */
    margin-right: auto; /* Center the wrapper horizontally */
}

/* Heading 1 styles - main section title */
.rightsCloudWrap h1 {
    font-size: 2.25rem; /* Moderate size for main heading */
    font-weight: 700; /* Bold */
    line-height: 1.2;
    margin-top: 2.5rem; /* Space above H1 */
    margin-bottom: 1.25rem; /* Space below H1 */
    color: #ffffff; /* Darker text color for headings */
}

/* Heading 2 styles - sub-section title */
.rightsCloudWrap h2 {
    font-size: 1.875rem; /* Slightly smaller than H1 */
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2rem; /* Space above H2 */
    margin-bottom: 1rem; /* Space below H2 */
    color: #ffffff;
}

/* Heading 3 styles - smaller sub-section title */
.rightsCloudWrap h3 {
    font-size: 1.5rem; /* Further reduction */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.75rem; /* Space above H3 */
    margin-bottom: 0.875rem; /* Space below H3 */
    color: #ffffff;
}

/* Heading 4 styles - minor title */
.rightsCloudWrap h4 {
    font-size: 1.25rem; /* Smaller heading */
    font-weight: 500;
    line-height: 1.5;
    margin-top: 1.5rem; /* Space above H4 */
    margin-bottom: 0.75rem; /* Space below H4 */
    color: #ffffff;
}

/* Heading 5 styles - very minor title, often used for sub-points */
.rightsCloudWrap h5 {
    font-size: 1.125rem; /* Smallest heading, slightly larger than paragraph */
    font-weight: 500;
    line-height: 1.6;
    margin-top: 1.25rem; /* Space above H5 */
    margin-bottom: 0.625rem; /* Space below H5 */
    color: #ffffff;
}

/* Paragraph styles - standard text content */
.rightsCloudWrap p {
    font-size: 1rem; /* Base font size, typically 16px */
    line-height: 1.7; /* Good readability for body text */
    margin-bottom: 1rem; /* Space between paragraphs */
    color: #ffffff; /* Slightly lighter text color for body */
}

/* Unordered list styles */
.rightsCloudWrap ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1rem; /* Space before the list */
    margin-bottom: 1rem; /* Space after the list */
    padding-left: 1.5rem; /* Indentation for bullet points */
    color: #ffffff;
}

/* List item styles */
.rightsCloudWrap li {
    font-size: 1rem; /* Inherit or explicitly set to base font size */
    line-height: 1.7; /* Align with paragraph line-height */
    margin-bottom: 0.5rem; /* Space between individual list items */
    color: #ffffff;
}
