body {
    font-family: 'Inter', sans-serif;
    background-color: #1A0000;
    color: #F0F0F0;
    line-height: 1.6;
}

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

a {
    color: #FF6B6B;
}

a:hover {
    color: #FFC107; /* Amber for hover */
}

.btn {
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none !important;
}

.btn-primary {
    background-color: #B22222;
    border-color: #B22222;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #8B0000;
    border-color: #8B0000;
    color: #FFFFFF;
}

.btn-secondary {
    background-color: #6C757D;
    border-color: #6C757D;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #5A6268;
    border-color: #5A6268;
    color: #FFFFFF;
}

.form-control {
    background-color: #2B0000;
    border: 1px solid #440000;
    color: #F0F0F0;
}

.form-control:focus {
    background-color: #2B0000;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
    color: #F0F0F0;
}

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

.invalid-feedback {
    color: #FF6B6B;
}

/* Header */
.header {
    background-color: #2B0000;
    border-bottom: 1px solid #440000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

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

.site-title {
    color: #FFC107;
    font-size: 1.8rem;
}

.header-info {
    font-size: 0.85rem;
    color: #FF6B6B;
    text-align: right;
}

@media (max-width: 767.98px) {
    .header .container-fluid {
        flex-direction: column;
    }
    .header-info {
        margin-top: 10px;
        text-align: center;
    }
    .site-title {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1A0000 0%, #330000 100%);
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.hero-title {
    color: #FFC107;
    animation: fadeInUp 1s ease-out;
    font-size: clamp(24px, 4vw, 42px);
}

.hero-description {
    color: #E0E0E0;
    animation: fadeInUp 1s ease-out 0.2s;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: fadeInRight 1s ease-out 0.4s;
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }

    .carousel-control-next,
    .carousel-control-prev{
        display: none;
    }

}

/* Section Titles */
.section-title {
    font-size: clamp(22px, 4vw, 32px);
    color: #FFC107;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 3rem;
}

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

/* About Us */
.about-us {
    background-color: #220000;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.about-us p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

/* Rating Criteria */
.rating-criteria {
    background-color: #1A0000;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.criteria-item {
    background-color: #2B0000;
    border: 1px solid #440000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.criteria-title {
    color: #FFC107;
    font-size: 1.5rem;
}

.criteria-item details summary {
    cursor: pointer;
    color: #FF6B6B;
    transition: color 0.3s ease;
}

.criteria-item details summary:hover {
    color: #FFC107;
}

.criteria-item details p {
    color: #E0E0E0;
    margin-top: 10px;
}

/* Editor Rating */
.editor-rating {
    background: linear-gradient(45deg, #330000 0%, #1A0000 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.editor-rating-card {
    max-width: 700px;
    background-color: #2B0000;
    border: 1px solid #440000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInZoom 0.8s ease-out;
}

.editor-rating-card .card-title {
    color: #FFC107;
}

.editor-rating-card .card-text {
    color: #E0E0E0;
}

.rating-score i {
    color: #FFC107;
    font-size: 3rem;
}

.rating-score span {
    color: #F0F0F0;
}

.editor-progress {
    height: 10px;
    background-color: #440000;
    border-radius: 5px;
    overflow: hidden;
    max-width: 300px;
}

.editor-progress .progress-bar {
    background-color: #FF6B6B;
    transition: width 1.5s ease-out;
}

/* Rating Grid */
.rating-grid {
    background-color: #220000;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.platform-card {
    background-color: #2B0000;
    border: 1px solid #440000;
    border-radius: 0.75rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    align-items: center;
}

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

.platform-logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    padding: 10px;
    background-color: #1A0000;
    border-radius: 0.5rem;
}

.platform-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.platform-card .card-title {
    color: #FFC107;
    font-size: 1.75rem;
}

.platform-card .card-text {
    color: #E0E0E0;
}

.rating-stars i {
    color: #FFC107;
    font-size: 1.2rem;
}

.rating-stars span {
    color: #F0F0F0;
}

.badge {
    font-size: 0.85rem;
    padding: 0.5em 0.8em;
    border-radius: 0.3rem;
}

.payment-methods .payment-icon {
    height: 30px;
    margin-right: 8px;
    filter: brightness(0.9);
}

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

/* Comparison Table */
.comparison-table {
    background-color: #1A0000;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.table {
    color: #F0F0F0;
    background-color: #2B0000;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #440000;
}

.table thead th {
    background-color: #B22222;
    color: #FFFFFF;
    border-bottom: 1px solid #8B0000;
    padding: 1rem;
}

.table tbody tr {
    transition: background-color 0.3s ease;
}

.table tbody tr:hover {
    background-color: #330000;
}

.table tbody td {
    border-top: 1px solid #440000;
    padding: 1rem;
}

/* User Reviews */
.user-reviews {
    background: linear-gradient(135deg, #220000 0%, #330000 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.review-card {
    max-width: 700px;
    background-color: #2B0000;
    border: 1px solid #440000;
    border-radius: 0.75rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #E0E0E0;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFC107;
}

.reviewer-name {
    color: #FFC107;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
}

.device-tag {
    background-color: #440000;
    color: #FF6B6B;
    padding: 0.3em 0.7em;
    border-radius: 0.3rem;
    font-size: 0.8rem;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #B22222;
    border-radius: 50%;
    padding: 1rem;
}

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

/* Contact Section */
.contact-section {
    background-color: #1A0000;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-form {
    background-color: #2B0000;
    border: 1px solid #440000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.contact-info i {
    color: #FFC107;
    font-size: 1.2rem;
}

/* Disclaimer Block */
.disclaimer-block {
    background-color: #440000;
    padding: 5rem 0;
    border-top: 5px solid #FF6B6B;
    border-bottom: 5px solid #FF6B6B;
}

.disclaimer-content {
    background-color: #2B0000;
    border: 1px solid #FF6B6B;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    color: #E0E0E0;
}

.disclaimer-title {
    color: #FFC107;
    font-size: 2rem;
    border-bottom: 2px solid #FF6B6B;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.disclaimer-title i {
    color: #FFC107;
}

.disclaimer-content h4 {
    color: #FF6B6B;
    font-size: 1.5rem;
}

.disclaimer-content a {
    color: #FFC107;
}

.disclaimer-content a:hover {
    color: #FFFFFF;
}

/* Footer */
.footer {
    background-color: #0F0000;
    color: #E0E0E0;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-heading {
    color: #FFC107;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer ul {
    padding-left: 0;
}

.footer ul li a {
    color: #E0E0E0;
    padding: 0.3rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #FF6B6B;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #2B0000;
}

.footer-18-plus-icon {
    color: #B22222;
    font-size: 2.5rem;
    margin-right: 10px;
}

.footer-logos {
    gap: 15px;
}

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

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

/* Age Verification Modal */
.age-verification-modal-content {
    background-color: #2B0000;
    color: #F0F0F0;
    border: 1px solid #B22222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

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

.age-verification-modal-content .btn-primary {
    background-color: #B22222;
    border-color: #B22222;
}

.age-verification-modal-content .btn-secondary {
    background-color: #6C757D;
    border-color: #6C757D;
}

/* Cookie Banner */
.cookie-banner {
    background-color: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #B22222;
    z-index: 1050;
}

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

.cookie-banner .btn-success {
    background-color: #28A745;
    border-color: #28A745;
}

.cookie-banner .btn-danger {
    background-color: #DC3545;
    border-color: #DC3545;
}

html, body { overflow-x: hidden; }

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-fade-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animated-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-zoom.is-visible {
    opacity: 1;
    transform: scale(1);
}

.animated-stagger-item {
    opacity: 0;
    transform: translateY(20px);
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}/* Styles for the main consent tunnel grid container */
.consentTunnelGrid {
  margin-top: 2rem; /* Top margin for the grid */
  margin-inline: 1.5rem; /* Side margins for the grid (left and right) */
  /* If you want to center the grid with a max-width, you can uncomment these lines: */
  /* max-width: 1200px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}

/* Heading 1 styles */
.consentTunnelGrid h1 {
  font-size: 1.8rem; /* Moderate font size for H1 */
  font-weight: 700; /* Bold font weight */
  line-height: 1.2; /* Tighter line height for headings */
  margin-top: 1.8rem; /* Top margin for H1 */
  margin-bottom: 0.8rem; /* Bottom margin for H1 */
}

/* Heading 2 styles */
.consentTunnelGrid h2 {
  font-size: 1.5rem; /* Moderate font size for H2 */
  font-weight: 700; /* Bold font weight */
  line-height: 1.2; /* Tighter line height for headings */
  margin-top: 1.5rem; /* Top margin for H2 */
  margin-bottom: 0.7rem; /* Bottom margin for H2 */
}

/* Heading 3 styles */
.consentTunnelGrid h3 {
  font-size: 1.25rem; /* Moderate font size for H3 */
  font-weight: 600; /* Semi-bold font weight */
  line-height: 1.3; /* Line height for H3 */
  margin-top: 1.25rem; /* Top margin for H3 */
  margin-bottom: 0.6rem; /* Bottom margin for H3 */
}

/* Heading 4 styles */
.consentTunnelGrid h4 {
  font-size: 1.1rem; /* Moderate font size for H4 */
  font-weight: 600; /* Semi-bold font weight */
  line-height: 1.4; /* Line height for H4 */
  margin-top: 1rem; /* Top margin for H4 */
  margin-bottom: 0.5rem; /* Bottom margin for H4 */
}

/* Heading 5 styles */
.consentTunnelGrid h5 {
  font-size: 1rem; /* Moderate font size for H5 (often body size, but bold) */
  font-weight: 600; /* Semi-bold font weight */
  line-height: 1.5; /* Line height for H5 */
  margin-top: 0.8rem; /* Top margin for H5 */
  margin-bottom: 0.4rem; /* Bottom margin for H5 */
}

/* Paragraph styles */
.consentTunnelGrid p {
  font-size: 1rem; /* Standard font size for paragraphs */
  line-height: 1.6; /* Increased line height for readability */
  margin-bottom: 1rem; /* Bottom margin for paragraph separation */
}

/* Unordered list styles */
.consentTunnelGrid ul {
  list-style-type: disc; /* Default disc bullet points */
  margin-top: 1rem; /* Top margin for the list */
  margin-bottom: 1rem; /* Bottom margin for the list */
  padding-left: 1.5rem; /* Indentation for bullet points */
}

/* List item styles */
.consentTunnelGrid li {
  font-size: 1rem; /* Standard font size for list items */
  line-height: 1.6; /* Increased line height for readability */
  margin-bottom: 0.5rem; /* Bottom margin for spacing between list items */
}


.age-modal-content {
    box-sizing: border-box;
}

/* Адаптація модалки для всіх екранів */
.modal-dialog {
    max-width: 500px; /* максимальна ширина на десктопі */
    margin: 1.5rem auto; /* відступи зверху і знизу, центр по горизонталі */
}

/* Мобільні стилі */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 95%; /* ширина не виходить за екран */
        margin: 0.5rem auto; /* невеликий відступ від країв */
    }
    .modal-body .d-flex {
        flex-direction: column; /* кнопки в колонку на вузьких екранах */
        gap: 0.5rem;
    }
}

.card-body span,
.card-body p{
    color: #fff !important;
}

.form-control::placeholder{
    color: #ffffffa9 !important;
}

.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.navWr{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;

    a{
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        transition: 0.4s linear;

        &:hover{
            color: #FFC107;
        }
    }
}

@media (max-width: 767px){
    .header-box{
        flex-wrap: wrap;
        text-align: center;
        justify-content: center !important;
        gap: 10px;
        margin-top: 14px;

        a{
            margin: 0 !important;
        }
    }
}

.body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}