body {
    font-family: 'Poppins', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.text-yellow-400 .bi-star-fill, .text-yellow-400 .bi-star-half {
    color: #FFD700;
}

button {
    text-decoration: none !important;
}

/* Custom scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}
/*
 * New stock styles for common content elements within .termsCaveBox.
 * These styles are designed to be clean, readable, and not overly large for headings.
 */

.termsCaveBox {
    /* Padding for the main container, providing space from edges. */
    padding: 2.5rem 2rem; /* Top/Bottom: 2.5rem, Left/Right: 2rem */
}

/* Headings */
.termsCaveBox h1 {
    /* Main heading style, not excessively large. */
    font-size: 2rem; /* Approximately 32px for a base 16px font */
    font-weight: 700; /* Bold */
    line-height: 1.2;
    margin-top: 2.5rem; /* Space above the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

.termsCaveBox h2 {
    /* Secondary heading style. */
    font-size: 1.75rem; /* Approximately 28px */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2.25rem;
    margin-bottom: 0.9rem;
}

.termsCaveBox h3 {
    /* Tertiary heading style. */
    font-size: 1.5rem; /* Approximately 24px */
    font-weight: 700;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.termsCaveBox h4 {
    /* Fourth level heading style. */
    font-size: 1.25rem; /* Approximately 20px */
    font-weight: 700;
    line-height: 1.5;
    margin-top: 1.75rem;
    margin-bottom: 0.7rem;
}

.termsCaveBox h5 {
    /* Fifth level heading style, slightly larger than body text. */
    font-size: 1.1rem; /* Approximately 17.6px */
    font-weight: 700;
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

/* Paragraphs */
.termsCaveBox p {
    /* Standard paragraph text style. */
    font-size: 1rem; /* Base font size, e.g., 16px */
    line-height: 1.7; /* Good for readability */
    margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered Lists */
.termsCaveBox ul {
    /* Default unordered list style. */
    list-style-type: disc; /* Bullet points */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem; /* Indent for bullet points */
}

/* List Items */
.termsCaveBox li {
    /* Style for individual list items. */
    font-size: 1rem; /* Inherit or set explicitly */
    line-height: 1.6; /* Good line height for list items */
    margin-bottom: 0.5rem; /* Space between list items */
}
.offer-card {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    align-items: stretch;
    background: #1f2937; /* темно-серый фон */
    border: 2px solid #1d4ed8; /* синий бордер */
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    gap: 20px;
    
}

.offer-logo {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 220px;
}
.offer-logo img {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.offer-logo img:hover {
    transform: scale(1.05);
}

.offer-content {
    flex: 2 1 300px;
    color: #d1d5db;
}
.offer-title {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}
.offer-description {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
}
.offer-rating {
    margin-bottom: 15px;
}
.offer-rating .stars {
    color: #facc15; /* желтые звездочки */
    font-size: 18px;
    margin-right: 8px;
}
.offer-rating .score {
    font-weight: bold;
    color: #facc15;
}
.offer-rating .license a {
    font-size: 13px;
    color: #60a5fa;
    text-decoration: none;
}
.offer-rating .license a:hover {
    text-decoration: underline;
}
.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.offer-list li {
    margin-bottom: 6px;
    font-size: 15px;
    color: #e5e7eb;
}
.offer-list li::before {
    content: "✔ ";
    color: #22c55e;
    font-weight: bold;
}

.offer-side {
    flex: 1 1 250px;
    text-align: center;
}
.offer-bonus {
    margin-bottom: 20px;
}
.offer-bonus .bonus-label {
    color: #f87171;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}
.offer-bonus .bonus-amount {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}
.offer-bonus .bonus-details {
    font-size: 13px;
    color: #9ca3af;
}
.offer-payments {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}
.offer-payments img {
    height: 32px;
    width: auto;
}
.offer-btn {
    margin-top: 25px;
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.offer-btn:hover {
    background: #b91c1c;
    transform: scale(1.05);
}
.block-footer-link{
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width:767px) {
    .adaptive-block-menu{
        display: none!important;
    }
}