/*
Theme Name: LuckyKing Blog Theme
Theme URI: https://luckykingph1.org/
Description: Premium LuckyKing brand theme with purple glass aesthetic. Designed for LuckyKing PH - Your Gateway to Top Slots and Daily Rewards.
Author: LuckyKing PH
Author URI: https://luckykingph1.org/
Template: hello-elementor
Version: 2.0.0
Text Domain: luckyking-blog
License: GNU General Public License v2 or later
Tags: blog, glass, purple, premium, full-width, luckyking, slots, gaming
*/

:root {
    /* LUCKY KING BRAND COLORS */
    --lk-purple: #BDA8FD;
    --lk-purple-dark: #A890E0;
    --lk-purple-light: #D5C4FF;
    --lk-accent: #C0ACFE;
    --lk-white: #FFFFFF;
    --lk-black: #000000;
    --lk-gray: #333333;
    --lk-light-gray: #666666;
    --lk-gold: #F5D742;
    
    /* DESIGN TOKENS */
    --cb-radius: 20px;
    --cb-glass-blur: 24px;
    --cb-glass-bg: rgba(255, 255, 255, 0.50);
    --cb-container-padding: 20px;
    --cb-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --cb-maxw: 100%;
}

/* ---------- BASE ---------- */
body.cb-body {
    margin: 0;
    color: var(--lk-black);
    font-family: var(--cb-font);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: var(--lk-purple);
}

/* BACKGROUND IMAGE */
body.cb-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: url('https://luckykingph1.org/wp-content/uploads/2026/08/website-background.webp') center center / cover no-repeat;
    opacity: 0.85;
}

body.cb-body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(189, 168, 253, 0.25);
}

.cb-body * {
    position: relative;
    z-index: 1;
}

.cb-body a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cb-container {
    max-width: 100%;
    margin: 0;
    padding: 0 var(--cb-container-padding);
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--cb-font);
    color: var(--lk-black);
    line-height: 1.25;
}

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

/* ---------- GLASS EFFECT ---------- */
.cb-featured, .cb-card, .cb-widget, 
.cb-author, .cb-comments .comment-body, .cb-comments .comment-form,
.cb-article blockquote, .cb-article pre, .cb-article table,
.cb-single-media, .cb-404 .cb-searchform, .cb-searchbar,
.cb-pagination .page-numbers, .cb-tags a, .cb-widget select,
.cb-widget .wp-block-search__input,
.cb-searchform input[type="search"], .cb-searchform input[type="text"],
.cb-comments input[type="text"], .cb-comments input[type="email"],
.cb-comments input[type="url"], .cb-comments textarea {
    background: var(--cb-glass-bg) !important;
    backdrop-filter: blur(var(--cb-glass-blur)) !important;
    -webkit-backdrop-filter: blur(var(--cb-glass-blur)) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: var(--cb-radius) !important;
}

/* TRANSPARENT BACKGROUND - No glass effect */
.cb-page,
.cb-home-intro,
.cb-home-rest,
.cb-hero-header,
.cb-hero-section .cb-container {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.cb-card, .cb-widget, .cb-author, .cb-comments .comment-body {
    border-radius: 16px !important;
}

/* ---------- HEADER - PREMIUM GLASS ---------- */
.cb-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.cb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 90px;
    padding: 0 var(--cb-container-padding);
    max-width: 100%;
    margin: 0;
    width: 100%;
}

/* LOGO */
.cb-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
}

.cb-logo img, .cb-logo .custom-logo {
    height: 42px;
    width: auto;
    display: block;
}

.cb-logo-text {
    font-weight: 800;
    font-size: 26px;
    color: var(--lk-black);
    letter-spacing: -0.5px;
    line-height: 1;
}

.cb-logo-text .highlight {
    color: var(--lk-white);
}

/* LOGO WRAPPER - for mobile centering */
.cb-logo-wrapper {
    display: contents;
}

/* NAVIGATION */
.cb-nav {
    margin-left: auto;
}

.cb-nav ul {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.cb-nav a {
    display: block;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    position: relative;
}

.cb-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--lk-white);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.cb-nav a:hover::after,
.cb-nav .current-menu-item > a::after {
    width: 60%;
}

.cb-nav a:hover,
.cb-nav .current-menu-item > a {
    color: var(--lk-black);
    background: rgba(255, 255, 255, 0.12);
}

/* HEADER BUTTONS */
.cb-header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.cb-btn-login {
    background: #FFFFFF !important;
    color: #C0ACFE !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 26px;
    border-radius: 50px;
    border: 2px solid #C0ACFE !important;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.cb-btn-login:hover {
    background: #C0ACFE !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 172, 254, 0.25);
}

.cb-btn-register {
    background: #C0ACFE !important;
    color: #000000 !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 26px;
    border-radius: 50px;
    border: 2px solid #C0ACFE !important;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(192, 172, 254, 0.2);
}

.cb-btn-register:hover {
    background: #FFFFFF !important;
    color: #C0ACFE !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 172, 254, 0.15);
}

/* BURGER MENU */
.cb-burger {
    display: none;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    color: var(--lk-black);
    width: 44px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    flex: 0 0 auto;
}

.cb-burger:hover {
    background: rgba(255, 255, 255, 0.20) !important;
}

/* ---------- SEARCH FORM ---------- */
.cb-searchform {
    display: flex;
    gap: 10px;
}

.cb-searchform input[type="search"],
.cb-searchform input[type="text"] {
    flex: 1;
    padding: 12px 18px;
    font-size: 14px;
    font-family: inherit;
    color: var(--lk-black);
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
}

.cb-searchform input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.cb-searchform input:focus {
    outline: none;
    border-color: var(--lk-white) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.cb-searchform button {
    flex: 0 0 auto;
}

/* ---------- BUTTONS ---------- */
.cb-btn-primary {
    background: var(--lk-black) !important;
    color: var(--lk-white) !important;
    border-radius: 50px !important;
    padding: 12px 28px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cb-btn-primary:hover {
    background: var(--lk-gray) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cb-btn-ghost {
    background: transparent !important;
    border: 2px solid var(--lk-black) !important;
    color: var(--lk-black) !important;
    border-radius: 50px !important;
    padding: 12px 28px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cb-btn-ghost:hover {
    background: var(--lk-black) !important;
    color: var(--lk-white) !important;
    transform: translateY(-2px);
}

.cb-badge {
    background: rgba(255, 255, 255, 0.20) !important;
    color: var(--lk-black) !important;
    border-radius: 50px !important;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
}

/* ---------- FOOTER - LUCKY KING BRAND ---------- */
.cb-footer {
    background: rgba(255, 255, 255, 0.80) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 50px 0 30px;
    margin-top: 40px;
    width: 100%;
}

.cb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 100%;
    margin: 0;
    padding: 0 var(--cb-container-padding);
    width: 100%;
}

.cb-footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cb-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.cb-footer-brand-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--lk-black);
    margin: 0;
}

.cb-footer-brand-name span {
    color: var(--lk-accent);
}

.cb-footer-tagline {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 4px;
    line-height: 1.6;
}

.cb-footer-copy {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.35);
    margin: 6px 0 0;
}

.cb-footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--lk-black);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cb-footer-title::after {
    content: '';
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--lk-black);
    margin-top: 6px;
    border-radius: 3px;
}

.cb-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cb-footer-menu li {
    margin: 0;
    padding: 0;
}

.cb-footer-menu a {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    padding: 3px 0;
}

.cb-footer-menu a:hover {
    color: var(--lk-black);
    transform: translateX(4px);
}

.cb-footer-about-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.7;
}

.cb-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.cb-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--lk-black);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cb-footer-social a:hover {
    background: var(--lk-black);
    color: var(--lk-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

/* ---------- LAYOUT ---------- */
.cb-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    padding: 40px 0 60px;
    width: 100%;
}

.cb-main {
    min-width: 0;
}

/* ---------- PAGE HEAD ---------- */
.cb-page-head {
    padding: 30px 0 10px;
}

.cb-breadcrumb {
    font-size: 12.5px;
    color: #fff;
    margin-bottom: 10px;
}

.cb-breadcrumb a {
    color: #fff;
}

.cb-breadcrumb a:hover {
    color: var(--lk-black);
}

.cb-breadcrumb span {
    color: rgba(0, 0, 0, 0.4);
}

.cb-archive-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin: 0;
    color: var(--lk-black);
}

.cb-archive-desc {
    color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    max-width: 680px;
}

/* ---------- FEATURED POST ---------- */
.cb-featured {
    overflow: hidden;
    margin-bottom: 34px;
    width: 100%;
}

.cb-featured-media {
    position: relative;
    background: rgba(0, 0, 0, 0.04);
}

.cb-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-featured-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--lk-black);
    font-weight: 800;
    font-size: 46px;
    opacity: 0.2;
}

.cb-featured-body {
    padding: 24px 28px 28px;
}

.cb-featured-title {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    margin: 12px 0 10px;
    line-height: 1.2;
    color: var(--lk-black);
}

.cb-featured-title a {
    color: var(--lk-black);
}

.cb-featured-title a:hover {
    color: var(--lk-black);
    text-decoration: underline;
}

.cb-featured-excerpt {
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 18px;
}

/* ---------- POST GRID ---------- */
.cb-section-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lk-black);
}

.cb-section-title::before {
    content: '';
    width: 18px;
    height: 3px;
    border-radius: 3px;
    background: var(--lk-black);
    display: inline-block;
}

.cb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.cb-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    width: 100%;
}

.cb-card:hover {
    transform: translateY(-5px);
    border-color: var(--lk-black) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.cb-card-media {
    aspect-ratio: 16/9;
    background: rgba(0, 0, 0, 0.04);
}

.cb-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-card-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--lk-black);
    font-weight: 800;
    font-size: 30px;
    opacity: 0.2;
}

.cb-card-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.cb-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--lk-black);
}

.cb-card-title a {
    color: var(--lk-black);
}

.cb-card-title a:hover {
    color: var(--lk-black);
    text-decoration: underline;
}

.cb-card-excerpt {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    margin: 0;
}

.cb-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: rgba(0, 0, 0, 0.4);
    font-size: 12.5px;
    margin-top: auto;
}

.cb-meta .cb-dot {
    opacity: 0.4;
}

.cb-meta a {
    color: rgba(0, 0, 0, 0.4);
}

.cb-meta a:hover {
    color: var(--lk-black);
}

/* ---------- PAGINATION ---------- */
.cb-pagination {
    margin-top: 34px;
}

.cb-pagination .nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.cb-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.cb-pagination .page-numbers.current {
    background: var(--lk-black) !important;
    color: var(--lk-white) !important;
    border-color: var(--lk-black) !important;
}

.cb-pagination a.page-numbers:hover {
    color: var(--lk-black);
    border-color: var(--lk-black) !important;
}

/* ---------- SIDEBAR ---------- */
.cb-sidebar {
    min-width: 0;
}

.cb-widget {
    padding: 22px;
    margin-bottom: 24px;
    width: 100%;
}

.cb-widget-title {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--lk-black);
}

.cb-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cb-rp {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cb-rp:first-child {
    border-top: none;
    padding-top: 0;
}

.cb-rp-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
}

.cb-rp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cb-rp-title {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 4px;
    color: var(--lk-black);
}

.cb-rp-title a {
    color: var(--lk-black);
}

.cb-rp-title a:hover {
    color: var(--lk-black);
    text-decoration: underline;
}

.cb-rp-date {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

.cb-cats li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 14px;
}

.cb-cats li:first-child {
    border-top: none;
}

.cb-cats a {
    color: rgba(0, 0, 0, 0.55);
}

.cb-cats a:hover {
    color: var(--lk-black);
}

.cb-cats .cb-count {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 1px 10px;
}

.cb-widget a {
    color: rgba(0, 0, 0, 0.55);
}

.cb-widget a:hover {
    color: var(--lk-black);
}

/* ---------- SINGLE POST ---------- */
.cb-single-head {
    max-width: 820px;
}

.cb-single-title {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    margin: 12px 0 14px;
    color: var(--lk-black);
}

.cb-single-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    margin-bottom: 22px;
}

.cb-single-meta a {
    color: rgba(0, 0, 0, 0.5);
}

.cb-single-meta a:hover {
    color: var(--lk-black);
}

.cb-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
    flex: 0 0 auto;
}

.cb-single-media {
    overflow: hidden;
    margin: 0 0 28px;
    width: 100%;
}

.cb-single-media img {
    width: 100%;
}

.cb-article {
    font-size: var(--cb-article-size, 16.5px);
    color: var(--lk-gray);
}

.cb-article p {
    margin: 0 0 1.15em;
    color: var(--lk-gray);
}

.cb-article h2 {
    font-size: 26px;
    margin: 1.5em 0 0.5em;
    color: var(--lk-black);
}

.cb-article h3 {
    font-size: 20px;
    margin: 1.3em 0 0.5em;
    color: var(--lk-black);
}

.cb-article a {
    color: var(--lk-black);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cb-article a:hover {
    color: var(--lk-gray);
}

.cb-article blockquote {
    margin: 1.4em 0;
    padding: 6px 24px;
    border-left: 3px solid var(--lk-black);
    color: var(--lk-black);
    font-style: italic;
}

.cb-article blockquote p {
    color: var(--lk-black);
}

.cb-article ul li,
.cb-article ol li {
    color: var(--lk-gray);
}

.cb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0;
}

.cb-tags a {
    font-size: 12.5px;
    color: rgba(0, 0, 0, 0.5);
    padding: 5px 14px;
}

.cb-tags a:hover {
    border-color: var(--lk-black) !important;
    color: var(--lk-black);
}

.cb-author {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    margin: 28px 0;
    width: 100%;
}

.cb-author .cb-avatar {
    width: 56px;
    height: 56px;
}

.cb-author-name {
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--lk-black);
}

.cb-author-bio {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    margin: 0;
}

.cb-related {
    margin-top: 40px;
}

/* ---------- COMMENTS ---------- */
.cb-comments {
    margin-top: 40px;
}

.cb-comments .comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cb-comments .comment-body {
    padding: 16px 20px;
    margin: 0 0 16px;
    width: 100%;
}

.cb-comments .comment-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--lk-black);
}

.cb-comments .comment-author a {
    color: var(--lk-black);
}

.cb-comments .comment-author a:hover {
    color: var(--lk-black);
    text-decoration: underline;
}

.cb-comments .comment-metadata {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
}

.cb-comments .comment-metadata a {
    color: rgba(0, 0, 0, 0.4);
}

.cb-comments .comment-metadata a:hover {
    color: var(--lk-black);
}

/* ---------- PAGE ---------- */
.cb-page {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(22px, 3vw, 32px);
    width: 100%;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

.cb-page-title {
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 800;
    margin: 0 0 18px;
    color: var(--lk-black);
}

/* ---------- BLOG HOME ---------- */
.cb-home-intro,
.cb-home-rest {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: clamp(22px, 3vw, 32px);
    width: 100%;
}

.cb-home-intro .cb-page-title {
    margin-bottom: 12px;
}

.cb-home-banner {
    padding-top: 30px;
    width: 100%;
}

.cb-home-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.cb-banner-link {
    display: block;
}

.cb-home-posts {
    padding: 26px 0;
    width: 100%;
}

.cb-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.cb-section-head .cb-section-title {
    margin: 0;
}

.cb-viewall-link {
    color: var(--lk-black);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.cb-viewall-link:hover {
    color: var(--lk-gray);
}

/* ---------- 404 ---------- */
.cb-404 {
    text-align: center;
    padding: 80px 0;
    width: 100%;
}

.cb-404 h1 {
    font-size: 90px;
    margin: 0;
    color: var(--lk-black);
}

.cb-404 p {
    color: rgba(0, 0, 0, 0.5);
}

.cb-404 .cb-searchform {
    max-width: 420px;
    margin: 24px auto 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* DESKTOP - 200px margin both sides */
@media (min-width: 1025px) {
    :root {
        --cb-container-padding: 200px;
    }
}

/* TABLET - 60px margin */
@media (max-width: 1024px) and (min-width: 769px) {
    :root {
        --cb-container-padding: 40px;
    }
    .cb-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .cb-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cb-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cb-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cb-sidebar {
        order: 2;
    }
    .cb-header-inner {
        height: 70px !important;
        gap: 12px !important;
    }
    .cb-btn-login,
    .cb-btn-register {
        padding: 6px 14px !important;
        font-size: 11px !important;
    }
}

/* MOBILE - 2 ROW HEADER */
@media (max-width: 768px) {
    :root {
        --cb-container-padding: 12px;
    }

    /* Header - 2 Rows */
    .cb-header-inner {
        flex-wrap: wrap !important;
        height: auto !important;
        padding: 10px 12px !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    /* LOGO - CENTERED ON MOBILE */
    .cb-logo {
        flex: 0 0 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        order: 1 !important;
        width: 100% !important;
        padding: 4px 0 !important;
        text-align: center !important;
    }

    .cb-logo img,
    .cb-logo .custom-logo {
        height: 36px !important;
        width: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .cb-logo-text {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }

    /* LOGO WRAPPER - DISABLE ON MOBILE PARA DI MAG-INTERFERE */
    .cb-logo-wrapper {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .cb-logo-wrapper .cb-logo {
        flex: 0 0 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 4px 0 !important;
        text-align: center !important;
    }

    .cb-logo-wrapper .cb-logo img,
    .cb-logo-wrapper .cb-logo .custom-logo {
        height: 36px !important;
        width: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .cb-logo-wrapper .cb-logo-text {
        font-size: 20px !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }

    /* Row 2: Login, Register, Menu - inline, full width */
    .cb-header-buttons {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        flex: 1 !important;
        order: 2 !important;
        width: 100% !important;
        padding: 4px 0 !important;
    }

    /* LOGIN BUTTON - LARGER */
    .cb-btn-login {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-width: 2px !important;
        flex: 1 !important;
        text-align: center !important;
        min-width: 0 !important;
        border-radius: 50px !important;
    }

    /* REGISTER BUTTON - LARGER */
    .cb-btn-register {
        padding: 12px 20px !important;
        font-size: 14px !important;
        border-width: 2px !important;
        flex: 1 !important;
        text-align: center !important;
        min-width: 0 !important;
        border-radius: 50px !important;
    }

    /* BURGER MENU - LARGER */
    .cb-burger {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 44px !important;
        font-size: 22px !important;
        flex: 0 0 auto !important;
        order: 3 !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-radius: 12px !important;
        cursor: pointer !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .cb-burger:hover {
        background: rgba(255, 255, 255, 0.20) !important;
    }

    /* Hide search toggle on mobile */
    .cb-search-toggle {
        display: none !important;
    }

    /* Nav dropdown */
    .cb-nav {
        display: none !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 100% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
        margin: 0 !important;
        padding: 12px 0 !important;
        z-index: 100 !important;
        width: 100% !important;
    }

    .cb-nav.is-open {
        display: block !important;
    }

    .cb-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 16px !important;
    }

    .cb-nav a {
        padding: 14px 16px !important;
        border-radius: 8px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
        font-size: 15px !important;
        color: rgba(0, 0, 0, 0.6) !important;
    }

    .cb-nav a::after {
        display: none !important;
    }

    .cb-nav a:hover,
    .cb-nav .current-menu-item > a {
        color: var(--lk-black) !important;
        background: rgba(0, 0, 0, 0.04) !important;
    }

    /* Grid - 1 column */
    .cb-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .cb-grid--3 {
        grid-template-columns: 1fr !important;
    }

    .cb-wrap {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 0 40px !important;
    }

    .cb-sidebar {
        order: 2 !important;
    }

    .cb-container {
        padding: 0 12px !important;
    }

    /* Featured post */
    .cb-featured-body {
        padding: 14px 16px 18px !important;
    }

    .cb-featured-title {
        font-size: 18px !important;
    }

    /* Cards */
    .cb-card-body {
        padding: 12px 14px 16px !important;
    }

    .cb-card-title {
        font-size: 14px !important;
    }

    .cb-card-excerpt {
        font-size: 13px !important;
    }

    /* Footer */
    .cb-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        padding: 0 12px !important;
    }

    .cb-footer-brand {
        grid-column: 1 / -1 !important;
        text-align: center !important;
    }

    .cb-footer-about {
        grid-column: 1 / -1 !important;
        text-align: center !important;
    }

    .cb-footer-title::after {
        margin: 6px auto 0 !important;
    }

    .cb-footer-menu {
        text-align: center !important;
    }

    .cb-footer-social {
        justify-content: center !important;
    }

    .cb-footer-logo {
        justify-content: center !important;
    }

    .cb-footer-col {
        align-items: center !important;
    }

    /* 404 */
    .cb-404 h1 {
        font-size: 50px !important;
    }

    .cb-404 {
        padding: 40px 0 !important;
    }

    /* Single */
    .cb-single-title {
        font-size: 22px !important;
    }

    /* Search */
    .cb-searchform {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .cb-searchform button {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Author box */
    .cb-author-premium {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 16px !important;
    }

    .cb-author-premium .cb-avatar {
        width: 48px !important;
        height: 48px !important;
    }

    .cb-author-premium .cb-author-name {
        justify-content: center !important;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .cb-header-inner {
        padding: 8px 10px !important;
        gap: 8px !important;
    }

    .cb-logo img,
    .cb-logo .custom-logo,
    .cb-logo-wrapper .cb-logo img,
    .cb-logo-wrapper .cb-logo .custom-logo {
        height: 30px !important;
    }

    .cb-logo-text,
    .cb-logo-wrapper .cb-logo-text {
        font-size: 18px !important;
    }

    .cb-btn-login,
    .cb-btn-register {
        padding: 10px 14px !important;
        font-size: 12px !important;
        border-width: 1.5px !important;
    }

    .cb-burger {
        width: 42px !important;
        height: 38px !important;
        font-size: 18px !important;
    }

    .cb-container {
        padding: 0 8px !important;
    }

    .cb-grid {
        gap: 10px !important;
    }

    .cb-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .cb-footer-brand {
        grid-column: 1 !important;
    }

    .cb-footer-about {
        grid-column: 1 !important;
    }

    .cb-footer-company {
        grid-column: 1 !important;
    }

    .cb-footer-legal {
        grid-column: 1 !important;
    }

    .cb-featured-title {
        font-size: 16px !important;
    }

    .cb-card-title {
        font-size: 13px !important;
    }

    .cb-card-excerpt {
        font-size: 12px !important;
    }

    .cb-meta {
        font-size: 10px !important;
    }

    .cb-section-title {
        font-size: 14px !important;
    }

    .cb-page-title {
        font-size: 18px !important;
    }

    .cb-single-title {
        font-size: 18px !important;
    }

    .cb-archive-title {
        font-size: 18px !important;
    }

    .cb-404 h1 {
        font-size: 36px !important;
    }

    .cb-widget {
        padding: 12px !important;
    }

    .cb-rp-thumb {
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
    }

    .cb-rp-title {
        font-size: 11px !important;
    }
}

/* EXTRA SMALL */
@media (max-width: 360px) {
    .cb-btn-login,
    .cb-btn-register {
        padding: 8px 10px !important;
        font-size: 10px !important;
    }

    .cb-burger {
        width: 36px !important;
        height: 34px !important;
        font-size: 16px !important;
    }

    .cb-logo img,
    .cb-logo .custom-logo,
    .cb-logo-wrapper .cb-logo img,
    .cb-logo-wrapper .cb-logo .custom-logo {
        height: 24px !important;
    }

    .cb-logo-text,
    .cb-logo-wrapper .cb-logo-text {
        font-size: 16px !important;
    }
}

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

/* ============================================================
   SIDEBAR APP WIDGET - BUTTON HOVER EFFECTS
   ============================================================ */

/* Download Now Button - Violet hover */
.cb-sidebar a[style*="background:#C0ACFE;color:#000000"]:hover {
    background: #A890E0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(192, 172, 254, 0.35) !important;
}

/* App Store & Google Play - White buttons hover */
.cb-sidebar a[style*="background:#FFFFFF;color:#000000;font-weight:600"]:hover {
    background: #F0F0F0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
}

/* ============================================================
   STICKY SIDEBAR - FORCE FIX
   ============================================================ */

/* Desktop only */
@media (min-width: 1025px) {
    #luckyking-sticky-widget {
        position: sticky !important;
        top: 100px !important;
        align-self: flex-start !important;
        z-index: 10 !important;
    }
    
    /* Make sidebar a flex container */
    .cb-sidebar {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    /* Other widgets should not be sticky */
    .cb-sidebar .cb-widget:not(#luckyking-sticky-widget) {
        position: relative !important;
    }
}

/* Disable sticky on tablet and mobile */
@media (max-width: 1024px) {
    #luckyking-sticky-widget {
        position: relative !important;
        top: auto !important;
        z-index: auto !important;
    }
}

/* ============================================================
   FORCE CENTER SIDEBAR WIDGETS ON MOBILE - BLOG ARCHIVE
   ============================================================ */

@media (max-width: 768px) {
    /* Force sidebar to be full width and centered */
    .cb-sidebar {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        margin: 20px 0 0 !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }

    /* Force all widgets to be full width */
    .cb-sidebar .cb-widget {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 18px !important;
    }

    /* Search form - full width with flex row */
    .cb-sidebar .cb-searchform {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .cb-sidebar .cb-searchform input[type="search"] {
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
    }

    .cb-sidebar .cb-searchform button {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        width: auto !important;
    }

    /* Recent posts - full width */
    .cb-sidebar .cb-rp {
        display: flex !important;
        gap: 12px !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    .cb-sidebar .cb-rp-thumb {
        flex: 0 0 60px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .cb-sidebar .cb-rp-title {
        font-size: 13px !important;
    }

    /* Categories - full width */
    .cb-sidebar .cb-cats li {
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    /* App widget - full width */
    .cb-sidebar .cb-app-widget {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
    }

    /* App Store buttons - 2 columns */
    .cb-sidebar .cb-app-store-buttons {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    /* Disable sticky on mobile */
    .cb-sidebar .cb-sidebar-sticky {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .cb-sidebar {
        padding: 0 6px !important;
    }

    .cb-sidebar .cb-widget {
        padding: 14px !important;
    }

    /* Search form - stack on very small */
    .cb-sidebar .cb-searchform {
        flex-direction: column !important;
        gap: 6px !important;
    }

    .cb-sidebar .cb-searchform button {
        width: 100% !important;
        justify-content: center !important;
    }

    /* App Store buttons - stack on very small */
    .cb-sidebar .cb-app-store-buttons {
        grid-template-columns: 1fr !important;
    }

    .cb-sidebar .cb-rp-thumb {
        flex: 0 0 50px !important;
        width: 50px !important;
        height: 50px !important;
    }

    .cb-sidebar .cb-rp-title {
        font-size: 12px !important;
    }
}

/* ============================================================
   HERO BANNER IMAGE - SMALLER
   ============================================================ */

.cb-hero-banner {
    width: 100%;
    max-width: 50%;
    margin: 0 auto 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cb-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .cb-hero-banner {
        max-width: 90%;
        margin-bottom: 16px;
        border-radius: 12px;
    }
    .cb-hero-banner img {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .cb-hero-banner {
        max-width: 100%;
        margin-bottom: 12px;
        border-radius: 10px;
    }
    .cb-hero-banner img {
        border-radius: 10px;
    }
}

/* ============================================================
   4 COLUMN IMAGES - SMALLER
   ============================================================ */

.cb-featured-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .cb-featured-columns {
        max-width: 80%;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .cb-featured-columns {
        grid-template-columns: repeat(2, 1fr);
        max-width: 90%;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .cb-featured-columns {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 2px;
    }
}

/* ============================================================
   MARQUEE SECTION - SUCCESSFUL WITHDRAWALS
   ============================================================ */

.cb-marquee-section {
    width: 70%;
    max-width: 70%;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.cb-marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

/* VOLUME ICON */
.cb-marquee-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 2;
    position: relative;
}

.cb-marquee-icon img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

/* MARQUEE TRACK */
.cb-marquee-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    min-height: 36px;
    align-items: center;
}

.cb-marquee-content {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    animation: marqueeScroll 35s linear infinite;
    flex-shrink: 0;
    padding: 4px 0;
}

/* MARQUEE ITEMS */
.cb-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 1.4;
    color: #000000;
}

.cb-marquee-user {
    color: #000000;
    font-weight: 500;
    font-family: monospace;
    letter-spacing: 0.5px;
}

.cb-marquee-text {
    color: #000000;
}

.cb-marquee-amount {
    color: #7549F0;
    font-weight: 700;
    font-size: 15px;
}

.cb-marquee-separator {
    color: #CCCCCC;
    font-weight: 300;
    font-size: 14px;
    margin: 0 2px;
}

/* ANIMATION */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* HOVER PAUSE */
.cb-marquee-section:hover .cb-marquee-content {
    animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cb-marquee-section {
        width: 85%;
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .cb-marquee-section {
        width: 100%;
        max-width: 100%;
        padding: 10px 14px;
        border-radius: 12px;
    }
    
    .cb-marquee-icon {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
    }
    
    .cb-marquee-icon img {
        width: 20px;
        height: 20px;
    }
    
    .cb-marquee-wrapper {
        gap: 12px;
    }
    
    .cb-marquee-content {
        animation-duration: 30s;
        gap: 16px;
    }
    
    .cb-marquee-item {
        font-size: 12px;
    }
    
    .cb-marquee-amount {
        font-size: 13px;
    }
    
    .cb-marquee-separator {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cb-marquee-section {
        width: 100%;
        max-width: 100%;
        padding: 8px 10px;
        border-radius: 10px;
    }
    
    .cb-marquee-icon {
        flex: 0 0 26px;
        width: 26px;
        height: 26px;
    }
    
    .cb-marquee-icon img {
        width: 18px;
        height: 18px;
    }
    
    .cb-marquee-wrapper {
        gap: 8px;
    }
    
    .cb-marquee-content {
        animation-duration: 25s;
        gap: 12px;
    }
    
    .cb-marquee-item {
        font-size: 11px;
    }
    
    .cb-marquee-amount {
        font-size: 12px;
    }
}