body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: #ff8c00; /* Dark Orange */
    font-weight: 600;
}

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

a:hover {
    color: #ffc107;
    text-decoration: none;
}

.btn-primary {
    background-color: #ff8c00;
    border-color: #ff8c00;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-secondary {
    background-color: #555;
    border-color: #555;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-outline-primary {
    color: #ff8c00;
    border-color: #ff8c00;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background-color: #ff8c00;
    color: #ffffff;
    border-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-control {
    background-color: #333;
    border-color: #555;
    color: #f0f0f0;
}

.form-control::placeholder {
    color: #bbb;
}

.form-control:focus {
    background-color: #444;
    border-color: #ff8c00;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
    color: #f0f0f0;
}

.form-label {
    color: #ffab40;
}

.section-title {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 10px;
}

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

/* Header */
.site-header {
    background-color: #222222;
    border-bottom: 1px solid #333333;
    padding: 15px 0;
}

.site-logo {
    height: 50px;
    transition: transform 0.3s ease;
}

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

.site-title {
    color: #ff8c00;
    font-size: 2rem;
    font-weight: 700;
}

.age-disclaimer {
    font-size: 0.9rem;
    color: #ffab40;
    background-color: #3a2200;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

.age-icon {
    font-size: 1.2rem;
    color: #ff4500;
}

@media (max-width: 767.98px) {
    .site-header .d-flex {
        text-align: center;
    }
    .site-title {
        font-size: 20px;
    }
    .age-disclaimer {
        font-size: 12px;
        flex-direction: column;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(assets/graphics/colombia-digital-bg.jpg) no-repeat center center/cover;
    padding: 100px 0;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;

    &::before{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0000009c;
        filter: blur(3px);
    }
}

.hero-title {
    font-size: clamp(24px, 4vw, 56px);
    font-weight: 700;
    color: #ffc107;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* About Us */
.about-us {
    background-color: #2a2a2a;
}

.about-us p {
    color: #e0e0e0;
}

/* Platform Rating Grid */
.rating-grid {
    background-color: #1f1f1f;
}

.platform-card {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f0f0f0;
}

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

.platform-card .card-img-link {
    background-color: #3a3a3a;
    min-width: 180px;
    max-width: 180px;
    flex-shrink: 0;
}

.platform-logo {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 5px;
}

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

.platform-card .card-title {
    color: #ffc107;
    font-size: 1.75rem;
    margin-bottom: 10px;
}

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

.rating-score {
    color: #ffab40;
    font-weight: 600;
    margin-left: 5px;
}

.platform-features h5, .payment-methods h5 {
    color: #ffab40;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.platform-features ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.platform-features li {
    margin-bottom: 5px;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.platform-features li::before {
    content: '\F26A'; /* Bootstrap check-circle icon */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-size: 1rem;
    top: 2px;
}

.payment-icon {
    height: 30px;
    width: auto;
    object-fit: contain;
    border: 1px solid #555;
    padding: 3px;
    border-radius: 3px;
    background-color: #444;
}

.platform-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .platform-card {
        flex-direction: column;
    }
    .platform-card .card-img-link {
        min-width: unset;
        max-width: 100%;
        height: 150px;
    }
    .platform-logo {
        max-width: 100px;
    }
    .platform-card .card-body {
        text-align: center;
    }
    .platform-features li::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .platform-features li {
        padding-left: 0;
        padding-top: 20px;
    }
}

/* Editor's Pick */
.editor-rating {
    background: linear-gradient(135deg, #ff8c00, #ffab40);
    color: #ffffff;
}

.editor-pick-card {
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.editor-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.editor-pick-card .card-title {
    color: #ffc107;
    font-size: 2rem;
}

.overall-score {
    color: #ffffff;
    font-size: 3.5rem;
}

.rating-criteria {
    margin-top: 20px;
}

.rating-criteria li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.rating-criteria i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Rating Methodology */
.rating-methodology {
    background-color: #2a2a2a;
}

.rating-methodology p {
    color: #e0e0e0;
}

.rating-methodology .list-group-item {
    background-color: #333;
    border-color: #444;
    color: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.rating-methodology .list-group-item:hover {
    background-color: #444;
}

.rating-methodology .list-group-item i {
    color: #ff8c00;
}

/* User Reviews */
.user-reviews {
    background-color: #222222;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 25px;
    color: #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-quote {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.review-author {
    font-weight: 600;
    color: #ffab40;
    display: flex;
    align-items: center;
}

.review-author .rating-stars i {
    font-size: 1rem;
    margin-left: 10px;
}

.pagination-controls .btn {
    min-width: 120px;
}

/* Contact Form */
.contact-form-section {
    background-color: #1f1f1f;
}

.contact-form {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #f0f0f0;
}

.contact-form .submit-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 10px;
}

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

/* Disclaimer Section */
.disclaimer-section {
    background-color: #1a1a1a;
    padding-top: 50px;
    padding-bottom: 50px;
}

.disclaimer-box {
    background-color: #3a2200; /* Darker orange/brown for contrast */
    border: 2px solid #ff8c00;
    border-radius: 12px;
    color: #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.disclaimer-title {
    color: #ffc107;
    font-size: 2.2rem;
    font-weight: 700;
}

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

.disclaimer-box h4 {
    color: #ffab40;
    margin-top: 25px;
    margin-bottom: 15px;
}

.disclaimer-box p, .disclaimer-box ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.disclaimer-box ul {
    list-style-type: disc;
    padding-left: 25px;
}

.disclaimer-box ul li {
    margin-bottom: 8px;
}

.disclaimer-box a {
    color: #ffc107;
    text-decoration: underline;
}

.disclaimer-box a:hover {
    color: #ffab40;
}

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

.footer-heading {
    color: #ff8c00;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-highlight-item {
    color: #f0f0f0;
    margin-bottom: 8px;
}

.footer-highlight-item i {
    color: #ffc107;
    margin-right: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    margin-bottom: 40px;
}

.footer-link {
    color: #ffab40;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

.footer-logos {
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
}

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

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

.copyright-text {
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 30px;
}

.site-logo-footer {
    height: 35px;
    margin-right: 5px;
}

.site-title-footer {
    color: #ff8c00;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Age Verification Modal */
.age-modal-content {
    background-color: #2a2a2a;
    color: #f0f0f0;
    border: 1px solid #ff8c00;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.age-modal-content .modal-title {
    color: #ffc107;
    font-weight: 700;
}

.age-modal-content .modal-body p {
    font-size: 1.1rem;
}

/* Cookie Consent Modal */
.cookie-modal-content {
    background-color: #2a2a2a;
    color: #f0f0f0;
    border: 1px solid #ff8c00;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content .modal-title {
    color: #ffc107;
    font-weight: 700;
}

.cookie-modal-content .form-check-label {
    color: #e0e0e0;
}

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

.cookie-modal-content .btn-info {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.cookie-modal-content .btn-info:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.cookie-modal-content .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.cookie-modal-content .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.cookie-policy-link {
    color: #ffab40;
}

.cookie-policy-link:hover {
    color: #ffc107;
}
/* Parent container for terms and conditions content */
.termsCaveBox {
    padding: 25px 30px; /* Top/bottom and left/right padding for the content area */
    /* You might want to add max-width and margin: 0 auto; here for better readability on wide screens */
    /* max-width: 800px; */
    /* margin: 0 auto; */
}

/* Heading 1 styles */
.termsCaveBox h1 {
    font-size: 28px; /* Moderate size for main title */
    font-weight: 700; /* Bold */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 35px; /* Space above the heading */
    margin-bottom: 15px; /* Space below to connect with following content */
}

/* Heading 2 styles */
.termsCaveBox h2 {
    font-size: 24px; /* Sub-heading size */
    font-weight: 600; /* Slightly less bold than h1 */
    line-height: 1.3;
    margin-top: 30px;
    margin-bottom: 12px;
}

/* Heading 3 styles */
.termsCaveBox h3 {
    font-size: 20px; /* Section title */
    font-weight: 600;
    line-height: 1.4;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Heading 4 styles */
.termsCaveBox h4 {
    font-size: 18px; /* Sub-section title */
    font-weight: 500;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 8px;
}

/* Heading 5 styles */
.termsCaveBox h5 {
    font-size: 16px; /* Smallest heading, often for minor points */
    font-weight: 500;
    line-height: 1.5;
    margin-top: 18px;
    margin-bottom: 6px;
}

/* Paragraph styles */
.termsCaveBox p {
    font-size: 16px; /* Standard body text size */
    line-height: 1.6; /* Good readability for paragraphs */
    margin-bottom: 1em; /* Space between paragraphs */
}

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

/* List item styles */
.termsCaveBox li {
    font-size: 16px; /* Consistent with paragraph text */
    line-height: 1.6; /* Good readability for list items */
    margin-bottom: 0.5em; /* Space between individual list items */
}

.age-disclaimer svg{
    width: 18px;
    height: 18px;
}

.editor-rating{
    h2{
        color: #1a1a1a !important;
    }

    p, li{
        color: #fff !important;
    }
}

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

    main{
        display: flex;
        flex-direction: column;
        flex: 1;
    }
}

.main{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Звичайні стилі для модалки */
.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;
    }
}


@media (max-width: 767px){
    .editor-rating{
        .d-flex.align-items-center.mb-4{
            flex-direction: column;
        }
    }
}

.disclaimer-box a{
    font-size: clamp(12px, 4vw, 18px) !important;
}

body, html{
    box-sizing: border-box;
}

.nav-wr{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}