/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFF0F3; /* Very light crimson tint */
}

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

a {
    color: #D44C6A;
    text-decoration: none;
}

a:hover {
    color: #A33B52;
    text-decoration: underline;
}

.btn-primary {
    background-color: #D44C6A;
    border-color: #D44C6A;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #A33B52;
    border-color: #A33B52;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}

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

/* Age Verification Modal */
.age-modal-content {
    background-color: #FFF0F3;
    border-radius: 15px;
    border: 2px solid #D44C6A;
    padding: 20px;
}

.age-modal-content .modal-title {
    color: #D44C6A;
    font-size: 1.8rem;
}


#cookieConsentBanner {
      position: fixed;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: #fff0f3;
      border: 2px solid #D44C6A;
      border-radius: 15px;
      padding: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      display: none;
      z-index: 1050;
    }
    #cookieConsentBanner p {
      margin: 0 0 10px;
      color: #333;
    }

    #acceptCookies{
        background-color: #D44C6A;
        color: #fff;
        font-size: 18px;
        border: 1px solid #D44C6A;
    }

    #rejectCookies{
        color: #D44C6A;
        background-color: #fff;
        font-size: 18px;
        border: 1px solid #D44C6A;
    }
/* Header */
.header {
    background-color: #D44C6A;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.header .navbar-brand .logo-img {
    height: 40px;
}

.header .navbar-brand .logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
}

.header .nav-link {
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.header .nav-link:hover,
.header .nav-link.active {
    color: #FFD1DC; /* Lighter crimson for hover */
}

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

.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.75%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;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 100px; /* Adjust for fixed header */
}

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

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #eee;
}

/* Advantages Section */
.advantages-section {
    background-color: #fff;
}

.advantage-item {
    background-color: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.advantage-item .icon-large {
    font-size: 3rem;
    color: #D44C6A;
}

.advantage-item h3 {
    color: #333;
}

/* Rating List Section */
.rating-list-section {
    background-color: #F8F8F8;
}

.rating-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.rating-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.rating-card .card-logo-link {
    flex-shrink: 0;
}

.rating-card .card-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.rating-card .card-content h3 {
    color: #D44C6A;
    font-size: 1.75rem;
}

.rating-card .bonus-text {
    color: #555;
    font-size: 1.1rem;
}

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

.rating-card .category-ratings span {
    font-size: 0.9rem;
    color: #666;
    margin-right: 5px;
}

.rating-card .category-ratings i {
    font-size: 0.9rem;
    color: #FFD700;
}

.rating-card .license-text {
    font-size: 0.85rem;
    color: #777;
}

.rating-card .btn-play {
    background-color: #D44C6A;
    border-color: #D44C6A;
    font-weight: 600;
    padding: 10px 30px;
    color: #fff;
}

.rating-card .btn-play:hover {
    background-color: #A33B52;
    border-color: #A33B52;
}

.rating-card .age-restriction-text {
    color: #dc3545; /* Red for age restriction */
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .rating-card {
        flex-direction: column;
        text-align: center;
    }
    .rating-card .card-logo-link {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }
    .rating-card .card-actions {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
}

/* Rating Criteria Section */
.rating-criteria-section {
    background-color: #FFF5F7;
}

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

.accordion-button {
    background-color: #D44C6A;
    color: #fff;
    font-weight: 600;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #A33B52;
    color: #fff;
    box-shadow: none;
}

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

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

.accordion-body {
    background-color: #fff;
    color: #444;
    padding: 20px;
    border-top: 1px solid #eee;
}

.accordion-button i {
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Bonus List Section (Form) */
.bonus-list-section {
    background-color: #fff;
}

.bonus-card {
    background-color: #FFF0F3;
    border: 1px solid #D44C6A;
    border-radius: 10px;
}

.bonus-card h3 {
    color: #D44C6A;
}

.bonus-card .form-label {
    font-weight: 600;
    color: #555;
}

.bonus-card .form-control:focus {
    border-color: #D44C6A;
    box-shadow: 0 0 0 0.25rem rgba(212, 76, 106, 0.25);
}

/* Reviews Section */
.reviews-section {
    background-color: #F8F8F8;
}

.review-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.review-card .review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #D44C6A;
}

.review-card h4 {
    color: #333;
}

.review-card .star-rating i {
    color: #FFD700;
    font-size: 1rem;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #FFD1DC; /* Lighter crimson for contrast */
    padding: 4rem 0;
}

.disclaimer-content {
    background-color: #fff;
    border: 2px solid #dc3545; /* Red border for warning */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.disclaimer-title {
    color: #dc3545;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-title i {
    font-size: 2.2rem;
    margin-right: 10px;
}

.disclaimer-content p {
    font-size: 1.05rem;
    color: #555;
}

.disclaimer-content ul {
    padding-left: 0;
}

.disclaimer-link {
    color: #D44C6A;
    font-weight: 600;
}

.disclaimer-link:hover {
    color: #A33B52;
}

/* Footer */
.footer {
    background-color: #212529 !important;
    color: #f8f9fa;
}

.footer .footer-brand .logo-img {
    height: 40px;
}

.footer .footer-brand .logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
}

.footer-heading {
    color: #D44C6A;
    font-weight: 600;
    font-size: 1.2rem;
}

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

.footer-link:hover {
    color: #D44C6A;
    text-decoration: none;
}

.social-icons a {
    color: #adb5bd;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #D44C6A;
}

.footer-trust-logos {
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.footer-logo-img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(1.1);
}

.age-18-plus img {
    filter: hue-rotate(330deg) saturate(1.5);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .header .navbar-brand .logo-text {
        font-size: 1.5rem;
    }
    .hero-section {
        min-height: 400px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .advantage-item {
        margin-bottom: 1.5rem;
    }
    .footer .text-center.mt-4 {
        margin-top: 2rem !important;
    }
}/* Styles for the main content block */
.infoGuardBlock {
    padding: 3rem 2rem; /* Top/bottom and left/right padding */
    margin-top: 2rem; /* Top margin for separation */
    margin-bottom: 2rem; /* Bottom margin for separation */
    background-color: #ffffff; /* White background for the content block */
    border-radius: 12px; /* Slightly rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
    line-height: 1.7; /* Improved readability for general text */
    color: #333; /* Default text color */
}

/* Heading 1 styles within infoGuardBlock */
.infoGuardBlock h1 {
    font-size: 2rem; /* Moderate font size for main headings */
    margin-top: 2.5rem; /* Spacing above heading */
    margin-bottom: 1.2rem; /* Spacing below heading */
    font-weight: 700; /* Bold weight */
    color: #D44C6A; /* Crimson color for headings */
    line-height: 1.3; /* Line height for readability */
}

/* Heading 2 styles within infoGuardBlock */
.infoGuardBlock h2 {
    font-size: 1.75rem; /* Slightly smaller than h1 */
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600; /* Semi-bold weight */
    color: #D44C6A;
    line-height: 1.4;
}

/* Heading 3 styles within infoGuardBlock */
.infoGuardBlock h3 {
    font-size: 1.5rem; /* Further reduction in size */
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    font-weight: 600;
    color: #D44C6A;
    line-height: 1.4;
}

/* Heading 4 styles within infoGuardBlock */
.infoGuardBlock h4 {
    font-size: 1.25rem; /* Smaller heading */
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500; /* Medium weight */
    color: #555; /* Slightly softer color */
    line-height: 1.5;
}

/* Heading 5 styles within infoGuardBlock */
.infoGuardBlock h5 {
    font-size: 1.1rem; /* Smallest heading */
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: #666; /* Even softer color */
    line-height: 1.5;
}

/* Paragraph styles within infoGuardBlock */
.infoGuardBlock p {
    font-size: 1rem; /* Standard body text size */
    margin-bottom: 1rem; /* Spacing between paragraphs */
    line-height: 1.7; /* Enhanced line height for readability */
    color: #444; /* Dark grey for body text */
}

/* Unordered list styles within infoGuardBlock */
.infoGuardBlock ul {
    list-style: disc; /* Default bullet style */
    margin-top: 1rem; /* Spacing above list */
    margin-bottom: 1rem; /* Spacing below list */
    padding-left: 25px; /* Indentation for bullets */
    color: #444;
}

/* List item styles within infoGuardBlock */
.infoGuardBlock ul li {
    font-size: 1rem; /* Standard text size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for readability */
}

/* Ordered list styles within infoGuardBlock (optional, but good to include) */
.infoGuardBlock ol {
    list-style: decimal; /* Default numbered style */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 25px;
    color: #444;
}

/* Ordered list item styles within infoGuardBlock */
.infoGuardBlock ol li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}


footer{
    .col-md-4{
        flex-grow: 1;
    }

    .text-muted{
        color: #ffffffcc !important;
    }
}

@media (max-width: 991px){
    .navbar-nav{
        text-align: center;
    }

    footer .row{
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-brand{
        justify-content: center !important;
    }

    #hero .container{
        padding-top: 120px;
        padding-bottom: 70px;
    }
}