/* === Карточка бонуса === */
.bonus-card {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #eaeaea;
}
.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.bonus-card__header {
    background: #204f95;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
}
.bonus-card__header img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bonus-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bonus-card__type {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.bonus-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.3;
}

.bonus-card__amount {
    font-size: 22px;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 16px;
    line-height: 1.2;
}

.bonus-card__promo {
    background: #fff8e1;
    border: 2px dashed #f9a825;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    text-align: center;
}
.bonus-card__promo-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}
.bonus-card__promo-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.bonus-card__promo-code {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    word-break: break-all;
}
.bonus-card__promo-copy {
    background: #f9a825;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    max-width: 200px;
}
.bonus-card__promo-copy:hover {
    background: #f57c00;
}

.bonus-card__params {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.bonus-card__params li {
    font-size: 13px;
    color: #444;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid #f0f0f0;
}
.bonus-card__params li:last-child {
    border-bottom: none;
}
.bonus-card__params .bc-label {
    color: #888;
}
.bonus-card__params .bc-value {
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
}

.bonus-card__cta {
    display: block;
    background: #ff5722;
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: background 0.2s;
}
.bonus-card__cta:hover {
    background: #e64a19;
    color: #fff;
    text-decoration: none;
}

.bonus-card__more {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
}
.bonus-card__more:hover {
    color: #204f95;
    text-decoration: underline;
}

/* === Список бонусов === */
.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 575px) {
    .bonus-card__header { min-height: 90px; padding: 16px; }
    .bonus-card__header img { max-width: 130px; max-height: 50px; }
    .bonus-card__body { padding: 16px; }
    .bonus-card__amount { font-size: 18px; }
}

/* === HERO BLOCK для детальной страницы === */
.bonus-hero {
    background: #204f95;
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}
.bonus-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}
.bonus-hero__top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.bonus-hero__logo {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.bonus-hero__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bonus-hero__heading h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.bonus-hero__heading p {
    font-size: 13px;
    opacity: 0.85;
    margin: 4px 0 0;
}

.bonus-hero__slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.bonus-hero__slots.has-two { grid-template-columns: 1fr 1fr; }

.bonus-hero-slot {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 20px;
}
.bonus-hero-slot__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 8px;
}
.bonus-hero-slot__amount {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
}
.bonus-hero-slot__promo {
    background: rgba(255,255,255,0.15);
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.bonus-hero-slot__promo-code {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 1.5px;
}
.bonus-hero-slot__promo-copy {
    background: #fff;
    color: #204f95;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.bonus-hero-slot__promo-copy:hover {
    background: #fff8e1;
    transform: translateY(-1px);
}
.bonus-hero-slot__params {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 13px;
}
.bonus-hero-slot__params li {
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.bonus-hero-slot__params li:last-child { border-bottom: none; }
.bonus-hero-slot__params li span:first-child { opacity: 0.8; }
.bonus-hero-slot__params li span:last-child { font-weight: 600; }

.bonus-hero-slot__cta {
    display: block;
    background: #ff5722;
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}
.bonus-hero-slot__cta:hover {
    background: #e64a19;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .bonus-hero { padding: 20px; }
    .bonus-hero__top { flex-direction: column; align-items: flex-start; text-align: left; }
    .bonus-hero__slots.has-two { grid-template-columns: 1fr; }
    .bonus-hero__heading h2 { font-size: 20px; }
    .bonus-hero-slot__amount { font-size: 17px; }
}

/* === HERO BLOCK для детальной страницы === */
.bonus-hero {
    background: #204f95;
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}
.bonus-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    pointer-events: none;
}
.bonus-hero__top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.bonus-hero__logo {
    flex-shrink: 0;
    width: 140px;
    height: 80px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.bonus-hero__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bonus-hero__heading h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}
.bonus-hero__heading p {
    font-size: 13px;
    opacity: 0.85;
    margin: 4px 0 0;
}

.bonus-hero__slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.bonus-hero__slots.has-two { grid-template-columns: 1fr 1fr; }

.bonus-hero-slot {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 20px;
}
.bonus-hero-slot__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 8px;
}
.bonus-hero-slot__amount {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
}
.bonus-hero-slot__promo {
    background: rgba(255,255,255,0.15);
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.bonus-hero-slot__promo-code {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 1.5px;
}
.bonus-hero-slot__promo-copy {
    background: #fff;
    color: #204f95;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.bonus-hero-slot__promo-copy:hover {
    background: #fff8e1;
    transform: translateY(-1px);
}
.bonus-hero-slot__params {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 13px;
}
.bonus-hero-slot__params li {
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.bonus-hero-slot__params li:last-child { border-bottom: none; }
.bonus-hero-slot__params li span:first-child { opacity: 0.8; }
.bonus-hero-slot__params li span:last-child { font-weight: 600; }

.bonus-hero-slot__cta {
    display: block;
    background: #ff5722;
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}
.bonus-hero-slot__cta:hover {
    background: #e64a19;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .bonus-hero { padding: 20px; }
    .bonus-hero__top { flex-direction: column; align-items: flex-start; text-align: left; }
    .bonus-hero__slots.has-two { grid-template-columns: 1fr; }
    .bonus-hero__heading h2 { font-size: 20px; }
    .bonus-hero-slot__amount { font-size: 17px; }
}

/* === HERO FIX — усиление специфичности === */
.bonus-hero {
    color: #fff !important;
}
.bonus-hero h2,
.bonus-hero h3,
.bonus-hero p,
.bonus-hero span,
.bonus-hero li,
.bonus-hero ul,
.bonus-hero div {
    color: #fff !important;
}
.bonus-hero h2 {
    margin: 0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}
.bonus-hero .bonus-hero__slots {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 8px !important;
}
.bonus-hero .bonus-hero__slots.has-two {
    grid-template-columns: 1fr 1fr !important;
}
.bonus-hero .bonus-hero-slot {
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    padding: 20px !important;
}
.bonus-hero .bonus-hero-slot__label {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 0.85 !important;
    margin-bottom: 8px !important;
}
.bonus-hero .bonus-hero-slot__amount {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
}
.bonus-hero .bonus-hero-slot__promo {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    background: rgba(255,255,255,0.15) !important;
    border: 2px dashed rgba(255,255,255,0.5) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    margin-bottom: 14px !important;
    flex-wrap: wrap !important;
}
.bonus-hero .bonus-hero-slot__promo-code {
    font-size: 18px !important;
    font-weight: 700 !important;
    font-family: 'Courier New', monospace !important;
    letter-spacing: 1.5px !important;
}
.bonus-hero .bonus-hero-slot__promo-copy {
    background: #fff !important;
    color: #204f95 !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}
.bonus-hero .bonus-hero-slot__params {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 16px !important;
    font-size: 13px !important;
}
.bonus-hero .bonus-hero-slot__params li {
    list-style: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 4px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    margin: 0 !important;
}
.bonus-hero .bonus-hero-slot__params li::before,
.bonus-hero .bonus-hero-slot__params li::marker {
    display: none !important;
    content: none !important;
}
.bonus-hero .bonus-hero-slot__params li span {
    flex: none !important;
    padding: 0 !important;
}
.bonus-hero .bonus-hero-slot__params li span:first-child {
    opacity: 0.8 !important;
}
.bonus-hero .bonus-hero-slot__params li span:last-child {
    font-weight: 600 !important;
}
.bonus-hero .bonus-hero-slot__cta {
    display: block !important;
    background: #ff5722 !important;
    color: #fff !important;
    text-align: center !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    margin-top: 12px !important;
}
.bonus-hero .bonus-hero-slot__cta:hover {
    background: #e64a19 !important;
    color: #fff !important;
    text-decoration: none !important;
}
.bonus-hero .bonus-hero__logo {
    flex-shrink: 0 !important;
    width: 140px !important;
    height: 80px !important;
    background: #fff !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
}
.bonus-hero .bonus-hero__logo img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}
.bonus-hero .bonus-hero__top {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    margin-bottom: 24px !important;
}

@media (max-width: 767px) {
    .bonus-hero .bonus-hero__slots.has-two {
        grid-template-columns: 1fr !important;
    }
    .bonus-hero .bonus-hero__top {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* === Дата акции под логотипом === */
.bonus-card__header {
    flex-direction: column !important;
}
.bonus-card__date-badge {
    margin-top: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* === Белая шапка карточки + тёмная дата === */
.bonus-card__header {
    background: #fff !important;
    border-bottom: 1px solid #e5e7eb;
}
.bonus-card__date-badge {
    color: #6b7280 !important;
    text-shadow: none !important;
}

/* === Заголовок-ссылка "Eng yaxshi bonuslar" на главной === */
.home-page__bonuses h2 a,
.home-page__bonuses h2 a:hover {
    color: inherit;
    text-decoration: none;
}
