/*
Theme Name: Bettinder Premium Child
Theme URI: https://bettinder.com
Description: Premium IT & Gaming Technology Company - Understrap Child Theme with Slider & Multilingual
Version: 3.0.0
Author: Bettinder Dev
Author URI: https://bettinder.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bettinder-premium-child
Domain Path: /languages
Template: understrap
Requires at least: 5.0
Requires PHP: 7.2
*/

/* ============================================================
   BETTINDER PREMIUM v3.0 — DARK TECH & GAMING THEME
   Font: Outfit (headings) + Plus Jakarta Sans (body)
   Palette: Deep Navy + Electric Violet + Neon Teal Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */

:root {
    /* ── Brand Palette ── */
    --bt-primary: #7C3AED;
    --bt-primary-light: #A78BFA;
    --bt-primary-dark: #5B21B6;
    --bt-primary-glow: rgba(124, 58, 237, 0.35);
    --bt-accent: #06D6A0;
    --bt-accent-glow: rgba(6, 214, 160, 0.25);
    --bt-gold: #FBBF24;
    --bt-gold-glow: rgba(251, 191, 36, 0.2);
    --bt-danger: #EF4444;

    /* ── Surfaces ── */
    --bt-bg-body: #06070F;
    --bt-bg-section: #0B0D1A;
    --bt-bg-section-alt: #0F1128;
    --bt-bg-card: rgba(15, 17, 40, 0.85);
    --bt-bg-card-hover: rgba(22, 25, 58, 0.9);
    --bt-bg-elevated: rgba(124, 58, 237, 0.06);

    /* ── Text ── */
    --bt-text-primary: #F1F0F7;
    --bt-text-secondary: #A3A4C2;
    --bt-text-muted: #6B6D8A;
    --bt-text-on-primary: #FFFFFF;

    /* ── Borders ── */
    --bt-border: rgba(124, 58, 237, 0.12);
    --bt-border-hover: rgba(124, 58, 237, 0.4);
    --bt-border-subtle: rgba(255, 255, 255, 0.05);

    /* ── Shadows ── */
    --bt-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --bt-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --bt-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
    --bt-shadow-glow-sm: 0 0 20px var(--bt-primary-glow);
    --bt-shadow-glow-lg: 0 0 60px var(--bt-primary-glow);

    /* ── Radius ── */
    --bt-radius-sm: 8px;
    --bt-radius-md: 14px;
    --bt-radius-lg: 20px;
    --bt-radius-xl: 28px;
    --bt-radius-full: 9999px;

    /* ── Transitions ── */
    --bt-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --bt-transition: all 0.35s var(--bt-ease);
    --bt-transition-fast: all 0.2s var(--bt-ease);
    --bt-transition-slow: all 0.6s var(--bt-ease);
}

/* ============================================================
   BASE & RESET
   ============================================================ */

body,
#page {
    background: var(--bt-bg-body);
    color: var(--bt-text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

#page-wrapper {
    background: transparent;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--bt-text-primary);
    letter-spacing: -0.02em;
}

p {
    color: var(--bt-text-secondary);
    margin-bottom: 1.25em;
    line-height: 1.8;
}

a {
    color: var(--bt-accent);
    text-decoration: none;
    transition: var(--bt-transition-fast);
}

a:hover {
    color: var(--bt-primary-light);
}

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

::selection {
    background: var(--bt-primary);
    color: var(--bt-text-on-primary);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bt-bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--bt-primary-dark);
    border-radius: var(--bt-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bt-primary);
}

/* ============================================================
   NAVBAR / HEADER
   ============================================================ */

.navbar-custom {
    background: rgba(6, 7, 15, 0.92) !important;
    border-bottom: 1px solid var(--bt-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--bt-transition);
}

.navbar-custom.scrolled {
    border-bottom-color: var(--bt-primary);
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.1);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--bt-text-primary) !important;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--bt-transition-fast);
}

.navbar-brand:hover {
    color: var(--bt-primary-light) !important;
    text-decoration: none;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.4rem;
    margin-left: 1rem;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-full);
    padding: 3px;
}

.lang-btn {
    padding: 0.45rem 1rem;
    background: transparent;
    border: none;
    color: var(--bt-text-muted);
    border-radius: var(--bt-radius-full);
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--bt-transition-fast);
    letter-spacing: 0.03em;
}

.lang-btn:hover {
    color: var(--bt-text-primary);
}

.lang-btn.active {
    background: var(--bt-primary);
    color: var(--bt-text-on-primary);
    box-shadow: 0 2px 12px var(--bt-primary-glow);
}

/* Nav Links */
.navbar-nav .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bt-text-secondary) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--bt-transition-fast);
    letter-spacing: 0.01em;
}

.navbar-nav .nav-link:hover {
    color: var(--bt-text-primary) !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    background: var(--bt-bg-body);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* Ambient glow */
.hero-section::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* ── Slider (Top) ── */
.slider-container {
    width: 100%;
    order: 1;
    flex-shrink: 0;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 520px;
    background: var(--bt-bg-section);
}

.slider {
    display: flex;
    transition: transform 0.6s var(--bt-ease);
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: rgba(0, 0, 0, 0.25);
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(124, 58, 237, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bt-transition);
    z-index: 10;
}

.slider-nav:hover {
    background: var(--bt-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--bt-shadow-glow-sm);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--bt-radius-full);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--bt-transition);
}

.dot.active {
    background: var(--bt-primary);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 12px var(--bt-primary-glow);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ── Hero Text (Below Slider) ── */
.hero-text {
    padding: 4rem 3rem;
    order: 2;
    background: linear-gradient(180deg, var(--bt-bg-section) 0%, var(--bt-bg-body) 100%);
    position: relative;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bt-primary), transparent);
    opacity: 0.4;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--bt-text-primary);
    line-height: 1.1;
}

.hero-text h1 strong,
.hero-text h1 span {
    background: linear-gradient(135deg, var(--bt-primary-light), var(--bt-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--bt-text-secondary);
    margin-bottom: 2rem;
    max-width: 620px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-custom {
    padding: 0.85rem 1.8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--bt-radius-sm);
    cursor: pointer;
    transition: var(--bt-transition);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
}

.btn-primary-custom {
    background: var(--bt-primary);
    color: var(--bt-text-on-primary);
    box-shadow: 0 4px 20px var(--bt-primary-glow);
}

.btn-primary-custom:hover {
    background: var(--bt-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--bt-primary-glow);
    color: var(--bt-text-on-primary);
}

.btn-secondary-custom {
    border: 1.5px solid var(--bt-border-hover);
    color: var(--bt-primary-light);
    background: transparent;
}

.btn-secondary-custom:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--bt-primary-light);
    color: var(--bt-primary-light);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--bt-text-primary);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bt-primary), var(--bt-accent));
    border-radius: var(--bt-radius-full);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--bt-text-muted);
    max-width: 560px;
    margin: 1rem auto 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    padding: 6rem 2rem;
    background: var(--bt-bg-section);
    position: relative;
    overflow: hidden;
}

/* Decorative orb */
.about-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-section > .container {
    position: relative;
    z-index: 1;
}

.about-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bt-text-primary);
    margin-bottom: 1.2rem;
}

.about-content p {
    font-size: 1.02rem;
    color: var(--bt-text-secondary);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    font-size: 1rem;
    color: var(--bt-text-primary);
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--bt-border);
    line-height: 1.6;
    transition: var(--bt-transition-fast);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li:hover {
    padding-left: 0.5rem;
    color: var(--bt-accent);
}

/* Internal links inside about */
.internal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.internal-links a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--bt-primary-light);
    border-bottom: 1px dashed var(--bt-border-hover);
    padding-bottom: 2px;
    transition: var(--bt-transition-fast);
}

.internal-links a:hover {
    color: var(--bt-accent);
    border-bottom-color: var(--bt-accent);
    text-decoration: none;
}

/* Stats Grid */
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--bt-transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bt-primary), var(--bt-accent));
    opacity: 0;
    transition: var(--bt-transition);
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: var(--bt-border-hover);
    box-shadow: var(--bt-shadow-md), var(--bt-shadow-glow-sm);
    background: var(--bt-bg-card-hover);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box h4 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, var(--bt-primary-light), var(--bt-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--bt-text-muted);
    margin: 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
    padding: 6rem 2rem;
    background: var(--bt-bg-section-alt);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.features-section > .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-lg);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: var(--bt-transition);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--bt-transition);
}

.feature-card:hover {
    border-color: var(--bt-border-hover);
    transform: translateY(-8px);
    box-shadow: var(--bt-shadow-lg), var(--bt-shadow-glow-sm);
    background: var(--bt-bg-card-hover);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--bt-text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* ============================================================
   SEO CONTENT / ARTICLE SECTION
   ============================================================ */

.seo-content-section {
    padding: 6rem 2rem;
    background: var(--bt-bg-section);
    position: relative;
    overflow: hidden;
}

.seo-content-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.seo-content-section > .container {
    position: relative;
    z-index: 1;
}

.seo-article {
    max-width: 800px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: var(--bt-text-primary);
    margin-bottom: 2rem;
    line-height: 1.25;
    text-align: center;
    position: relative;
    padding-bottom: 1.2rem;
}

.seo-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--bt-primary), var(--bt-accent));
    border-radius: var(--bt-radius-full);
}

.seo-article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bt-accent);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--bt-accent);
}

.seo-article p {
    font-size: 1.02rem;
    color: var(--bt-text-secondary);
    line-height: 1.85;
    margin-bottom: 1.3rem;
}

.seo-article strong {
    color: var(--bt-text-primary);
    font-weight: 700;
}

.seo-article a {
    color: var(--bt-primary-light);
    border-bottom: 1px solid rgba(167, 139, 250, 0.3);
    padding-bottom: 1px;
    transition: var(--bt-transition-fast);
}

.seo-article a:hover {
    color: var(--bt-accent);
    border-bottom-color: var(--bt-accent);
    text-decoration: none;
}

/* ── SEO Article Images (figure + figcaption) ── */
.seo-image {
    margin: 2rem 0 2.5rem;
    border-radius: var(--bt-radius-md);
    overflow: hidden;
    border: 1px solid var(--bt-border);
    background: var(--bt-bg-card);
}

.seo-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--bt-transition-slow);
}

.seo-image:hover img {
    transform: scale(1.02);
}

.seo-image figcaption {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    color: var(--bt-text-muted);
    background: var(--bt-bg-card);
    border-top: 1px solid var(--bt-border);
    font-style: italic;
}

/* ── SEO Lists ── */
.seo-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.seo-list li {
    font-size: 1rem;
    color: var(--bt-text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.7;
    position: relative;
}

ol.seo-list li {
    padding-left: 0.5rem;
}

ol.seo-list li::marker {
    color: var(--bt-primary-light);
    font-weight: 700;
}

ul.seo-list {
    list-style: none;
    padding-left: 0;
}

ul.seo-list li {
    padding-left: 1.8rem;
    position: relative;
}

ul.seo-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bt-accent);
    font-weight: 700;
}

/* ── SEO CTA ── */
.seo-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bt-border);
}

.seo-cta .btn-primary-custom {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.premium-footer {
    background: var(--bt-bg-body);
    border-top: 1px solid var(--bt-border);
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bt-primary), var(--bt-accent), transparent);
}

.footer-top {
    padding: 4rem 0 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-col {
    margin-bottom: 1.5rem;
}

.footer-widget {
    padding: 1.5rem;
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-md);
    transition: var(--bt-transition);
    height: 100%;
}

.footer-widget:hover {
    border-color: var(--bt-border-hover);
    box-shadow: var(--bt-shadow-sm);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
}

.footer-widget p {
    font-size: 0.9rem;
    color: var(--bt-text-muted);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 0.9rem;
    border-radius: var(--bt-radius-sm);
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid var(--bt-border);
    color: var(--bt-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bt-transition-fast);
    text-decoration: none;
    width: auto;
    height: auto;
}

.social-link:hover {
    background: var(--bt-primary);
    color: var(--bt-text-on-primary);
    border-color: var(--bt-primary);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--bt-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--bt-transition-fast);
    text-decoration: none;
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--bt-transition-fast);
    color: var(--bt-primary-light);
}

.footer-links a:hover {
    color: var(--bt-primary-light);
    padding-left: 0.3rem;
    text-decoration: none;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.newsletter-form input {
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-sm);
    color: var(--bt-text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    transition: var(--bt-transition-fast);
}

.newsletter-form input::placeholder {
    color: var(--bt-text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--bt-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    background: rgba(124, 58, 237, 0.04);
}

.newsletter-form button {
    padding: 0.7rem;
    background: var(--bt-primary);
    border: none;
    border-radius: var(--bt-radius-sm);
    color: var(--bt-text-on-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--bt-transition);
}

.newsletter-form button:hover {
    background: var(--bt-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--bt-primary-glow);
}

/* Payment Methods */
.payment-methods {
    margin-top: 1.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--bt-border);
}

.payment-label {
    font-size: 0.78rem;
    color: var(--bt-text-muted);
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-desc {
    font-size: 0.85rem;
    color: var(--bt-text-secondary);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--bt-border);
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    padding: 0.5rem 0;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: var(--bt-text-muted);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.badge {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid var(--bt-border);
    color: var(--bt-text-muted);
    padding: 0.35rem 0.9rem;
    border-radius: var(--bt-radius-full);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: var(--bt-transition-fast);
}

.badge:hover {
    background: var(--bt-primary);
    border-color: var(--bt-primary);
    color: var(--bt-text-on-primary);
}

/* ============================================================
   BLOG PAGE STYLES
   ============================================================ */

.blog-header {
    border-bottom: 1px solid var(--bt-border);
    padding-bottom: 1.5rem;
}

.blog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bt-text-primary);
    margin-bottom: 0.5rem;
}

.blog-description {
    font-size: 1rem;
    color: var(--bt-text-muted) !important;
    margin: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--bt-primary-glow); }
    50% { box-shadow: 0 0 40px var(--bt-primary-glow); }
}

/* Apply animations to sections */
.hero-text,
.section-header,
.about-content,
.about-stats,
.feature-card,
.seo-article {
    animation: fadeInUp 0.8s var(--bt-ease) both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.15s; }
.stat-box:nth-child(3) { animation-delay: 0.2s; }
.stat-box:nth-child(4) { animation-delay: 0.25s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 991px) {
    .hero-text {
        padding: 3rem 2rem;
    }

    .about-section,
    .features-section,
    .seo-content-section {
        padding: 4rem 1.5rem;
    }

    .about-stats {
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-box h4 {
        font-size: 1.8rem;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
    .slider-wrapper {
        height: 320px;
    }

    .hero-text {
        padding: 2.5rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-custom {
        text-align: center;
        justify-content: center;
    }

    .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .stat-box h4 {
        font-size: 1.6rem;
    }

    .seo-article h2 {
        font-size: 1.5rem;
    }

    .seo-article h3 {
        font-size: 1.25rem;
    }

    .footer-badges {
        justify-content: flex-start;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .internal-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .internal-links a {
        margin-left: 0 !important;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {
    .slider-wrapper {
        height: 220px;
    }

    .hero-text {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .slider-dots {
        bottom: 12px;
        gap: 5px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 22px;
    }

    .about-section,
    .features-section,
    .seo-content-section {
        padding: 3rem 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 1.2rem 1rem;
    }

    .footer-widget {
        padding: 1rem;
    }

    .seo-article {
        padding: 0 0.5rem;
    }

    .seo-image {
        margin: 1.5rem -0.5rem;
        border-radius: var(--bt-radius-sm);
    }
}

/* ============================================================
   BLOG HERO SECTION
   ============================================================ */

.blog-hero-section {
    padding: 5rem 0 3rem;
    background: var(--bt-bg-section);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
}

.blog-hero-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--bt-border-hover);
    color: var(--bt-primary-light);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 1.2rem;
    border-radius: var(--bt-radius-full);
    margin-bottom: 1.2rem;
}

.blog-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--bt-text-primary);
    margin-bottom: 1rem;
}

.blog-hero-desc {
    font-size: 1.05rem;
    color: var(--bt-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================================
   BLOG CONTENT SECTION
   ============================================================ */

.blog-content-section {
    padding: 3rem 0 5rem;
    background: var(--bt-bg-body);
}

/* ============================================================
   BLOG CARD COMPONENT
   ============================================================ */

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog-card {
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-lg);
    overflow: hidden;
    transition: var(--bt-transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--bt-border-hover);
    box-shadow: var(--bt-shadow-md), var(--bt-shadow-glow-sm);
    transform: translateY(-4px);
}

/* ── Featured Card ── */
.blog-card--featured {
    border-color: var(--bt-border-hover);
}

.blog-card--full {
    grid-column: 1 / -1;
}

/* ── Card Image ── */
.blog-card__image-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
}

.blog-card__image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--bt-bg-section-alt);
}

.blog-card--featured .blog-card__image {
    height: 300px;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--bt-transition-slow);
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bt-bg-section) 0%, var(--bt-bg-section-alt) 100%);
    font-size: 3rem;
}

.blog-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 7, 15, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: var(--bt-transition);
}

.blog-card:hover .blog-card__overlay {
    opacity: 1;
}

/* ── Card Content ── */
.blog-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card--featured .blog-card__content {
    padding: 1.8rem 2rem;
}

/* ── Card Meta ── */
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.blog-card__category {
    display: inline-block;
    background: rgba(6, 214, 160, 0.1);
    color: var(--bt-accent);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.7rem;
    border-radius: var(--bt-radius-full);
    border: 1px solid rgba(6, 214, 160, 0.2);
    text-decoration: none;
    transition: var(--bt-transition-fast);
}

.blog-card__category:hover {
    background: var(--bt-accent);
    color: var(--bt-bg-body);
    text-decoration: none;
}

.blog-card__date,
.blog-card__reading-time {
    font-size: 0.8rem;
    color: var(--bt-text-muted);
}

.blog-card__reading-time::before {
    content: '·';
    margin-right: 0.4rem;
}

/* ── Card Title ── */
.blog-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.6rem;
}

.blog-card--featured .blog-card__title {
    font-size: 1.5rem;
}

.blog-card__title a {
    color: var(--bt-text-primary);
    text-decoration: none;
    transition: var(--bt-transition-fast);
}

.blog-card__title a:hover {
    color: var(--bt-primary-light);
}

/* ── Card Excerpt ── */
.blog-card__excerpt {
    font-size: 0.92rem;
    color: var(--bt-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

/* ── Card Footer / Read More ── */
.blog-card__footer {
    margin-top: auto;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bt-primary-light);
    text-decoration: none;
    transition: var(--bt-transition-fast);
}

.blog-card__read-more svg {
    transition: var(--bt-transition-fast);
}

.blog-card__read-more:hover {
    color: var(--bt-accent);
    text-decoration: none;
}

.blog-card__read-more:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   LATEST POSTS SECTION (Front Page)
   ============================================================ */

.latest-posts-section {
    padding: 6rem 2rem;
    background: var(--bt-bg-section-alt);
    position: relative;
    overflow: hidden;
}

.latest-posts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bt-border-hover), transparent);
}

.latest-posts-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.latest-posts-section .blog-card--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.latest-posts-section .blog-card--featured .blog-card__image {
    height: 100%;
    min-height: 280px;
}

.latest-posts-section .blog-card--featured .blog-card__title {
    font-size: 1.6rem;
}

/* ============================================================
   BLOG PAGINATION
   ============================================================ */

.blog-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bt-border);
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.8rem;
    border-radius: var(--bt-radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--bt-text-muted);
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    text-decoration: none;
    transition: var(--bt-transition-fast);
}

.blog-pagination .page-numbers:hover {
    border-color: var(--bt-border-hover);
    color: var(--bt-text-primary);
    background: var(--bt-bg-card-hover);
}

.blog-pagination .page-numbers.current {
    background: var(--bt-primary);
    border-color: var(--bt-primary);
    color: var(--bt-text-on-primary);
    box-shadow: 0 2px 12px var(--bt-primary-glow);
}

.blog-pagination .prev,
.blog-pagination .next {
    font-weight: 700;
    color: var(--bt-primary-light);
}

/* ============================================================
   BLOG EMPTY STATE
   ============================================================ */

.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bt-bg-card);
    border: 1px dashed var(--bt-border);
    border-radius: var(--bt-radius-lg);
}

.blog-empty__icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.blog-empty h2 {
    font-size: 1.5rem;
    color: var(--bt-text-primary);
    margin-bottom: 0.5rem;
}

.blog-empty p {
    color: var(--bt-text-muted);
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--bt-transition);
}

.sidebar-widget:hover {
    border-color: var(--bt-border-hover);
}

.sidebar-widget__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bt-text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--bt-border);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
}

/* ── Sidebar Search ── */
.sidebar-search {
    display: flex;
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-sm);
    overflow: hidden;
    transition: var(--bt-transition-fast);
}

.sidebar-search:focus-within {
    border-color: var(--bt-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.sidebar-search__input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: transparent;
    border: none;
    color: var(--bt-text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    outline: none;
}

.sidebar-search__input::placeholder {
    color: var(--bt-text-muted);
}

.sidebar-search__btn {
    padding: 0.7rem 1rem;
    background: var(--bt-primary);
    border: none;
    color: var(--bt-text-on-primary);
    cursor: pointer;
    transition: var(--bt-transition-fast);
    display: flex;
    align-items: center;
}

.sidebar-search__btn:hover {
    background: var(--bt-primary-dark);
}

/* ── Sidebar Categories ── */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 0;
}

.sidebar-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--bt-border);
    color: var(--bt-text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--bt-transition-fast);
}

.sidebar-categories li:last-child a {
    border-bottom: none;
}

.sidebar-categories a:hover {
    color: var(--bt-primary-light);
    padding-left: 0.3rem;
}

.sidebar-cat-count {
    background: var(--bt-bg-elevated);
    color: var(--bt-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: var(--bt-radius-full);
    min-width: 28px;
    text-align: center;
}

/* ── Sidebar Popular Posts ── */
.sidebar-post {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--bt-border);
    text-decoration: none;
    transition: var(--bt-transition-fast);
}

.sidebar-post:last-child {
    border-bottom: none;
}

.sidebar-post:hover {
    text-decoration: none;
}

.sidebar-post:hover .sidebar-post__title {
    color: var(--bt-primary-light);
}

.sidebar-post__thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--bt-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bt-bg-section-alt);
}

.sidebar-post__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sidebar-post__info {
    flex: 1;
    min-width: 0;
}

.sidebar-post__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bt-text-primary);
    line-height: 1.4;
    margin-bottom: 0.2rem;
    transition: var(--bt-transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post__date {
    font-size: 0.75rem;
    color: var(--bt-text-muted);
}

/* ── Sidebar Tags ── */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.sidebar-tag {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: var(--bt-bg-elevated);
    border: 1px solid var(--bt-border);
    border-radius: var(--bt-radius-full);
    color: var(--bt-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--bt-transition-fast);
}

.sidebar-tag:hover {
    background: var(--bt-primary);
    border-color: var(--bt-primary);
    color: var(--bt-text-on-primary);
    text-decoration: none;
}

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

@media (max-width: 991px) {
    .latest-posts-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest-posts-section .blog-card--featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .latest-posts-section .blog-grid {
        grid-template-columns: 1fr;
    }

    .latest-posts-section .blog-card--featured .blog-card__image {
        height: 220px;
        min-height: auto;
    }

    .latest-posts-section .blog-card--featured .blog-card__title {
        font-size: 1.3rem;
    }

    .blog-hero-section {
        padding: 3rem 0 2rem;
    }

    .blog-card__image {
        height: 180px;
    }

    .blog-card--featured .blog-card__image {
        height: 220px;
    }

    .blog-card__content {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .blog-card__image {
        height: 160px;
    }

    .blog-card__title {
        font-size: 1.05rem;
    }

    .blog-card--featured .blog-card__title {
        font-size: 1.2rem;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--bt-primary-light), var(--bt-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--bt-accent);
}

.text-primary-brand {
    color: var(--bt-primary-light);
}

.glow-border {
    border: 1px solid var(--bt-border-hover);
    box-shadow: var(--bt-shadow-glow-sm);
}