/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #1A1A1A; /* Off-black background */
    color: #F5F5F5; /* Light gray for general text */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF; /* White for headings */
    font-weight: 700;
}

a {
    color: #E50914; /* Primary red for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B20707; /* Darker red on hover */
}

.btn-primary {
    background-color: #E50914;
    border-color: #E50914;
    color: #FFFFFF;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #B20707;
    border-color: #B20707;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #333333;
    border-color: #333333;
    color: #FFFFFF;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1A1A1A;
    border-color: #1A1A1A;
    transform: translateY(-2px);
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #FFFFFF;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #FFFFFF;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    transform: translateY(-2px);
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Header */
.header {
    background-color: #1A1A1A !important;
    border-bottom: 1px solid #333333;
}

.header .logo {
    max-height: 50px;
    width: auto;
}

.header .nav-link {
    color: #F5F5F5;
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: #E50914;
}

.header .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #E50914;
    transition: width 0.3s ease, left 0.3s ease;
}

.header .nav-link:hover::after {
    width: 100%;
    left: 0;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.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%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

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

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

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

.hero-section .lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    text-align: center;
    background-color: rgba(51, 51, 51, 0.5); /* Semi-transparent dark background */
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Optional: slight blur effect */
    border: 1px solid #E50914;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background-color: rgba(51, 51, 51, 0.7);
}

.hero-feature i {
    color: #E50914;
}

/* Rating Grid */
.rating-grid {
    background-color: #1A1A1A;
    padding-top: 60px;
    padding-bottom: 60px;
}

.casino-card {
    background-color: #333333; /* Darker background for cards */
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: #F5F5F5;
    border: 1px solid #444444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.casino-card .casino-link-img {
    display: block;
    margin-bottom: 15px;
}

.casino-card .casino-logo {
    max-width: 180px; /* Adjust as needed */
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.casino-card .casino-link-img:hover .casino-logo {
    transform: scale(1.05);
}

.casino-card .casino-title {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.casino-card .rating i {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.2rem;
}

.casino-card .rating .score {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E50914;
    margin-left: 5px;
}

.casino-card .casino-bonus,
.casino-card .casino-discount {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.casino-card .btn {
    margin-top: 20px;
}

/* Information Block */
.info-block {
    background-color: #1A1A1A;
    padding-top: 60px;
    padding-bottom: 60px;
}

.info-item {
    background-color: #333333;
    border: 1px solid #444444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-item .info-title {
    color: #E50914;
    font-size: 1.4rem;
}

.info-item p {
    color: #CCCCCC;
}

/* User Reviews */
.user-reviews {
    background-color: #1A1A1A;
    padding-top: 60px;
    padding-bottom: 60px;
}

.rating-summary {
    font-size: 1.2rem;
    color: #F5F5F5;
}

.rating-summary i {
    color: #FFD700;
}

.review-card {
    background-color: #333333;
    border: 1px solid #444444;
    color: #F5F5F5;
    max-width: 700px;
    margin: 0 auto;
    min-height: 180px; /* Ensure consistent height for carousel */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
}

.review-author {
    font-size: 0.95rem;
    color: #CCCCCC;
}

.review-rating i {
    color: #FFD700;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: brightness(0) invert(1); /* Make arrows white */
}

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

/* Rating Criteria */
.rating-criteria {
    background-color: #1A1A1A;
    padding-top: 60px;
    padding-bottom: 60px;
}

.criteria-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #CCCCCC;
}

.criteria-list li strong {
    color: #FFFFFF;
}

/* Contact Form */
.contact-form {
    background-color: #1A1A1A;
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-form form {
    background-color: #333333;
    border: 1px solid #444444;
    color: #F5F5F5;
}

.contact-form .form-label {
    color: #F5F5F5;
    font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    background-color: #1A1A1A;
    border: 1px solid #555555;
    color: #F5F5F5;
}

.contact-form .form-control::placeholder {
    color: #888888;
}

.contact-form .form-text {
    color: #AAAAAA;
    font-size: 0.85rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #B20707; /* Darker red background */
    color: #FFFFFF;
    padding: 30px 0;
    border-top: 3px solid #E50914; /* Red border top */
    border-bottom: 3px solid #E50914; /* Red border bottom */
    margin-top: 50px;
}

.disclaimer-section .disclaimer-title {
    color: #FFFFFF;
    font-size: 1.8rem;
}

.disclaimer-section i {
    color: #FFD700; /* Warning icon color */
}

.disclaimer-section a {
    color: #FFFFFF;
    text-decoration: underline;
}

.disclaimer-section a:hover {
    color: #F5F5F5;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #CCCCCC;
    border-top: 1px solid #333333;
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer .logo {
    max-height: 60px;
    width: auto;
}

.footer-link {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E50914;
}

.footer .list-unstyled li {
    margin-bottom: 8px;
}

.footer .list-unstyled li i {
    color: #E50914;
}

.social-feed p {
    margin-bottom: 5px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between logos */
}

.footer-org-logo {
    max-width: 160px; /* Limit width */
    height: auto;
    filter: none; /* Ensure no grayscale */
    transition: transform 0.3s ease;
}

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

.age-icon-footer img {
    max-width: 80px; /* Smaller for 18+ icon */
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333333; /* Dark background */
    color: #F5F5F5;
    padding: 15px 0;
    z-index: 1050;
    border-top: 2px solid #E50914;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner .cookie-policy-link {
    color: #E50914;
    text-decoration: underline;
}

.cookie-banner .cookie-policy-link:hover {
    color: #B20707;
}

.cookie-banner .cookie-buttons .btn {
    margin-left: 10px;
    font-size: 0.9rem;
    padding: 8px 15px;
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Very dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.age-verification-modal .modal-content {
    background-color: #1A1A1A; /* Dark background */
    border: 2px solid #E50914;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: #F5F5F5;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.age-verification-modal .age-icon {
    max-width: 100px;
    height: auto;
}

.age-verification-modal h2 {
    color: #E50914;
    margin-bottom: 20px;
}

.age-verification-modal p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.age-verification-modal .btn {
    min-width: 120px;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .hero-feature {
        padding: 15px 20px;
    }
    .header .logo {
        max-height: 40px;
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner .cookie-buttons {
        margin-top: 15px;
    }
    .cookie-banner .cookie-buttons .btn {
        margin: 0 5px;
    }
    .footer-logos {
        gap: 15px;
    }
    .footer-org-logo {
        max-width: 100px;
    }
    .age-icon-footer img {
        max-width: 60px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 60vh;
        padding: 80px 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 0.9rem;
    }
    .hero-feature {
        width: 100%;
    }
    .casino-card {
        padding: 20px;
    }
    .casino-card .casino-title {
        font-size: 1.5rem;
    }
    .casino-card .casino-logo {
        max-width: 150px;
    }
    .info-item {
        padding: 20px;
    }
    .info-item .info-title {
        font-size: 1.2rem;
    }
    .review-card {
        padding: 20px;
        min-height: 160px;
    }
    .review-text {
        font-size: 1rem;
    }
    .contact-form form {
        padding: 25px;
    }
    .disclaimer-section .disclaimer-title {
        font-size: 1.5rem;
    }
    .footer-logos {
        gap: 10px;
    }
    .footer-org-logo {
        max-width: 90px;
    }
    .age-icon-footer img {
        max-width: 50px;
    }
}
/* New styles for content blocks, specifically for policy or detailed information pages */
.policyOrbitalShell {
    /* Basic container styling for content */
    max-width: 960px; /* Limits content width for readability */
    margin: 60px auto; /* Top margin and centers the block */
    padding: 0 20px; /* Horizontal padding for content on all screens */
    color: #F5F5F5; /* Inherits text color from body, ensuring readability on dark background */
}

/* Headings within the content block */
.policyOrbitalShell h1 {
    font-size: 2.5rem; /* Moderate size for main content headings */
    margin-top: 2.5em; /* Space above heading */
    margin-bottom: 1em; /* Space below heading */
    color: #FFFFFF; /* White color for headings */
    font-weight: 700; /* Bold font weight */
}

.policyOrbitalShell h2 {
    font-size: 2rem; /* Sub-heading size */
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: #FFFFFF;
    font-weight: 700;
}

.policyOrbitalShell h3 {
    font-size: 1.75rem; /* Smaller sub-heading */
    margin-top: 1.8em;
    margin-bottom: 0.7em;
    color: #FFFFFF;
    font-weight: 700;
}

.policyOrbitalShell h4 {
    font-size: 1.5rem; /* Even smaller sub-heading */
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    color: #FFFFFF;
    font-weight: 700;
}

.policyOrbitalShell h5 {
    font-size: 1.25rem; /* Smallest heading, useful for minor sections */
    margin-top: 1.4em;
    margin-bottom: 0.5em;
    color: #FFFFFF;
    font-weight: 700;
}

/* Paragraph styles within the content block */
.policyOrbitalShell p {
    font-size: 1.1rem; /* Standard paragraph text size for readability */
    line-height: 1.7; /* Increased line height for better readability */
    margin-bottom: 1.2em; /* Space between paragraphs */
}

/* Unordered list styles within the content block */
.policyOrbitalShell ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-top: 1.2em; /* Space above the list */
    margin-bottom: 1.2em; /* Space below the list */
    padding-left: 25px; /* Indentation for list items */
}

/* List item styles within the content block */
.policyOrbitalShell li {
    font-size: 1.1rem; /* Matches paragraph text size */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.8em; /* Space between list items */
    color: #F5F5F5; /* Text color for list items */
}

/* Responsive adjustments for the content block */
@media (max-width: 767.98px) {
    .policyOrbitalShell {
        margin-top: 40px; /* Reduced top margin on smaller screens */
        padding: 0 15px; /* More padding on very small screens */
    }

    .policyOrbitalShell h1 {
        font-size: 2rem;
    }
    .policyOrbitalShell h2 {
        font-size: 1.75rem;
    }
    .policyOrbitalShell h3 {
        font-size: 1.5rem;
    }
    .policyOrbitalShell h4 {
        font-size: 1.3rem;
    }
    .policyOrbitalShell h5 {
        font-size: 1.1rem;
    }
    .policyOrbitalShell p,
    .policyOrbitalShell li {
        font-size: 1rem;
    }
}
