/* ============================================
   KSA Number Lookup - Premium Dark Theme
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-cyan: #06b6d4;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-pink: #ec4899;
    --gradient-main: linear-gradient(135deg, #06b6d4, #8b5cf6);
    --gradient-subtle: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-main: 'Cairo', 'Harmattan', sans-serif;
}

html, body {
    height: 100%;
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* ---- Animated Background ---- */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139, 92, 246, 0.1), transparent),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(236, 72, 153, 0.08), transparent);
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-main);
    opacity: 0.04;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 { width: 500px; height: 500px; top: -20%; left: -10%; animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; top: 50%; right: -15%; animation-delay: -5s; }
.shape-3 { width: 300px; height: 300px; bottom: -10%; left: 30%; animation-delay: -10s; }
.shape-4 { width: 200px; height: 200px; top: 30%; left: 50%; animation-delay: -15s; background: linear-gradient(135deg, #ec4899, #8b5cf6); }
.shape-5 { width: 350px; height: 350px; bottom: 20%; right: 20%; animation-delay: -8s; background: linear-gradient(135deg, #10b981, #06b6d4); }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(2deg); }
}

/* ---- Main Container ---- */
#container {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px;
}

#wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border: none !important;
    background: none !important;
}

#wrapper::before,
#wrapper::after {
    display: none !important;
}

.ps-top-to-bottom {
    border: none !important;
}

.ps-top-to-bottom::before,
.ps-top-to-bottom::after {
    display: none !important;
}

/* ---- Header & Search Section ---- */
.search-section {
    padding: 40px 20px 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)); }
}

h1.site-title {
    font-size: 1.8em;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.title-main {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-badge {
    background: var(--gradient-main);
    color: white;
    font-size: 0.45em;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 0 10px rgba(6, 182, 212, 0.3); }
    50% { box-shadow: 0 0 25px rgba(139, 92, 246, 0.5); }
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1em;
    margin-bottom: 30px;
    font-weight: 300;
}

/* ---- Search Box ---- */
.search-box {
    max-width: 520px;
    margin: 0 auto 30px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 6px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.input-wrapper:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15), var(--shadow-glow);
    background: rgba(255, 255, 255, 0.08);
}

.search-icon {
    color: var(--text-muted);
    padding: 0 14px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#snumber {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1.1em;
    font-family: var(--font-main);
    padding: 12px 8px;
    width: 100%;
    direction: ltr;
    text-align: left;
}

#snumber::placeholder {
    color: var(--text-muted);
    direction: ltr;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-main);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 22px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1em;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.search-btn:active {
    transform: scale(0.98);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.search-btn:hover .btn-arrow {
    transform: translateX(-4px);
}

/* ---- Keyboard Toggle ---- */
.keyboard-toggle {
    margin-top: 12px;
}

.toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85em;
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: var(--bg-glass);
    border: 1px solid transparent;
}

.toggle-label:hover {
    color: var(--accent-cyan);
    border-color: var(--border-glass);
}

/* ---- Stats Row ---- */
.stats-row {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.05);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 1.4em;
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.stat-value {
    font-size: 0.85em;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.7em;
    color: var(--text-muted);
}

/* ---- Results Section ---- */
#result {
    text-align: center;
    font-size: 16px;
    margin: 0;
    padding: 0 20px 30px;
    direction: rtl;
}

.welcome-section {
    padding: 40px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.welcome-icon {
    margin-bottom: 20px;
    opacity: 0.7;
}

#result h2 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    direction: rtl;
    text-shadow: none;
}

.ksa {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline;
    text-shadow: none !important;
}

.welcome {
    color: var(--text-secondary);
    font-size: 1.1em;
    max-width: 400px;
    margin: 0 auto 30px;
    font-weight: 400;
    direction: rtl;
    text-shadow: none;
    font-family: var(--font-main);
}

/* ---- Features Grid ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(6, 182, 212, 0.06);
    border-color: rgba(6, 182, 212, 0.2);
    color: var(--text-primary);
}

.feature-icon {
    font-size: 1.2em;
}

/* ---- Original Table Compatibility (from original site) ---- */
table.main {
    border: hidden !important;
    background-color: inherit;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
}

table.main td {
    border-style: solid;
    text-align: center;
    vertical-align: middle;
    border-radius: 5px;
    padding: 5px;
}

/* ---- Result Tables ---- */
table.tftable {
    width: 100%;
    border-collapse: collapse;
    border: none;
    font-family: var(--font-main);
    color: var(--text-primary);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 16px;
    box-shadow: var(--shadow-lg);
    text-shadow: none;
    -webkit-text-stroke: 0;
    border: 1px solid var(--border-glass);
}

table.tftable tr td,
table.tftable tr th {
    border: none;
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 20px;
    color: var(--text-primary);
    overflow: auto;
}

table.tftable thead th,
table.tftable tfoot th {
    font-family: var(--font-main);
    font-size: 1em;
    font-weight: 700;
    border: none;
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
    color: var(--text-primary);
}

table.tftable tfoot th,
table.tftable thead th:not(.root) {
    color: var(--text-primary);
}

table.tftable tbody td a {
    color: var(--accent-cyan);
    text-decoration: none;
    background: none;
    transition: color 0.3s ease;
}

table.tftable tbody td a:hover {
    color: var(--accent-purple);
    background: none;
}

table.tftable tbody th a {
    color: var(--text-primary);
    text-decoration: none;
    background: none;
}

table.tftable tbody td,
table.tftable tbody th {
    vertical-align: middle;
    text-align: center;
}

.tftable tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

table.tftable tr:hover {
    background: rgba(6, 182, 212, 0.08);
    font-size: inherit;
}

/* ---- Result Cell Styles ---- */
.saudiMobile {
    background: rgba(16, 185, 129, 0.15) !important;
    color: var(--accent-green) !important;
    border-radius: var(--radius-sm);
}

.dawliValue {
    background: rgba(236, 72, 153, 0.15) !important;
    color: var(--accent-pink) !important;
    border-radius: var(--radius-sm);
}

.nameValue {
    background: rgba(6, 182, 212, 0.15) !important;
    color: var(--accent-cyan) !important;
    border-radius: var(--radius-sm);
}

/* ---- Result Rows Transition ---- */
.resultRow {
    transition: all 0.2s ease-in-out;
}

/* ---- Buttons in Results ---- */
#result .btn,
.btn {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.95em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

/* ---- Silver Button Override ---- */
.silverBtn {
    background: var(--gradient-main) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
    padding: 10px 28px !important;
    font-family: var(--font-main) !important;
    cursor: pointer;
    font-weight: 700;
    text-shadow: none !important;
    transition: all 0.3s ease;
}

.silverBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

/* ---- Loading Spinner ---- */
.loader {
    position: inherit;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
    margin: 20px auto;
}

.inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.inner.one {
    left: 0;
    top: 0;
    animation: rotate-one 1s linear infinite;
    border-bottom: 3px solid var(--accent-cyan);
}

.inner.two {
    right: 0;
    top: 0;
    animation: rotate-two 1s linear infinite;
    border-right: 3px solid var(--accent-purple);
}

.inner.three {
    right: 0;
    bottom: 0;
    animation: rotate-three 1s linear infinite;
    border-top: 3px solid var(--accent-pink);
}

@keyframes rotate-one {
    0% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(0); }
    100% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); }
}

@keyframes rotate-two {
    0% { transform: rotateX(50deg) rotateY(10deg) rotateZ(0); }
    100% { transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); }
}

@keyframes rotate-three {
    0% { transform: rotateX(35deg) rotateY(55deg) rotateZ(0); }
    100% { transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); }
}

.loading_str {
    font-size: 1.2em;
    color: var(--text-secondary);
}

/* ---- Info & Notes ---- */
#info, .info {
    border: 1px solid var(--border-glass);
    margin: 16px 0;
    padding: 16px 20px;
    text-shadow: none;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    font-size: 1em;
    backdrop-filter: blur(10px);
    color: var(--text-primary);
}

.note {
    text-shadow: none;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

/* ---- Notification Boxes ---- */
#sNote {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    width: 490px;
    max-width: 90%;
    margin: 16px auto;
    transition: all 0.4s ease;
}

.sNote1 {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.sNote2 {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

#sNote p {
    direction: rtl;
    padding: 12px;
    color: var(--text-secondary);
    text-shadow: none !important;
    font-size: 0.95em;
}

.noty {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    max-width: 50%;
    margin: 10px auto;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    color: #fca5a5;
}

.noty2 {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    width: 300px;
    max-width: 90%;
    margin: 10px auto;
    direction: rtl;
    padding: 12px;
    color: var(--accent-cyan);
    text-shadow: none !important;
}

.noty_extra {
    padding: 30px 20px !important;
}

/* ---- Input Overrides ---- */
input[type=number],
input[type=search],
input[type=text],
textarea {
    transition: all 0.3s ease;
    outline: none;
    padding: 8px 12px;
    margin: 5px 1px 3px 0;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    background: transparent;
    font-family: var(--font-main);
    border-radius: var(--radius-sm);
}

input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
    border-color: var(--accent-cyan);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* ---- iFrame ---- */
.ifra {
    width: 100%;
    max-width: 900px;
    height: 90px !important;
    border: hidden;
    overflow: hidden;
}

/* ---- Toast ---- */
#toastMsg {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background: var(--bg-card);
    color: var(--text-primary);
    text-align: center;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-main);
}

#toastMsg.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
    from { bottom: 30px; opacity: 1; }
    to { bottom: 0; opacity: 0; }
}

/* ---- Footer ---- */
.site-footer {
    padding: 24px 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    max-width: 500px;
    margin: 0 auto;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.85em;
    margin-bottom: 6px;
}

.contact {
    color: var(--text-muted);
    font-size: 0.8em;
}

.contact a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: var(--accent-purple);
}

/* ---- Hidden Elements ---- */
.hiddenR { display: none; }
.x { display: none !important; }

/* ---- Selected State ---- */
.selected {
    border: 2px dashed var(--accent-green);
    border-radius: var(--radius-sm);
}

/* ---- Checkbox Styling ---- */
.stype #search_type:checked + label {
    background: var(--accent-cyan);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
}

/* ---- Small Text Container ---- */
.smallTextContainer {
    font-size: 0.85em;
    text-align: right;
    direction: rtl;
    max-width: 500px !important;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* ---- Image Filters ---- */
img.no_press {
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

img.no_press:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ---- Spacer ---- */
.spacer_td {
    border-top: hidden !important;
}

/* ---- lale font ---- */
.lale {
    font-family: 'Cairo', 'Harmattan', sans-serif;
}

/* ---- Responsive Design ---- */
@media (max-width: 600px) {
    .search-section {
        padding: 30px 15px 25px;
    }

    h1.site-title {
        font-size: 1.4em;
    }

    .subtitle {
        font-size: 0.9em;
    }

    .input-wrapper {
        flex-direction: row;
        border-radius: 20px;
        padding: 4px;
    }

    .search-icon {
        padding: 0 10px;
    }

    #snumber {
        font-size: 1em;
        padding: 10px 6px;
    }

    .search-btn {
        padding: 10px 20px;
        border-radius: 18px;
        font-size: 0.9em;
    }

    .btn-text {
        display: inline;
    }

    .btn-arrow {
        display: none;
    }

    .stats-row {
        gap: 8px;
    }

    .stat-card {
        padding: 10px 12px;
        min-width: 120px;
    }

    .stat-value {
        font-size: 0.8em;
    }

    .stat-label {
        font-size: 0.65em;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .feature-item {
        padding: 10px 12px;
        font-size: 0.8em;
    }

    #result {
        padding: 0 15px 20px;
        font-size: 15px;
    }

    .welcome-section {
        padding: 30px 15px;
    }

    table.tftable {
        font-size: 14px;
    }

    table.tftable tr td,
    table.tftable tr th {
        padding: 10px 12px;
    }

    table.tftable tr:hover {
        font-size: inherit;
    }
}

@media (max-width: 380px) {
    .logo-container {
        gap: 8px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    h1.site-title {
        font-size: 1.2em;
    }

    .stats-row {
        flex-direction: column;
    }

    .stat-card {
        min-width: 100%;
    }
}

/* ---- Entrance Animation ---- */
.search-section,
.welcome-section,
.stat-card,
.feature-item {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.search-section { animation-delay: 0s; }
.welcome-section { animation-delay: 0.15s; }
.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.5s; }
.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.3s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }
.feature-item:nth-child(4) { animation-delay: 0.5s; }

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

/* ---- Scrollbar Styling ---- */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* ---- Print Styles ---- */
@media print {
    .bg-animation,
    .search-section,
    .site-footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
