/* Pin Up Casino - style.css ver=1.7 */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'PT Sans', Arial, sans-serif;
    background-color: #323234;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: #00fbc8;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #00d9ac;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* unused legacy stubs for layout uniqueness */
.xk72a {
    display: none;
    visibility: hidden;
}

.lp93b {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.mz18c::after {
    content: '';
    display: block;
    clear: both;
}

.nr47d {
    float: left;
    width: 0;
    overflow: hidden;
}

.wp-block-spacer {
    display: block;
}

.entry-content {
    display: block;
}

.elementor-section {
    display: block;
}

.site-main {
    display: block;
}

/* === BUTTONS === */
.btn-login {
    background: transparent;
    border: 2px solid #00fbc8;
    color: #00fbc8;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-login:hover {
    background: #00fbc8;
    color: #000;
    transform: translateY(-1px);
}

.btn-signup {
    background: #ff2e09;
    border: 2px solid #ff2e09;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-signup:hover {
    background: #d42500;
    border-color: #d42500;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 46, 9, 0.4);
}

.btn-bonus {
    background: linear-gradient(135deg, #ff2e09, #ff6b35);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 46, 9, 0.5);
    color: #fff;
}

.btn-get-bonus {
    background: #00fbc8;
    color: #000;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-get-bonus:hover {
    background: #00d9ac;
    color: #000;
    transform: translateY(-2px);
}

/* === HEADER === */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.header-nav a {
    color: #c8c8c8;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: #00fbc8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.online-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #888;
    white-space: nowrap;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #00fbc8;
    border-radius: 50%;
    animation: pulse-dot 1.6s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* burger */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.burger-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav drawer */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    z-index: 999;
    padding: 20px 24px;
    border-bottom: 1px solid #222;
    flex-direction: column;
    gap: 16px;
    animation: slideDown 0.2s ease;
}

.mobile-nav-drawer.is-open {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-drawer .mnav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.mobile-nav-drawer .mnav-links a {
    color: #c8c8c8;
    font-size: 1rem;
    padding: 6px 0;
    border-bottom: 1px solid #1c1c1c;
    display: block;
}

/* === HERO SLIDER === */
#hero-section {
    margin-top: 64px;
    position: relative;
    overflow: hidden;
    background: #1a1a1c;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
}

.hero-slide.is-active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-slide-inner {
    text-align: center;
    padding: 60px 24px;
    background: rgba(0, 0, 0, 0.52);
    width: 100%;
}

.hero-slide-inner h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-slide-inner .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #d4f7f1;
    margin-bottom: 28px;
}

.hero-slide-inner .bonus-tag {
    display: inline-block;
    background: #ff2e09;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.slider-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}

.slider-dot.is-active {
    background: #00fbc8;
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.2s;
}

.slider-arrow:hover {
    background: rgba(0, 251, 200, 0.3);
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

/* === MAIN CONTENT WRAPPER === */
#main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* content blocks spacing */
.c-block {
    margin-bottom: 48px;
}

/* block heading */
.c-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00fbc8;
    display: inline-block;
}

/* === CASINO INFO TABLE === */
.casino-info-wrap {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.casino-info-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #1e1e20;
    border-radius: 10px;
    overflow: hidden;
}

.casino-info-table th,
.casino-info-table td {
    padding: 12px 18px;
    text-align: left;
    border-bottom: 1px solid #2d2d2f;
    font-size: 0.93rem;
}

.casino-info-table th {
    color: #00fbc8;
    font-weight: 700;
    width: 38%;
    background: #141416;
}

.casino-info-table td {
    color: #d8d8d8;
}

.casino-info-table tr:last-child th,
.casino-info-table tr:last-child td {
    border-bottom: none;
}

.casino-info-table tr:hover td {
    background: rgba(0, 251, 200, 0.04);
}

/* === SCREENSHOTS === */
.screenshots-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.screenshot-item {
    flex: 0 0 calc(33.333% - 12px);
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2d2d2f;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.screenshot-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 700px) {
    .screenshot-item {
        flex: 0 0 80vw;
    }
}

/* === WINNERS TABLE === */
.winners-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.winners-table {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
    background: #1e1e20;
}

.winners-table th {
    background: #141416;
    color: #00fbc8;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.88rem;
    border-bottom: 1px solid #2d2d2f;
}

.winners-table td {
    padding: 10px 16px;
    font-size: 0.88rem;
    color: #d0d0d0;
    border-bottom: 1px solid #222;
}

.winners-table tr:last-child td {
    border-bottom: none;
}

.winners-table tr:hover td {
    background: rgba(255, 46, 9, 0.06);
}

.winners-table .rank-1 td {
    color: #ffd700;
    font-weight: 700;
}

.winners-table .rank-2 td {
    color: #c0c0c0;
}

.winners-table .rank-3 td {
    color: #cd7f32;
}

.win-amount {
    color: #00fbc8;
    font-weight: 700;
}

/* === WHEEL OF FORTUNE === */
.wheel-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 20px;
    background: #1a1a1c;
    border-radius: 14px;
    border: 1px solid #2d2d2f;
}

.wheel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wheel-canvas {
    border-radius: 50%;
    box-shadow: 0 0 32px rgba(0, 251, 200, 0.25), 0 0 0 4px #000, 0 0 0 6px #333;
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 22px solid #ff2e09;
    filter: drop-shadow(0 2px 4px rgba(255, 46, 9, 0.6));
}

.wheel-result {
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wheel-result .result-text {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.wheel-result .result-win {
    font-size: 1.3rem;
    color: #00fbc8;
    font-weight: 700;
}

.wheel-result .result-lose {
    font-size: 1.1rem;
    color: #ff6b6b;
}

/* === REVIEWS === */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}

.review-card {
    background: #1e1e20;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #2d2d2f;
    transition: box-shadow 0.2s, transform 0.2s;
}

.review-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #2d2d2f;
    flex-shrink: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00fbc8;
    font-weight: 700;
    overflow: hidden;
}

.review-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.75rem;
    color: #666;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.review-stars svg {
    fill: #ffd700;
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 0.88rem;
    color: #b8b8b8;
    line-height: 1.6;
}

/* review form */
.review-form-wrap {
    background: #1a1a1c;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #2d2d2f;
    max-width: 540px;
}

.review-form-wrap h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    background: #111;
    border: 1px solid #333;
    color: #e0e0e0;
    padding: 10px 14px;
    border-radius: 6px;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00fbc8;
}

.form-group textarea {
    min-height: 90px;
}

.form-success {
    display: none;
    background: rgba(0, 251, 200, 0.1);
    border: 1px solid #00fbc8;
    color: #00fbc8;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
}

/* === CONTENT REVIEW BLOCK (raw HTML, no classes) === */
#review-content-block {
    line-height: 1.7;
    color: #d0d0d0;
}

#review-content-block h1,
#review-content-block h2,
#review-content-block h3,
#review-content-block h4,
#review-content-block h5,
#review-content-block h6 {
    color: #fff;
    margin: 1.4em 0 0.5em;
    line-height: 1.3;
}

#review-content-block h2 {
    font-size: 1.4rem;
    border-bottom: 1px solid #2d2d2f;
    padding-bottom: 6px;
}

#review-content-block h3 {
    font-size: 1.15rem;
    color: #00fbc8;
}

#review-content-block p {
    margin-bottom: 1em;
}

#review-content-block ul,
#review-content-block ol {
    margin: 0.8em 0 0.8em 1.5em;
}

#review-content-block li {
    margin-bottom: 0.4em;
}

#review-content-block a {
    color: #00fbc8;
    text-decoration: underline;
}

#review-content-block blockquote {
    border-left: 3px solid #00fbc8;
    padding: 10px 18px;
    background: rgba(0, 251, 200, 0.05);
    margin: 1em 0;
    color: #bbb;
    font-style: italic;
}

#review-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    overflow-x: auto;
    display: block;
}

#review-content-block table th,
#review-content-block table td {
    padding: 10px 14px;
    border: 1px solid #333;
    text-align: left;
    font-size: 0.9rem;
}

#review-content-block table th {
    background: #141416;
    color: #00fbc8;
}

#review-content-block strong {
    color: #fff;
}

#review-content-block code {
    background: #111;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #00fbc8;
}

/* === FOOTER === */
#site-footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 48px 20px 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    margin-bottom: 36px;
}

.footer-logo img {
    height: 38px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.82rem;
    color: #666;
    max-width: 260px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.85rem;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: #666;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #00fbc8;
}

.footer-payments,
.footer-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.payment-badge,
.provider-badge {
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
}

.payment-badge:hover,
.provider-badge:hover {
    border-color: #333;
    color: #aaa;
}

.footer-divider {
    border: none;
    border-top: 1px solid #1a1a1a;
    margin: 24px 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.footer-legal {
    font-size: 0.75rem;
    color: #444;
    line-height: 1.7;
    max-width: 700px;
}

.footer-legal a {
    color: #555;
    text-decoration: underline;
}

.footer-legal a:hover {
    color: #888;
}

.footer-copyright {
    font-size: 0.78rem;
    color: #444;
    text-align: right;
}

/* === WIDGET === */
#bottom-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #000;
    border-top: 2px solid #ff2e09;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(255, 46, 9, 0.2);
}

.widget-text {
    font-size: 0.9rem;
    color: #e0e0e0;
    font-weight: 400;
}

.widget-text strong {
    color: #00fbc8;
}

.widget-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.widget-close:hover {
    color: #aaa;
}

/* === FAQ === */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #1e1e20;
    border: 1px solid #2d2d2f;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #e0e0e0;
    padding: 16px 20px;
    text-align: left;
    font-family: 'PT Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #00fbc8;
}

.faq-question .faq-arrow {
    font-size: 0.8rem;
    color: #00fbc8;
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.is-open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.7;
    padding: 0 20px;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
    padding: 0 20px 16px;
}

/* === AUTHOR BLOCK === */
.author-block {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #1a1a1c;
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid #2d2d2f;
    margin-top: 24px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #00fbc8;
}

.author-info h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info p {
    color: #aaa;
    font-size: 0.82rem;
    line-height: 1.6;
}

.author-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.author-links a {
    font-size: 0.82rem;
    color: #00fbc8;
    text-decoration: underline;
}

/* === BREADCRUMB === */
.breadcrumb-nav {
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: #666;
}

.breadcrumb-nav a {
    color: #666;
}

.breadcrumb-nav a:hover {
    color: #00fbc8;
}

.breadcrumb-nav span {
    color: #888;
    margin: 0 6px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-copyright {
        text-align: left;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .author-block {
        flex-direction: column;
    }

    .review-form-wrap {
        padding: 20px;
    }

    .wheel-section-inner {
        padding: 20px 12px;
    }

    #wheel-canvas {
        width: 280px !important;
        height: 280px !important;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0 12px;
    }

    #bottom-widget {
        padding: 8px 40px 8px 12px;
        gap: 8px;
    }

    .widget-text {
        font-size: 0.8rem;
    }

    .btn-bonus, .btn-get-bonus {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
}

/* unused WP/Elementor stubs */
.elementor-widget-wrap {
    display: block;
}

.elementor-element {
    display: block;
}

.wp-block-group {
    display: block;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.yoast-seo-placeholder {
    display: none;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.ohndbd {
    max-width: 960px;
    margin: 48px auto;
    padding: 42px;
    background: linear-gradient(180deg, #1e1e20, #141416);
    border: 1px solid rgba(0, 251, 200, 0.25);
    border-radius: 12px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
}

.ohndbd h1 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 22px;
    color: #fff;
}

.ohndbd h2 {
    font-size: clamp(20px, 3vw, 28px);
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #2d2d2f;
    color: #fff;
}

.ohndbd p {
    margin-bottom: 16px;
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.75;
}

.ohndbd ul {
    margin: 16px 0;
    padding-left: 20px;
}

.ohndbd li {
    margin-bottom: 8px;
    color: #c8c8c8;
    line-height: 1.6;
}

.ohndbd a {
    color: #00fbc8;
    font-weight: 600;
    word-break: break-word;
}

@media (max-width: 768px) {
    .ohndbd {
        margin: 28px 14px;
        padding: 24px 18px;
        border-radius: 8px;
    }

    .ohndbd p {
        font-size: 15px;
        line-height: 1.7;
    }

    .ohndbd h2 {
        margin-top: 26px;
    }
}

@media (max-width: 480px) {
    .ohndbd {
        margin: 20px 10px;
        padding: 20px 14px;
    }

    .ohndbd h1 {
        margin-bottom: 18px;
    }
}

.bonuses-section-az3 {
    margin-top: 48px;
}

.bonus-cards-row {
    align-items: stretch;
}

.bonus-card-xm5 {
    background: linear-gradient(180deg, #1e1e20, #141416);
    border: 1px solid rgba(0, 251, 200, 0.2);
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    height: 100%;
}

.bonus-card-xm5:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 251, 200, 0.4);
    box-shadow: 0 10px 40px rgba(0, 251, 200, 0.15);
}

.bonus-icon-q2k {
    font-size: 34px;
}

.bonus-name-az {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.bonus-amount-xp {
    font-size: 26px;
    font-weight: 800;
    color: #00fbc8;
}

.bonus-desc-t3x {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.6;
}

.bonus-card-xm5 .btn {
    margin-top: auto;
    padding: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .bonus-cards-row {
        display: flex !important;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 6px 10px;
        scroll-snap-type: x mandatory;
    }

    .bonus-cards-row::-webkit-scrollbar {
        display: none;
    }

    .bonus-cards-row .col-12 {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
    }

    .bonus-card-xm5 {
        padding: 18px 14px !important;
        border-radius: 10px;
    }

    .bonus-name-az {
        font-size: 16px;
    }

    .bonus-amount-xp {
        font-size: 22px;
    }

    .bonus-desc-t3x {
        font-size: 13.5px;
    }

    .bonus-card-xm5 .btn {
        width: 100%;
        padding: 9px;
    }
}

@media (max-width: 480px) {
    .bonus-cards-row .col-12 {
        flex: 0 0 90%;
        max-width: 90%;
    }
}

.bonus-card-xm5 .btn {
    background: linear-gradient(135deg, #00fbc8, #00d9ac);
    color: #000 !important;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 251, 200, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bonus-card-xm5 .btn:hover {
    background: linear-gradient(135deg, #00d9ac, #00fbc8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 251, 200, 0.5);
    color: #000 !important;
}

.bonus-card-xm5 .btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 251, 200, 0.4);
}

@media (max-width: 768px) {
    .bonus-card-xm5 .btn {
        font-size: 14px;
        padding: 10px;
    }
}