/* General Styles */
:root {
    --primary-red: #8B0000; /* Dark Red */
    --secondary-red: #A52A2A; /* Brownish Red */
    --accent-gold: #FFD700; /* Gold for stars/highlights */
    --dark-bg: #1a1a1a; /* Very dark gray */
    --darker-bg: #121212; /* Even darker gray */
    --light-gray: #d0d0d0;
    --white-50: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-gray);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 700;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-gold);
}

.text-primary-red {
    color: #CDDC39 !important;
}

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

.bg-dark-section {
    background-color: var(--dark-bg);
}

.bg-darker-section {
    background-color: var(--darker-bg);
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-light-gray {
    color: var(--light-gray) !important;
}

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

.hover-gold:hover {
    color: var(--accent-gold) !important;
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-secondary {
    color: var(--light-gray);
    border-color: var(--light-gray);
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--light-gray);
    color: var(--dark-bg);
    border-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-verification-overlay.show {
    opacity: 1;
    visibility: visible;
}

.age-verification-content {
    background: var(--darker-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    animation: fadeInScale 0.6s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-red);
    color: #fff;
    padding: 15px 0;
    z-index: 1050;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateY(0%);
}

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

.cookie-banner .btn-primary {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--dark-bg);
}

.cookie-banner .btn-primary:hover {
    background-color: darken(var(--accent-gold), 10%);
    border-color: darken(var(--accent-gold), 10%);
}

.cookie-banner .btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.cookie-banner .btn-outline-light:hover {
    background-color: #fff;
    color: var(--secondary-red);
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    background-color: var(--dark-bg);
    color: var(--light-gray);
    border: 1px solid var(--secondary-red);
}

#cookieSettingsModal .modal-header {
    border-bottom-color: var(--secondary-red);
}

#cookieSettingsModal .modal-title {
    color: #fff;
}

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

#cookieSettingsModal .form-check-label {
    color: var(--light-gray);
}

#cookieSettingsModal .form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

#cookieSettingsModal a {
    color: var(--accent-gold);
}

/* Hero Section */
.hero-section {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    padding: 100px 0;
}

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

.hero-section .container {
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}

/* Platform Card */
.platform-card {
    background-color: var(--darker-bg);
    border: 1px solid var(--secondary-red);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.platform-card .card-img-top {
    height: 180px;
    object-fit: contain;
    background-color: #fff;
    padding: 15px;
    border-bottom: 1px solid var(--secondary-red);
}

.platform-card .card-body {
    padding: 25px;
}

.platform-card .card-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.platform-card .features-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.platform-card .rating-stars .fa-star, .platform-card .rating-stars .fa-star-half-stroke, .platform-card .rating-stars .fa-regular {
    color: var(--accent-gold);
}

.platform-card .btn {
    font-weight: 600;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: var(--dark-bg);
    color: var(--light-gray);
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    border: 1px solid var(--secondary-red);
    vertical-align: middle;
}

.comparison-table thead th {
    background-color: var(--primary-red);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: var(--darker-bg);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--dark-bg);
}

.comparison-table .feature-col {
    width: 25%;
    font-weight: 500;
    color: #fff;
}

.comparison-table .platform-col {
    width: 37.5%;
}

.comparison-table .badge {
    font-size: 0.75em;
    vertical-align: middle;
    margin-left: 5px;
}

.comparison-table .fa-check {
    color: #28a745; /* Bootstrap success green */
}

.comparison-table .fa-times {
    color: #dc3545; /* Bootstrap danger red */
}

/* User Reviews */
.user-reviews-section {
    background-color: var(--dark-bg);
}

.review-card {
    background-color: var(--darker-bg);
    border: 1px solid var(--secondary-red);
    color: var(--light-gray);
    padding: 30px;
    margin: 0 auto;
    max-width: 700px;
}

.review-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-red);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.review-card .rating-stars .fa-star, .review-card .rating-stars .fa-star-half-stroke, .review-card .rating-stars .fa-regular {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

/* Editor's Rating */
.editor-rating-block {
    background-color: var(--dark-bg);
    border: 1px solid var(--secondary-red);
    color: var(--light-gray);
}

.editor-rating-block h3 {
    color: var(--primary-red);
    font-size: 2.2rem;
}

.editor-rating-block .overall-rating .rating-stars .fa-star, .editor-rating-block .overall-rating .rating-stars .fa-star-half-stroke {
    color: var(--accent-gold);
    font-size: 1.8rem;
}

.pros-cons-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.pros-cons-list .fa-circle-check {
    color: #28a745;
}

.pros-cons-list .fa-circle-xmark {
    color: #dc3545;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: var(--darker-bg);
    padding: 60px 0;
    border-top: 5px solid var(--secondary-red);
    border-bottom: 5px solid var(--secondary-red);
}

.disclaimer-content {
    background-color: rgba(var(--primary-red), 0.2);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    padding: 30px;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    color: var(--accent-gold);
    font-size: 1.8rem;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Footer */
.footer-container {
    background-color: var(--primary-red) !important;
}

.footer-logo-link {
    display: block !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700 !important;
    font-size: 1rem !important;
}

.footer-logo-link img {
    max-height: 60px;
}

.footer-links li a {
    color: var(--white-50);
    padding: 5px 0;
    display: block;
}

.footer-links li a:hover {
    color: var(--accent-gold);
}

.social-icons a {
    font-size: 1.5rem;
}

.responsible-gaming-logos {
    gap: 20px;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Responsive adjustments for footer logos */
@media (max-width: 767px) {
    .responsible-gaming-logos {
        justify-content: center;
    }
    .footer-logo {
        max-width: 100px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer-logo {
        max-width: 110px;
    }
}

/* Small screens */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .platform-card .card-title {
        font-size: 1.5rem;
    }
    .review-card {
        padding: 20px;
    }
    .editor-rating-block h3 {
        font-size: 1.8rem;
    }
    .disclaimer-content h3 {
        font-size: 1.5rem;
    }
    .disclaimer-content p {
        font-size: 0.85rem;
    }
    .footer-container .row > div {
        margin-bottom: 30px;
    }
    .footer-container .row > div:last-child {
        margin-bottom: 0;
    }
}
/* New Styles for .rightsCloudWrap and its children */

/* Wrapper for content, providing spacing and limiting width */
.rightsCloudWrap {
    padding: 60px 20px; /* Top/bottom padding and left/right padding */
    max-width: 1200px; /* Maximum width for content */
    margin: 0 auto; /* Center the wrapper on larger screens */
    color: var(--light-gray); /* Default text color for the content within */
}

/* Heading 1 styles within the wrapper */
.rightsCloudWrap h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 1.2em; /* Spacing below H1 */
    color: #fff; /* White color for headings */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles within the wrapper */
.rightsCloudWrap h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    margin-top: 1.5em; /* Spacing above H2 */
    margin-bottom: 1em; /* Spacing below H2 */
    color: #fff; /* White color for headings */
    line-height: 1.3;
}

/* Heading 3 styles within the wrapper */
.rightsCloudWrap h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    margin-top: 1.2em; /* Spacing above H3 */
    margin-bottom: 0.8em; /* Spacing below H3 */
    color: #fff; /* White color for headings */
    line-height: 1.4;
}

/* Heading 4 styles within the wrapper */
.rightsCloudWrap h4 {
    font-size: 1.2rem; /* Moderate font size for H4 */
    margin-top: 1em; /* Spacing above H4 */
    margin-bottom: 0.6em; /* Spacing below H4 */
    color: #fff; /* White color for headings */
    line-height: 1.5;
}

/* Heading 5 styles within the wrapper */
.rightsCloudWrap h5 {
    font-size: 1rem; /* Moderate font size for H5 (similar to paragraph, but bold) */
    margin-top: 0.8em; /* Spacing above H5 */
    margin-bottom: 0.5em; /* Spacing below H5 */
    color: #fff; /* White color for headings */
    line-height: 1.6;
}

/* Paragraph styles within the wrapper */
.rightsCloudWrap p {
    font-size: 1.05rem; /* Standard paragraph font size */
    margin-bottom: 1.2em; /* Spacing below paragraphs */
    line-height: 1.7; /* Increased line height for better readability */
    color: var(--light-gray); /* Light gray for paragraph text */
}

/* Unordered list styles within the wrapper */
.rightsCloudWrap ul {
    list-style-type: disc; /* Standard disc bullet points */
    margin-bottom: 1.5em; /* Spacing below the list */
    padding-left: 25px; /* Indentation for list items */
    color: var(--light-gray); /* Light gray for list text */
}

/* List item styles within the wrapper */
.rightsCloudWrap li {
    margin-bottom: 0.8em; /* Spacing between list items */
    line-height: 1.6; /* Line height for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .rightsCloudWrap {
        padding: 40px 15px; /* Adjust padding for smaller screens */
    }
    .rightsCloudWrap h1 {
        font-size: 1.8rem;
    }
    .rightsCloudWrap h2 {
        font-size: 1.5rem;
    }
    .rightsCloudWrap h3 {
        font-size: 1.3rem;
    }
    .rightsCloudWrap h4 {
        font-size: 1.1rem;
    }
    .rightsCloudWrap h5 {
        font-size: 0.95rem;
    }
    .rightsCloudWrap p {
        font-size: 0.95rem;
    }
    .rightsCloudWrap ul {
        padding-left: 20px; /* Slightly less indentation */
    }
}
