/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a; /* Dark Black */
    color: #e0e0e0; /* Light Grey for readability */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll due to animations */
}

h1, h2, h3, h4, h5, h6 {
    color: #FFD700; /* Gold */
    font-weight: 700;
}

a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #DC143C; /* Red */
}

.text-gold {
    color: #FFD700 !important;
}

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

.bg-dark-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.bg-red {
    background-color: #DC143C;
}

.bg-red-dark {
    background-color: #330d12; /* Darker red for disclaimer */
    border-top: 5px solid #DC143C;
}

.border-gold {
    border-color: #FFD700 !important;
}

.border-red {
    border-color: #DC143C !important;
}

/* Custom Buttons */
.btn-gold {
    background-color: #FFD700;
    color: #1a1a1a;
    border-color: #FFD700;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.btn-outline-gold {
    color: #FFD700;
    border-color: #FFD700;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover, .btn-outline-gold.active {
    background-color: #FFD700;
    color: #1a1a1a;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.custom-btn-red {
    background-color: #DC143C;
    color: #fff;
    border-color: #DC143C;
    transition: all 0.3s ease;
}

.custom-btn-red:hover {
    background-color: #b00f2e;
    border-color: #b00f2e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 20, 60, 0.3);
}

/* Main Header */
.main-header {
    background-color: #0a0a0a;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1030;
}

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

.site-name {
    font-size: 1.5rem;
}

.header-age-notice {
    font-size: 0.8rem;
}

/* Hero Section */
.hero-section {
    background: url('visuals/media/Football_Businessman_Playing_American_The_On_Mixed_Media_Field.jpg') no-repeat center center/cover;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Adjust for sticky header */
    padding-bottom: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

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

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

.hero-section p {
    font-size: 1.25rem;
}

/* Rating Card */
.rating-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.rating-card .card-img-top {
 
    padding: 15px; 
}

.star-rating .bi-star-fill, .star-rating .bi-star-half {
    color: #FFD700;
}

.advantages-list li {
    margin-bottom: 5px;
}

.bonus-offer {
    font-size: 1.1rem;
    background-color: #DC143C;
    color: #fff;
}

/* Editor Rating */
.editor-rating .card {
    background-color: #2a2a2a;
    border: 2px solid #DC143C;
}

/* Comparison Table */
.comparison-table .table {
    --bs-table-bg: #1a1a1a;
    --bs-table-striped-bg: #2a2a2a;
    --bs-table-striped-color: #e0e0e0;
    --bs-table-color: #e0e0e0;
    border-color: #333;
}

.comparison-table th {
    background-color: #0a0a0a;
    border-color: #333;
}

.comparison-table td {
    border-color: #333;
}

.comparison-table .badge {
    font-size: 0.9em;
    padding: 0.5em 0.7em;
}

/* Rating Criteria */
.criteria-item {
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* User Reviews */
.review-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
}

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

/* Articles Block */
.article-card {
    background-color: #2a2a2a;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Contact Form Section */
.form-gold-border {
    background-color: #2a2a2a;
    border: 2px solid #FFD700;
}

.custom-input {
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: #e0e0e0;
}

.custom-input::placeholder {
    color: #888;
}

.custom-input:focus {
    background-color: #1a1a1a;
    border-color: #FFD700;
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
    color: #e0e0e0;
}

.form-label {
    font-weight: 600;
}

/* Important Disclaimer Block */
.important-disclaimer-section {
    background-color: #330d12; /* Darker red */
    border-top: 5px solid #DC143C;
}

.disclaimer-box {
    background-color: #1a1a1a;
    border: 2px solid #FFD700;
    padding: 30px;
}

.disclaimer-box h3 {
    color: #FFD700;
    font-weight: 700;
}

.disclaimer-box p {
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    border-top: 1px solid #333;
}

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

.site-footer .hover-gold:hover {
    color: #FFD700 !important;
}

.site-footer .footer-logos {
    gap: 15px;
}

.footer-logo-item {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    transition: filter 0.3s ease;
}

.footer-logo-item-18plus {
    max-width: 60px;
    height: auto;
    object-fit: contain;
    filter: none; /* Ensure 18+ icon stays red */
}

.disclaimer-footer-small p {
    font-size: 0.8rem;
    color: #c80606;
}

/* 18+ Age Verification PopUp */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000; /* Higher than cookie banner */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.age-modal-content {
    background-color: #1a1a1a;
    color: #e0e0e0;
    max-width: 500px;
    width: 90%;
    border: 2px solid #FFD700;
}

.age-modal-content h2 {
    color: #FFD700;
}

.age-modal-content .form-check-label a {
    color: #FFD700;
}

.age-modal-content .form-check-input:checked {
    background-color: #DC143C;
    border-color: #DC143C;
}

/* Cookie Consent Banner */
.cookie-banner {
    z-index: 1500; /* Below age verification */
    border-top: 2px solid #FFD700;
}

.cookie-banner p a {
    color: #FFD700;
}

.cookie-banner .btn-gold {
    background-color: #FFD700;
    color: #1a1a1a;
    border-color: #FFD700;
}

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

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .hero-section .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    .header-age-notice {
        font-size: 0.7rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }
    .site-name {
        font-size: 1.2rem;
    }
    .header-logo {
        height: 35px;
    }
    .footer-logos {
        justify-content: center;
    }
    .cookie-banner .container {
        flex-direction: column;
    }
    .cookie-banner p {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .hero-section p {
        font-size: 0.85rem;
    }
    .site-name {
        font-size: 1rem;
    }
    .header-logo {
        height: 30px;
    }
    .age-modal-content {
        padding: 20px !important;
    }
    .age-modal-content h2 {
        font-size: 1.5rem;
    }
    .age-modal-content p {
        font-size: 0.9rem;
    }
    .form-check-label {
        font-size: 0.9rem;
    }
}
/*
 * New styles for .lawMatrixNode and its child typography.
 * These styles are intended for general content blocks within the page.
 */

.lawMatrixNode {
    padding-top: 60px; /* Top padding for the content block */
    padding-bottom: 60px; /* Bottom padding for the content block */
    padding-left: 20px; /* Left padding for the content block */
    padding-right: 20px; /* Right padding for the content block */
    max-width: 1200px; /* Maximum width for content, adjust as needed */
    margin-left: auto; /* Center the block horizontally */
    margin-right: auto; /* Center the block horizontally */
}

/* Headings */
.lawMatrixNode h1 {
    font-size: 2.2rem; /* Reduced font size for h1 */
    margin-top: 2.5rem; /* Top margin for h1 */
    margin-bottom: 1.5rem; /* Bottom margin for h1 */
    line-height: 1.2; /* Line height for h1 */
    color: #FFD700; /* Gold color, consistent with general styles */
}

.lawMatrixNode h2 {
    font-size: 1.8rem; /* Reduced font size for h2 */
    margin-top: 2rem; /* Top margin for h2 */
    margin-bottom: 1.2rem; /* Bottom margin for h2 */
    line-height: 1.3; /* Line height for h2 */
    color: #FFD700; /* Gold color */
}

.lawMatrixNode h3 {
    font-size: 1.5rem; /* Reduced font size for h3 */
    margin-top: 1.8rem; /* Top margin for h3 */
    margin-bottom: 1rem; /* Bottom margin for h3 */
    line-height: 1.4; /* Line height for h3 */
    color: #FFD700; /* Gold color */
}

.lawMatrixNode h4 {
    font-size: 1.3rem; /* Reduced font size for h4 */
    margin-top: 1.5rem; /* Top margin for h4 */
    margin-bottom: 0.8rem; /* Bottom margin for h4 */
    line-height: 1.5; /* Line height for h4 */
    color: #FFD700; /* Gold color */
}

.lawMatrixNode h5 {
    font-size: 1.1rem; /* Reduced font size for h5 */
    margin-top: 1.2rem; /* Top margin for h5 */
    margin-bottom: 0.6rem; /* Bottom margin for h5 */
    line-height: 1.5; /* Line height for h5 */
    color: #FFD700; /* Gold color */
}

/* Paragraphs */
.lawMatrixNode p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.6; /* Line height for paragraphs */
    color: #e0e0e0; /* Light grey for readability */
}

/* Unordered Lists */
.lawMatrixNode ul {
    list-style-type: disc; /* Standard disc bullets */
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 25px; /* Indentation for list items */
    color: #e0e0e0; /* Light grey for list text */
}

/* List Items */
.lawMatrixNode li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 0.5rem; /* Bottom margin between list items */
    line-height: 1.6; /* Line height for list items */
}
.card-body  {
    color:#fff !important;
}
.editor-rating p {
     color:#fff !important;
}
.editor-rating li {
     color:#fff !important;
}
.user-reviews p {
     color:#fff !important;
}
footer .row {
    justify-content: space-between;
}
.articles-block .row {
    justify-content: center !important;
}
@media (max-width: 768px) {
  .table-responsive table,
  .table-responsive thead,
  .table-responsive tbody,
  .table-responsive th,
  .table-responsive td,
  .table-responsive tr {
    display: block;
    width: 100%;
  }

  .table-responsive thead {
    display: none;  
  }

  .table-responsive tr {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px;
    background: #1a1a1a;
  }

  .table-responsive td {
    text-align: left !important;
    padding-left: 45%;  
    position: relative;
    min-height: 40px;
  }

  .table-responsive td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #ffd700;
    white-space: normal;  
  }
}

@media (max-width: 500px) {
  .table-responsive table,
  .table-responsive thead,
  .table-responsive tbody,
  .table-responsive th,
  .table-responsive td,
  .table-responsive tr {
    display: block;
    width: 100%;
  }

  .table-responsive thead {
    display: none;
  }

  .table-responsive tr {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 10px;
    background: #1a1a1a;
  }

  .table-responsive td {
    text-align: left !important;
    padding-left: 10px;  
    position: relative;
    padding-top: 25px;  
  }

  .table-responsive td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 5px;
    font-weight: bold;
    color: #ffd700;
    font-size: 13px;
  }
}


/* Responsive adjustments for headings within .lawMatrixNode */
@media (max-width: 767.98px) {
    .lawMatrixNode h1 {
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1.2rem;
    }
    .lawMatrixNode h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    .lawMatrixNode h3 {
        font-size: 1.3rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }
    .lawMatrixNode h4 {
        font-size: 1.1rem;
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }
    .lawMatrixNode h5 {
        font-size: 1rem;
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }
    .lawMatrixNode p, .lawMatrixNode li {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section .container {
        text-align: center;
    }
    .lawMatrixNode {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .lawMatrixNode h1 {
        font-size: 1.5rem;
    }
    .lawMatrixNode h2 {
        font-size: 1.3rem;
    }
    .lawMatrixNode h3 {
        font-size: 1.1rem;
    }
    .lawMatrixNode h4 {
        font-size: 1rem;
    }
    .lawMatrixNode h5 {
        font-size: 0.95rem;
    }
    .lawMatrixNode p, .lawMatrixNode li {
        font-size: 0.9rem;
    }
}
