:root {
    --kyan-bg: #050B15;
    --kyan-bg-2: #071827;
    --kyan-card: #0B1C2E;
    --kyan-cyan: #00E5FF;
    --kyan-cyan-2: #00B8D4;
    --kyan-pink: #FF2EA6;
    --kyan-text: #FFFFFF;
    --kyan-muted: #9FB4C8;
    --kyan-border: rgba(0,229,255,.24);
    --kyan-soft: rgba(255,255,255,.12);
}

html, body {
    direction: rtl;
    background: var(--kyan-bg);
    color: var(--kyan-text);
    font-family: "IBM Plex Sans Arabic", "Space Grotesk", Tahoma, Arial, sans-serif !important;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6,
.product_title,
.kyan-logo,
.kyan-header a,
.kyan-btn {
    font-family: "IBM Plex Sans Arabic", "Space Grotesk", sans-serif !important;
}

.price, .amount, bdi {
    font-family: "Space Grotesk", "IBM Plex Sans Arabic", sans-serif !important;
}

.kyan-sar-symbol {
    width: .84em;
    height: .84em;
    display: inline-block;
    vertical-align: -0.08em;
    margin-inline: .14em;
    color: currentColor;
}

header.site-header,
footer.site-footer {
    display: none !important;
}

.kyan-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 30px;
    background: rgba(3, 12, 24, .92);
    border-bottom: 1px solid rgba(0,229,255,.18);
    box-shadow: 0 0 26px rgba(0,229,255,.10);
    backdrop-filter: blur(16px);
}

body.admin-bar .kyan-header {
    top: 32px;
}

.kyan-logo {
    color: var(--kyan-cyan);
    font-weight: 900;
    font-size: 23px;
    letter-spacing: .4px;
    text-decoration: none !important;
    text-shadow: 0 0 14px rgba(0,229,255,.25);
}

.kyan-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.kyan-nav a {
    color: #d7e8f7;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 15px;
    transition: .2s ease;
}

.kyan-nav a:hover {
    color: var(--kyan-cyan);
}

.kyan-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kyan-cart-link {
    color: var(--kyan-text);
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.kyan-cart-link:hover {
    color: var(--kyan-cyan);
}

.kyan-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--kyan-pink);
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.kyan-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--kyan-cyan), var(--kyan-cyan-2));
    color: #03121f !important;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 0 18px rgba(0,229,255,.24);
}

/* Footer styling */
.kyan-footer {
    margin-top: 70px;
    padding: 54px 30px 26px;
    background: #03121f;
    border-top: 1px solid rgba(0,229,255,.18);
}

.kyan-footer-inner {
    width: min(1180px, calc(100% - 24px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
}

.kyan-footer h3 {
    margin: 0 0 16px;
    color: var(--kyan-cyan);
    font-size: 20px;
    font-weight: 900;
}

.kyan-footer p,
.kyan-footer a {
    color: #a9bed1;
    font-size: 14px;
    line-height: 2.2;
    font-weight: 700;
    text-decoration: none !important;
}

.kyan-footer a:hover {
    color: var(--kyan-cyan);
}

.kyan-newsletter {
    margin-top: 24px;
}

.kyan-newsletter h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 15px;
}

.kyan-newsletter-form {
    display: flex;
    gap: 8px;
}

.kyan-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--kyan-border);
    background: var(--kyan-bg-2);
    color: white;
    border-radius: 6px;
    outline: none;
}

.kyan-newsletter-form button {
    padding: 10px 20px;
    background: var(--kyan-cyan);
    color: var(--kyan-bg);
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.kyan-copy {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    color: #7890a8;
    font-size: 13px;
}

@media (max-width: 768px) {
    body.admin-bar .kyan-header { top: 46px; }

    .kyan-header {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .kyan-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 18px;
        padding-top: 8px;
    }

    .kyan-logo { font-size: 19px; }
    .kyan-login { min-height: 38px; padding: 7px 14px; font-size: 13px; }

    .kyan-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .kyan-newsletter-form {
        flex-direction: column;
    }
}

.kyan-empty-state {
    padding: 40px;
    text-align: center;
    background: var(--kyan-bg-2);
    border: 1px solid var(--kyan-border);
    border-radius: 12px;
    margin: 40px auto;
    max-width: 600px;
}

.kyan-empty-state h3 {
    color: var(--kyan-cyan);
    margin-bottom: 12px;
}

/* Button utility classes */
.kyan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg,#00E5FF,#00B8D4);
    color: #03121f !important;
    font-weight: 900;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
}

.kyan-btn.pink {
    background: linear-gradient(135deg,#ff66c4,#ff2ea6);
    color: #fff !important;
}

.kyan-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
/* ══════════════════════════════════
   HOMEPAGE — Full-Bleed Landing
   ══════════════════════════════════ */
.kyan-home {
    direction: rtl;
    background: radial-gradient(circle at 50% 50%, rgba(11,28,46,.8) 0%, #050B15 100%), #050B15;
    color: #fff;
    padding: 0 0 60px;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow-x: hidden;
}

.kyan-grid-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0,229,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,.03) 1px, transparent 1px);
    background-size: 50px 50px; z-index: 0; pointer-events: none;
}

.kyan-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Force Astra container on homepage to be full-width and remove white strip before footer */
body.home, 
body.home #page, 
body.home .site, 
body.home .site-content, 
body.home .ast-container, 
body.home .entry-content, 
body.home .post, 
body.home .page, 
body.home .hentry {
    background-color: var(--kyan-bg) !important;
    background: var(--kyan-bg) !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

body.home .ast-container,
body.page-template-default .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.home .site-content { padding: 0 !important; margin: 0 !important; border-top: none !important; }

body.home .site-header,
body.home .main-header-bar,
body.home .ast-primary-header-bar {
    border-bottom: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

body.home .ast-builder-footer-wrapper, 
body.home .site-footer { margin-top: 0 !important; padding-top: 0 !important; background: var(--kyan-bg) !important; border: none !important; }
body.home .elementor-section-wrap { margin: 0 !important; padding: 0 !important; background: transparent !important; }

.kyan-card-glass {
    background: rgba(11,28,46,.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,229,255,.2);
    border-radius: 12px;
    transition: all .3s ease;
}
.kyan-card-glass:hover {
    border-color: #00E5FF;
    box-shadow: 0 0 20px rgba(0,229,255,.3);
}
.kyan-card-glass.border-pink { border-color: rgba(236,72,153,.4); }
.kyan-card-glass.border-pink:hover { border-color: #ec4899; box-shadow: 0 0 20px rgba(236,72,153,.3); }
.kyan-card-glass.border-cyan { border-color: rgba(0,229,255,.4); }
.kyan-card-glass.border-cyan:hover { border-color: #00E5FF; box-shadow: 0 0 20px rgba(0,229,255,.3); }

/* Buttons */
.kyan-btn-solid {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; background: #00E5FF; color: #020617 !important;
    font-weight: 900; border-radius: 8px; text-decoration: none !important;
    box-shadow: 0 0 15px rgba(0,229,255,.5); transition: all .3s; border: none; cursor: pointer;
}
.kyan-btn-solid:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(0,229,255,.7); color: #020617 !important; }
.kyan-btn-solid.pink { background: #ec4899; color: #fff !important; box-shadow: 0 0 15px rgba(236,72,153,.5); }
.kyan-btn-solid.pink:hover { box-shadow: 0 0 25px rgba(236,72,153,.7); color: #fff !important; }
.kyan-btn-solid.small { padding: 8px 16px; font-size: 11px; text-transform: uppercase; border-radius: 8px; }

/* 2. Hero */
.kyan-hero {
    position: relative; padding-top: 104px; margin-bottom: 48px; min-height: 400px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; border-radius: 24px; padding: 40px; border: 1px solid rgba(0,229,255,.2);
    background: #020617; box-shadow: 0 25px 50px -12px rgba(0,0,0,.5); overflow: hidden;
}
.kyan-hero-bg {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.2;
    background-image: radial-gradient(circle at 2px 2px, #00E5FF 1px, transparent 0); background-size: 32px 32px;
}
.kyan-hero-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(0,229,255,.1), transparent, #020617); }
.kyan-hero-content { position: relative; z-index: 2; width: 100%; max-width: 800px; }
.kyan-hero-content h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; margin: 0 0 16px; color: #fff; text-shadow: 0 0 10px rgba(0,229,255,.8); line-height: 1.2; }
.kyan-hero-content p { font-size: clamp(18px, 2.5vw, 24px); color: #00E5FF; font-weight: 700; opacity: 0.9; margin: 0 0 40px; }

.kyan-search {
    position: relative; max-width: 600px; margin: 0 auto; display: flex;
}
.kyan-search input {
    width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(0,229,255,.3);
    border-radius: 999px; padding: 16px 56px 16px 24px; color: #fff; outline: none;
    backdrop-filter: blur(4px); font-family: inherit; font-size: 16px; transition: all .3s;
}
.kyan-search input:focus { border-color: transparent; box-shadow: 0 0 0 2px #00E5FF; }
.kyan-search button {
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    background: transparent; border: none; color: #00E5FF; cursor: pointer; width: 24px; height: 24px; padding: 0;
}

/* 3. Features */
.kyan-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.kyan-feature { display: flex; justify-content: space-between; align-items: center; padding: 24px; overflow: hidden; position: relative; }
.kyan-feature h3 { margin: 0; font-size: 20px; font-weight: 800; z-index: 2; position: relative; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.2); }
.kyan-feature span { display: block; color: #00E5FF; font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; z-index: 2; position: relative; }
.kyan-feature-icon { font-size: 48px; color: #00E5FF; opacity: 0.5; transition: opacity .3s; z-index: 2; position: relative; }
.kyan-feature:hover .kyan-feature-icon { opacity: 1; }
.kyan-feature::after { content:""; position:absolute; bottom:-16px; left:-16px; width:96px; height:96px; background:rgba(0,229,255,.1); filter:blur(24px); border-radius:50%; z-index:1; }

/* 4. Promos */
.kyan-promos { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.kyan-promo { padding: 32px; position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: center; }
.kyan-promo-cyan { border-color: rgba(0,229,255,.4); background: linear-gradient(90deg, rgba(0,229,255,.2), transparent); }
.kyan-promo-pink { border-color: rgba(236,72,153,.4); background: linear-gradient(90deg, rgba(236,72,153,.2), transparent); }
.kyan-promo-content { z-index: 2; position: relative; }
.kyan-promo h3 { margin: 0 0 8px; font-size: 24px; font-weight: 900; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.2); }
.kyan-promo p { margin: 0 0 16px; color: #f8fafc; font-size: 14px; font-weight: 500; }
.kyan-promo-icon { font-size: 72px; opacity: 0.2; transition: opacity .3s; z-index: 1; }
.kyan-promo-cyan .kyan-promo-icon { color: #00E5FF; }
.kyan-promo-pink .kyan-promo-icon { color: #ec4899; }
.kyan-promo:hover .kyan-promo-icon { opacity: 0.4; }

/* 5. Categories */
.kyan-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 40px; }
.kyan-cat-box { flex: 1 1 140px; max-width: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-decoration: none !important; color: #fff !important; text-align: center; }
.kyan-cat-box:hover { background: rgba(0,229,255,.1); }
.kyan-cat-icon { font-size: 32px; color: #00E5FF; margin-bottom: 16px; transition: transform .3s; }
.kyan-cat-box:hover .kyan-cat-icon, .kyan-cat-box:hover .kyan-cat-img img { transform: scale(1.1); }
.kyan-cat-img img { transition: transform .3s; }
.kyan-cat-box span { font-size: 14px; font-weight: 700; }

/* 6. Flash Sale */
.kyan-flash-sale { padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.kyan-flash-info { flex: 1; min-width: 280px; text-align: right; }
.kyan-flash-title { font-size: 36px; font-weight: 900; color: #fff; font-style: italic; text-shadow: 0 0 10px rgba(0,229,255,.8); margin: 0 0 16px; }
.kyan-timer { display: flex; align-items: center; gap: 16px; }
.kyan-timer-box { background: #020617; border: 1px solid #00E5FF; border-radius: 8px; padding: 12px; width: 80px; text-align: center; box-shadow: 0 0 15px rgba(0,229,255,.5); }
.kyan-timer-box span { display: block; font-size: 30px; font-weight: 700; color: #00E5FF; line-height: 1; }
.kyan-timer-box small { font-size: 10px; color: #94a3b8; text-transform: uppercase; }
.kyan-timer-sep { font-size: 30px; font-weight: 700; color: #fff; }
.kyan-flash-products { flex: 2; display: flex; gap: 16px; min-width: 300px; justify-content: center; }
.kyan-flash-item { border-radius: 12px; padding: 12px; background: rgba(15,23,42,.5); max-width: 220px; flex: 1; display: flex; flex-direction: column; }
.kyan-flash-item .kyan-img { height: 120px; border-radius: 8px; margin-bottom: 12px; position: relative; }
.kyan-flash-badge { position: absolute; top: 4px; right: 4px; background: #00E5FF; color: #020617; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; z-index: 2; }
.kyan-flash-item .kyan-body { padding: 0; text-align: center; display: flex; flex-direction: column; flex: 1; }
.kyan-flash-item h3 { font-size: 13px; margin: 0 0 8px; }
.kyan-flash-item p { display: none; }
.kyan-flash-item .kyan-price-row { flex-direction: column; gap: 8px; margin-top: auto; justify-content: center; }
.kyan-flash-item .kyan-price { font-size: 14px; }
.kyan-flash-item .kyan-btn-solid { width: 100%; }

/* 7, 9, 11. Wide Banners */
.kyan-wide-banner {
    position: relative; overflow: hidden; min-height: 300px; display: flex; align-items: center; padding: 32px 64px; margin-bottom: 48px;
}
.kyan-wide-banner::before {
    content: ""; position: absolute; inset: 0; opacity: 0.2; pointer-events: none;
    background-image: radial-gradient(circle at 2px 2px, currentColor 1px, transparent 0); background-size: 24px 24px;
}
.kyan-wide-banner.border-cyan::before { color: #00E5FF; }
.kyan-wide-banner.border-pink::before { color: #ec4899; }
.kyan-banner-content { position: relative; z-index: 2; max-width: 600px; }
.kyan-banner-content h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; color: #fff; font-style: italic; text-shadow: 0 0 10px rgba(0,229,255,.8); margin: 0 0 16px; }
.kyan-banner-content h2.text-pink { text-shadow: 0 0 15px rgba(236,72,153,.8); }
.kyan-banner-content p { font-size: 18px; color: #cbd5e1; margin: 0 0 32px; }
.kyan-banner-icon-bg { position: absolute; left: 40px; top: 50%; transform: translateY(-50%); font-size: 200px; opacity: 0.3; color: #00E5FF; z-index: 1; }
.kyan-banner-icon-bg.icon-pink { color: #ec4899; }
.kyan-gaming-banner::after {
    content: ""; position: absolute; inset: 0; opacity: 0.1; background-size: cover; background-position: center; z-index: 0;
}

/* Sections */
.kyan-product-section { margin-bottom: 48px; }
.kyan-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.kyan-head h2 { font-size: 24px; font-weight: 900; margin: 0; padding-right: 16px; border-right: 4px solid #00E5FF; color: #fff; text-shadow: 0 0 10px rgba(0,229,255,0.4); }
.kyan-head h2.border-pink { border-color: #ec4899; }
.kyan-head a { font-size: 14px; color: #00E5FF !important; text-decoration: none !important; }
.kyan-head a:hover { text-decoration: underline !important; }
.kyan-head a.text-pink { color: #ec4899 !important; }

/* 8, 10. Product Grid */
.kyan-products {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.kyan-product {
    flex: 1 1 240px; max-width: 277px; overflow: hidden; padding: 20px;
    display: flex; flex-direction: column; border-radius: 18px;
}
.kyan-product .kyan-img {
    height: 240px; border-radius: 8px; background: #0B1C2E; border: 1px solid rgba(255,255,255,.05);
    display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 16px;
}
.kyan-product .kyan-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: all .3s; }
.kyan-product:hover .kyan-img img { opacity: 1; transform: scale(1.05); }
.kyan-product .kyan-body { flex: 1; display: flex; flex-direction: column; }
.kyan-product h3 { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.kyan-product h3 a { color: #fff !important; text-decoration: none !important; transition: color .3s; }
.kyan-product:hover h3 a { color: #00E5FF !important; }
.kyan-product p { font-size: 12px; color: #94a3b8; margin: 0 0 16px; }
.kyan-product .kyan-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.kyan-product .kyan-price { font-size: 16px; font-weight: 900; color: #00E5FF; }
.kyan-cart {
    width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.05);
    display: flex; align-items: center; justify-content: center; color: #fff !important;
    transition: all .3s; text-decoration: none !important;
}
.kyan-cart:hover { background: #00E5FF; color: #020617 !important; }

/* 12, 13. Stats and Reviews */
.kyan-section-title-center { text-align: center; font-size: 18px; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; margin: 0 0 40px; letter-spacing: 2px; }
.kyan-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 64px; }
.kyan-stat { text-align: center; padding: 32px; }
.kyan-stat-num { font-size: 48px; font-weight: 900; color: #00E5FF; text-shadow: 0 0 10px rgba(0,229,255,.8); margin-bottom: 8px; }
.kyan-stat-text { color: #94a3b8; font-weight: 700; }

.kyan-reviews-grid { display: flex; justify-content: center; gap: 24px; margin-bottom: 64px; }
.kyan-review { flex: 1; max-width: 384px; padding: 32px; border-right-width: 4px; border-right-style: solid; border-left: none; border-top: none; border-bottom: none; }
.kyan-review-head { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.kyan-avatar { width: 48px; height: 48px; border-radius: 50%; border: 1px solid #00E5FF; box-shadow: 0 0 15px rgba(0,229,255,.5); display: flex; align-items: center; justify-content: center; font-size: 24px; background: rgba(0,229,255,.1); }
.kyan-avatar.pink { border-color: #ec4899; box-shadow: 0 0 15px rgba(236,72,153,.5); background: rgba(236,72,153,.1); }
.kyan-review h4 { margin: 0; font-weight: 700; font-size: 16px; }
.kyan-stars { color: #fbbf24; font-size: 12px; }
.kyan-review p { color: #cbd5e1; font-size: 14px; line-height: 1.6; font-style: italic; margin: 0; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .kyan-features { grid-template-columns: repeat(2, 1fr); }
    .kyan-categories { grid-template-columns: repeat(3, 1fr); }
    .kyan-flash-sale { flex-direction: column; text-align: center; }
    .kyan-flash-info { text-align: center; }
    .kyan-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .kyan-wide-banner { padding: 32px; }
    .kyan-banner-icon-bg { display: none; }
}
@media (max-width: 768px) {
    .kyan-promos { grid-template-columns: 1fr; }
    .kyan-categories { grid-template-columns: repeat(2, 1fr); }
    .kyan-products { justify-content: center; }
    .kyan-flash-products { flex-direction: column; width: 100%; align-items: center; }
    .kyan-reviews-grid { flex-direction: column; align-items: center; }
    .hide-mobile { display: none; }
}

/* ══════════════════════════════════
   BLOG — Archive & Single Post
   ══════════════════════════════════ */
body.blog, body.single-post, body.archive:not(.post-type-archive-product),
body.category, body.tag, body.search-results {
    background:
        radial-gradient(circle at 50% 0%, rgba(0,229,255,.06), transparent 50%),
        linear-gradient(180deg, #050B15, #030814) !important;
    color: #fff !important;
}

body.blog .site-content, body.single-post .site-content,
body.blog .ast-container, body.single-post .ast-container,
body.blog #primary, body.single-post #primary {
    background: transparent !important;
}

/* Blog post cards in archive */
body.blog article, body.archive:not(.post-type-archive-product) article,
body.category article, body.tag article, body.search-results article {
    background: rgba(10,18,30,.65) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,229,255,.1) !important;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 24px !important;
    transition: all .3s;
}
body.blog article:hover, body.archive:not(.post-type-archive-product) article:hover {
    border-color: rgba(0,229,255,.35) !important;
    box-shadow: 0 0 20px rgba(0,229,255,.1);
}

/* Post image in archive */
body.blog article .post-thumb-img-content img,
body.blog article .ast-blog-featured-section img {
    border-radius: 0 !important;
    width: 100% !important;
    object-fit: cover;
}

/* Post content area in archive */
body.blog article .entry-header, body.blog article .entry-content,
body.blog article .entry-meta, body.blog article .post-content {
    padding: 0 24px !important;
}

body.blog article .entry-title a,
body.archive:not(.post-type-archive-product) article .entry-title a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}
body.blog article .entry-title a:hover { color: #00E5FF !important; }

body.blog article .entry-meta, body.blog article .entry-meta a,
body.blog article .cat-links a, body.blog article .posted-on a {
    color: #7890a8 !important;
}

/* Single blog post */
body.single-post article {
    background: rgba(10,18,30,.6) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,229,255,.1) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    margin-bottom: 30px;
    max-width: 900px;
    margin-inline: auto;
}

body.single-post .entry-title {
    color: #fff !important;
    font-size: 34px !important;
    font-weight: 900 !important;
    line-height: 1.35;
    margin-bottom: 16px;
}

body.single-post .entry-content {
    color: #c8d8e9 !important;
    line-height: 2 !important;
    font-size: 16px !important;
}

body.single-post .entry-content h2,
body.single-post .entry-content h3,
body.single-post .entry-content h4 {
    color: #00E5FF !important;
    margin-top: 28px;
}

body.single-post .entry-content a { color: #00E5FF !important; }
body.single-post .entry-content blockquote {
    border-right: 4px solid #00E5FF;
    padding: 16px 24px;
    background: rgba(0,229,255,.05);
    border-radius: 0 12px 12px 0;
    color: #d7e8f7;
    margin: 20px 0;
}

body.single-post .entry-content ul, body.single-post .entry-content ol {
    color: #c8d8e9; padding-right: 20px;
}

/* Post meta on single */
body.single-post .entry-meta, body.single-post .entry-meta a,
body.single-post .cat-links a, body.single-post .tags-links a {
    color: #7890a8 !important;
}

/* Comments */
body.single-post .comments-area {
    background: rgba(10,18,30,.5);
    border: 1px solid rgba(0,229,255,.08);
    border-radius: 18px;
    padding: 30px;
    margin-top: 30px;
}
body.single-post .comments-area .comment-respond label { color: #c8d8e9; }
body.single-post .comments-area textarea,
body.single-post .comments-area input[type="text"],
body.single-post .comments-area input[type="email"] {
    background: rgba(8,24,39,.7) !important;
    border: 1px solid rgba(0,229,255,.18) !important;
    border-radius: 12px !important;
    color: #fff !important;
    padding: 12px 16px;
}
body.single-post .comments-area .comment-body {
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 20px 0;
}
body.single-post .comments-area .comment-author .fn { color: #00E5FF; font-weight: 700; }

/* Sidebar */
body.blog .widget, body.single-post .widget {
    background: rgba(10,18,30,.5); border: 1px solid rgba(0,229,255,.08);
    border-radius: 16px; padding: 20px; margin-bottom: 20px;
}
body.blog .widget-title, body.single-post .widget-title { color: #00E5FF !important; }
body.blog .widget a, body.single-post .widget a { color: #c8d8e9 !important; }
body.blog .widget a:hover, body.single-post .widget a:hover { color: #00E5FF !important; }

/* ══════════════════════════════════
   STATIC PAGES — Glass Wrapper
   ══════════════════════════════════ */
.kyan-page-content.kyan-card {
    max-width: 960px;
    margin: 40px auto;
    padding: 48px 44px;
    background: rgba(10,18,30,.6) !important;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,229,255,.1);
    border-radius: 20px;
    color: #d7e8f7;
    line-height: 2;
    font-size: 15px;
}

.kyan-page-content h1, .kyan-page-content h2 {
    color: #00E5FF !important;
    font-weight: 900;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,229,255,.1);
}

.kyan-page-content h3, .kyan-page-content h4 {
    color: #fff !important;
    font-weight: 800;
    margin-top: 24px;
}

.kyan-page-content a { color: #00E5FF; }
.kyan-page-content ul, .kyan-page-content ol { padding-right: 20px; color: #c8d8e9; }
.kyan-page-content blockquote {
    border-right: 4px solid #00E5FF; padding: 14px 20px;
    background: rgba(0,229,255,.04); border-radius: 0 10px 10px 0; margin: 16px 0;
}
.kyan-page-content table {
    width: 100%; border-collapse: collapse; margin: 16px 0;
}
.kyan-page-content table th {
    background: rgba(0,229,255,.08); color: #00E5FF; padding: 12px; text-align: right;
    border-bottom: 1px solid rgba(0,229,255,.15);
}
.kyan-page-content table td {
    padding: 12px; border-bottom: 1px solid rgba(255,255,255,.04); color: #c8d8e9;
}

/* ══════════════════════════════════
   RESPONSIVE — Homepage
   ══════════════════════════════════ */
@media(max-width:1024px) {
    .kyan-features { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:720px) {
    .kyan-features, .kyan-banners, .kyan-products { grid-template-columns: 1fr !important; }
    .kyan-banner { flex-direction: column-reverse; text-align: center; }
    .kyan-product { max-width: 100%; }
    .kyan-hero { padding: 40px 16px; }
    .kyan-page-content.kyan-card { padding: 24px 18px; margin: 20px auto; }
    body.single-post article { padding: 24px !important; }
}
