/* ===== ufa-velvet 天鹅绒紫模板 ===== */
:root {
    --uv-bg: #1a0a2e;
    --uv-bg2: #251038;
    --uv-bg3: #0f0519;
    --uv-purple: #8e24aa;
    --uv-rose: #e91e63;
    --uv-gold: #ffd54f;
    --uv-text: #e0d0e8;
    --uv-text-dim: #9080a0;
    --uv-white: #fff;
    --uv-card: #251038;
    --uv-border: rgba(142,36,170,0.3);
    --uv-border-gold: rgba(255,213,79,0.25);
    --uv-radius: 12px;
    --uv-font: 'Prompt', sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:var(--uv-font); background:var(--uv-bg); color:var(--uv-text); line-height:1.7; overflow-x:hidden; }
a { text-decoration:none; color:var(--uv-gold); transition:all .3s; }
a:hover { color:var(--uv-rose); }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 15px; }

/* ===== Header ===== */
.uv-header { position:fixed; top:0; left:0; right:0; z-index:1000; background:rgba(26,10,46,0.95); backdrop-filter:blur(10px); border-bottom:1px solid var(--uv-border); transition:all .3s; }
.uv-header.scrolled { background:rgba(15,5,25,0.98); box-shadow:0 4px 30px rgba(142,36,170,0.2); }
.uv-header-inner { display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
.uv-logo img { height:44px; }
.uv-nav-wrap { flex:1; margin:0 20px; }
.uv-nav { display:flex; align-items:center; gap:4px; list-style:none; flex-wrap:nowrap; overflow-x:auto; }
.uv-nav li { position:relative; white-space:nowrap; }
.uv-nav li a { display:block; padding:8px 12px; color:var(--uv-text); font-size:14px; font-weight:500; border-radius:6px; }
.uv-nav li a:hover, .uv-nav li.active a { color:var(--uv-gold); background:rgba(142,36,170,0.15); }
.uv-menu-dropdown .uv-dropdown { display:none; position:absolute; top:100%; left:0; min-width:200px; background:var(--uv-bg2); border:1px solid var(--uv-border); border-radius:8px; padding:8px 0; box-shadow:0 10px 40px rgba(0,0,0,0.5); z-index:100; }
.uv-menu-dropdown:hover .uv-dropdown { display:block; }
.uv-dropdown li { width:100%; }
.uv-dropdown li a { padding:8px 16px; font-size:13px; }
.uv-sub-dropdown { display:none; padding-left:15px; }
.uv-dropdown li:hover .uv-sub-dropdown { display:block; }
.uv-header-btns { display:flex; gap:8px; align-items:center; }
.uv-btn-gold { display:inline-block; padding:10px 24px; background:linear-gradient(135deg,var(--uv-gold),#ffb300); color:#1a0a2e !important; font-weight:700; border-radius:30px; font-size:14px; border:none; cursor:pointer; transition:all .3s; }
.uv-btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(255,213,79,0.3); color:#1a0a2e !important; }
.uv-btn-rose { display:inline-block; padding:10px 24px; background:linear-gradient(135deg,var(--uv-rose),#c2185b); color:#fff !important; font-weight:700; border-radius:30px; font-size:14px; border:none; cursor:pointer; transition:all .3s; }
.uv-btn-rose:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(233,30,99,0.3); color:#fff !important; }
.uv-btn-outline { display:inline-block; padding:10px 24px; background:transparent; color:var(--uv-gold) !important; border:2px solid var(--uv-purple); font-weight:600; border-radius:30px; font-size:14px; cursor:pointer; transition:all .3s; }
.uv-btn-outline:hover { background:var(--uv-purple); color:#fff !important; border-color:var(--uv-purple); }
.uv-btn-lg { padding:16px 40px; font-size:17px; }
.uv-btn-sm { padding:8px 20px; font-size:13px; }
.uv-toggle { display:none; background:none; border:none; color:var(--uv-gold); font-size:24px; cursor:pointer; }

/* ===== Hero 居中卡片式 ===== */
.uv-hero { position:relative; min-height:650px; display:flex; align-items:center; justify-content:center; text-align:center; padding:120px 0 80px; overflow:hidden; }
.uv-hero-bg { position:absolute; inset:0; background:radial-gradient(ellipse at center,#4a148c 0%,var(--uv-bg) 55%); }
.uv-hero-bg::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 25% 40%,rgba(233,30,99,0.15) 0%,transparent 50%),radial-gradient(circle at 75% 50%,rgba(142,36,170,0.2) 0%,transparent 50%); }
.uv-hero-bg::after { content:''; position:absolute; inset:0; background-image:repeating-linear-gradient(135deg,transparent,transparent 2px,rgba(142,36,170,0.03) 2px,rgba(142,36,170,0.03) 4px); }
.uv-hero-curtain-l, .uv-hero-curtain-r { position:absolute; top:0; bottom:0; width:120px; z-index:1; pointer-events:none; }
.uv-hero-curtain-l { left:0; background:linear-gradient(90deg,rgba(142,36,170,0.3),transparent); }
.uv-hero-curtain-r { right:0; background:linear-gradient(-90deg,rgba(142,36,170,0.3),transparent); }
.uv-hero-curtain-l::before, .uv-hero-curtain-r::before { content:''; position:absolute; top:0; bottom:0; width:3px; background:linear-gradient(to bottom,transparent,var(--uv-gold),transparent); }
.uv-hero-curtain-l::before { right:20px; }
.uv-hero-curtain-r::before { left:20px; }
.uv-hero-card { position:relative; z-index:2; max-width:700px; background:rgba(37,16,56,0.6); border:1px solid var(--uv-border-gold); border-radius:20px; padding:50px 40px; backdrop-filter:blur(10px); box-shadow:0 20px 60px rgba(0,0,0,0.4),0 0 40px rgba(142,36,170,0.2); }
.uv-hero-icon { font-size:48px; color:var(--uv-gold); margin-bottom:15px; text-shadow:0 0 30px rgba(255,213,79,0.5); }
.uv-hero-h1 { font-size:clamp(28px,5vw,48px); font-weight:800; color:var(--uv-white); margin-bottom:20px; line-height:1.3; }
.uv-hero-accent { display:block; background:linear-gradient(135deg,var(--uv-rose),var(--uv-purple)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; font-size:0.7em; margin-top:5px; }
.uv-hero-desc { font-size:16px; color:var(--uv-text-dim); margin-bottom:35px; line-height:1.8; }
.uv-hero-btns { display:flex; gap:15px; justify-content:center; flex-wrap:wrap; }

/* ===== Section ===== */
.uv-section { padding:70px 0; background:var(--uv-bg); }
.uv-section-dark { background:var(--uv-bg3); }
.uv-section-title { text-align:center; margin-bottom:50px; }
.uv-section-title h2 { font-size:clamp(24px,4vw,36px); font-weight:700; color:var(--uv-white); }
.uv-title-decor { margin:15px 0; display:flex; justify-content:center; align-items:center; gap:15px; }
.uv-diamond { color:var(--uv-gold); font-size:18px; }
.uv-title-decor::before, .uv-title-decor::after { content:''; width:60px; height:1px; background:linear-gradient(to right,transparent,var(--uv-purple)); }
.uv-title-decor::after { background:linear-gradient(to left,transparent,var(--uv-purple)); }
.uv-section-title p { color:var(--uv-text-dim); font-size:15px; }
.uv-decor-left { justify-content:flex-start; }
.uv-decor-left::before { display:none; }

/* ===== 功能区1: Shield Grid (imggame) ===== */
.uv-shield-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:25px; max-width:950px; margin:0 auto; }
.uv-shield-card { text-align:center; cursor:pointer; transition:all .3s; }
.uv-shield-card:hover { transform:translateY(-5px); }
.uv-shield-img { width:130px; height:150px; margin:0 auto 10px; clip-path:polygon(50% 0%,100% 20%,100% 75%,50% 100%,0% 75%,0% 20%); background:linear-gradient(135deg,var(--uv-purple),var(--uv-rose)); display:flex; align-items:center; justify-content:center; padding:5px; position:relative; transition:all .3s; }
.uv-shield-card:hover .uv-shield-img { filter:brightness(1.2); box-shadow:0 0 30px rgba(233,30,99,0.3); }
.uv-shield-img::before { content:''; position:absolute; inset:3px; clip-path:polygon(50% 0%,100% 20%,100% 75%,50% 100%,0% 75%,0% 20%); background:var(--uv-card); }
.uv-shield-img img { width:65%; height:65%; object-fit:contain; position:relative; z-index:1; }
.uv-shield-label { color:var(--uv-text); font-size:14px; font-weight:500; }

/* ===== 功能区2: Slot Reel (slots) ===== */
.uv-slot-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:25px; }
.uv-slot-card { background:var(--uv-card); border-radius:12px; overflow:hidden; border:2px solid var(--uv-border); transition:all .3s; position:relative; }
.uv-slot-card:hover { border-color:var(--uv-gold); transform:translateY(-5px); box-shadow:0 15px 40px rgba(142,36,170,0.3); }
.uv-slot-reel { height:180px; overflow:hidden; position:relative; border-bottom:3px solid var(--uv-purple); }
.uv-slot-reel img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.uv-slot-card:hover .uv-slot-reel img { transform:translateY(-5px); }
.uv-slot-reel::before, .uv-slot-reel::after { content:''; position:absolute; left:0; right:0; height:20px; z-index:2; pointer-events:none; }
.uv-slot-reel::before { top:0; background:linear-gradient(to bottom,var(--uv-card),transparent); }
.uv-slot-reel::after { bottom:0; background:linear-gradient(to top,var(--uv-card),transparent); }
.uv-slot-body { padding:15px; text-align:center; }
.uv-slot-body h4 { color:var(--uv-gold); font-size:15px; margin-bottom:5px; }
.uv-slot-body p { color:var(--uv-text-dim); font-size:13px; }
.uv-slot-coin { position:absolute; top:8px; right:8px; width:28px; height:28px; background:linear-gradient(135deg,var(--uv-gold),#ffb300); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; z-index:3; }

/* ===== 功能区3: Velvet Curtain (livecasino) ===== */
.uv-curtain-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:25px; }
.uv-curtain-card { background:var(--uv-card); border-radius:0 0 12px 12px; overflow:hidden; border:1px solid var(--uv-border); transition:all .3s; position:relative; }
.uv-curtain-card:hover { border-color:var(--uv-rose); transform:translateY(-5px); box-shadow:0 15px 40px rgba(233,30,99,0.2); }
.uv-curtain-top { height:25px; position:relative; background:linear-gradient(180deg,var(--uv-rose) 0%,var(--uv-purple) 100%); }
.uv-curtain-top::before { content:''; position:absolute; inset:0; background-image:repeating-linear-gradient(90deg,transparent 0,transparent 18px,rgba(0,0,0,0.2) 18px,rgba(0,0,0,0.2) 20px,transparent 20px,transparent 38px,rgba(0,0,0,0.2) 38px,rgba(0,0,0,0.2) 40px); }
.uv-curtain-top::after { content:''; position:absolute; bottom:0; left:0; right:0; height:8px; background:radial-gradient(ellipse at center bottom,rgba(255,213,79,0.3) 0%,transparent 70%); }
.uv-curtain-img { height:160px; overflow:hidden; }
.uv-curtain-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.uv-curtain-card:hover .uv-curtain-img img { transform:scale(1.08); }
.uv-curtain-body { padding:15px; text-align:center; }
.uv-curtain-body h4 { color:var(--uv-gold); font-size:16px; margin-bottom:5px; }
.uv-curtain-body p { color:var(--uv-text-dim); font-size:13px; }

/* ===== 功能区4: Compare - 对比展示式 ===== */
.uv-compare { display:flex; align-items:stretch; gap:20px; flex-wrap:wrap; max-width:900px; margin:0 auto 40px; }
.uv-compare-side { flex:1; min-width:280px; border-radius:14px; padding:30px; position:relative; }
.uv-compare-bad { background:rgba(60,30,30,0.3); border:1px solid rgba(255,80,80,0.2); }
.uv-compare-good { background:linear-gradient(135deg,rgba(142,36,170,0.15),rgba(233,30,99,0.1)); border:1px solid var(--uv-border-gold); box-shadow:0 0 30px rgba(142,36,170,0.15); }
.uv-compare-header { font-size:18px; font-weight:700; margin-bottom:20px; padding-bottom:15px; border-bottom:1px solid rgba(255,255,255,0.1); }
.uv-compare-bad .uv-compare-header { color:#ff8080; }
.uv-compare-good .uv-compare-header { color:var(--uv-gold); }
.uv-compare-list { list-style:none; }
.uv-compare-list li { padding:10px 0; font-size:15px; border-bottom:1px solid rgba(255,255,255,0.05); }
.uv-compare-list li:last-child { border-bottom:none; }
.uv-compare-bad .uv-compare-list li { color:var(--uv-text-dim); }
.uv-compare-good .uv-compare-list li { color:var(--uv-text); }
.uv-compare-vs { display:flex; align-items:center; justify-content:center; font-size:28px; font-weight:800; color:var(--uv-gold); text-shadow:0 0 20px rgba(255,213,79,0.4); }
.uv-compare-btn { margin-top:20px; }
.uv-about-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:900px; margin:0 auto; }
.uv-stat { text-align:center; padding:20px 15px; background:linear-gradient(135deg,rgba(142,36,170,0.15),rgba(233,30,99,0.1)); border-radius:10px; border:1px solid var(--uv-border); transition:all .3s; }
.uv-stat:hover { border-color:var(--uv-gold); transform:scale(1.03); }
.uv-stat-num { display:block; font-size:28px; font-weight:800; background:linear-gradient(135deg,var(--uv-gold),var(--uv-rose)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.uv-stat-label { font-size:13px; color:var(--uv-text-dim); }

/* ===== 功能区5: Luxury Showcase (imgapps) ===== */
.uv-showcase-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:25px; }
.uv-showcase-card { position:relative; border-radius:14px; overflow:hidden; border:2px solid var(--uv-border); background:linear-gradient(135deg,rgba(142,36,170,0.1),rgba(233,30,99,0.05)); transition:all .3s; cursor:pointer; }
.uv-showcase-card:hover { border-color:var(--uv-gold); transform:translateY(-5px) scale(1.02); box-shadow:0 15px 40px rgba(255,213,79,0.15); }
.uv-showcase-img { height:180px; overflow:hidden; position:relative; }
.uv-showcase-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.uv-showcase-card:hover .uv-showcase-img img { transform:scale(1.1); }
.uv-showcase-shine { position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,0.15) 50%,transparent 70%); transition:left .6s; pointer-events:none; }
.uv-showcase-card:hover .uv-showcase-shine { left:100%; }
.uv-showcase-label { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(transparent,rgba(15,5,25,0.9)); color:#fff; padding:25px 15px 12px; font-size:14px; text-align:center; font-weight:600; }
.uv-showcase-label .uv-showcase-tag { display:inline-block; padding:2px 10px; background:linear-gradient(135deg,var(--uv-purple),var(--uv-rose)); border-radius:10px; font-size:11px; color:#fff; margin-bottom:5px; }

/* ===== 功能区6: VS Battle (p2p) ===== */
.uv-vs-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:25px; }
.uv-vs-card { position:relative; border-radius:12px; overflow:hidden; border:1px solid var(--uv-border); transition:all .3s; cursor:pointer; }
.uv-vs-card:hover { border-color:var(--uv-rose); transform:translateY(-5px); box-shadow:0 15px 40px rgba(233,30,99,0.2); }
.uv-vs-img { height:160px; overflow:hidden; position:relative; }
.uv-vs-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.uv-vs-card:hover .uv-vs-img img { transform:scale(1.08); }
.uv-vs-img::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(233,30,99,0.3) 0%,transparent 50%,rgba(142,36,170,0.3) 100%); z-index:1; }
.uv-vs-badge { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2; font-size:22px; font-weight:800; color:#fff; background:linear-gradient(135deg,var(--uv-rose),var(--uv-purple)); width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:2px solid var(--uv-gold); text-shadow:0 0 10px rgba(0,0,0,0.5); }
.uv-vs-body { padding:15px; text-align:center; background:linear-gradient(135deg,rgba(233,30,99,0.08),rgba(142,36,170,0.08)); }
.uv-vs-body h4 { color:var(--uv-gold); font-size:15px; margin-bottom:5px; }
.uv-vs-body p { color:var(--uv-text-dim); font-size:13px; }

/* ===== Articles ===== */
.uv-list-item { display:flex; gap:20px; background:var(--uv-card); border-radius:12px; padding:15px; margin-bottom:15px; border:1px solid var(--uv-border); transition:all .3s; }
.uv-list-item:hover { border-color:var(--uv-purple); }
.uv-list-item .list-img { flex:0 0 200px; height:130px; border-radius:8px; overflow:hidden; }
.uv-list-item .list-img img { width:100%; height:100%; object-fit:cover; }
.uv-list-item .list-body { flex:1; }
.uv-list-item h3 { font-size:18px; margin-bottom:8px; }
.uv-list-item h3 a { color:var(--uv-white); }
.uv-list-item h3 a:hover { color:var(--uv-gold); }
.uv-list-item .list-desc { color:var(--uv-text-dim); font-size:14px; margin-bottom:8px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.uv-list-item .list-meta { font-size:12px; color:var(--uv-text-dim); }
.uv-list-item .list-meta span { margin-right:15px; }

/* ===== Sidebar ===== */
.uv-sidebar-card { background:var(--uv-card); border-radius:12px; padding:20px; margin-bottom:20px; border:1px solid var(--uv-border); }
.uv-sidebar-title { color:var(--uv-gold); font-weight:600; margin-bottom:15px; font-size:16px; }
.uv-sidebar-list { list-style:none; }
.uv-sidebar-list li { padding:8px 0; border-bottom:1px solid rgba(142,36,170,0.12); }
.uv-sidebar-list li:last-child { border-bottom:none; }
.uv-sidebar-list a { color:var(--uv-text); font-size:14px; }
.uv-sidebar-list a:hover { color:var(--uv-gold); }
.uv-tag-cloud { display:flex; flex-wrap:wrap; gap:8px; }
.uv-tag-cloud a { padding:5px 12px; background:rgba(142,36,170,0.12); border:1px solid var(--uv-border); border-radius:20px; font-size:13px; color:var(--uv-text); }
.uv-tag-cloud a:hover { background:var(--uv-purple); color:#fff; }

/* ===== FAQ ===== */
.uv-faq { max-width:800px; margin:0 auto; }
.uv-faq-item { background:var(--uv-card); border:1px solid var(--uv-border); border-radius:10px; margin-bottom:12px; overflow:hidden; transition:all .3s; }
.uv-faq-item:hover { border-color:var(--uv-purple); }
.uv-faq-btn { width:100%; padding:18px 22px; background:none; border:none; color:var(--uv-white); font-size:16px; font-weight:600; font-family:var(--uv-font); text-align:left; cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
.uv-faq-btn::after { content:'+'; color:var(--uv-gold); font-size:24px; transition:transform .3s; }
.uv-faq-btn.active::after { transform:rotate(45deg); }
.uv-faq-answer { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.uv-faq-answer.show { max-height:500px; }
.uv-faq-answer p { padding:0 22px 18px; color:var(--uv-text-dim); font-size:14px; line-height:1.8; }

/* ===== Footer ===== */
.uv-footer { background:var(--uv-bg3); border-top:1px solid var(--uv-border); }
.uv-footer-top { padding:50px 0 30px; border-bottom:1px solid var(--uv-border); }
.uv-footer-logo img { height:50px; margin-bottom:15px; }
.uv-footer-desc { color:var(--uv-text-dim); font-size:14px; line-height:1.8; }
.uv-footer-title { color:var(--uv-gold); font-size:16px; font-weight:600; margin-bottom:15px; }
.uv-footer-links { list-style:none; }
.uv-footer-links li { margin-bottom:10px; }
.uv-footer-links a { color:var(--uv-text-dim); font-size:14px; }
.uv-footer-links a:hover { color:var(--uv-gold); }
.uv-contact-item { color:var(--uv-text-dim); font-size:14px; margin-bottom:8px; }
.uv-footer-cta { margin-top:15px; }
.uv-footer-middle { padding:25px 0; border-bottom:1px solid var(--uv-border); }
.uv-friend-links { margin-bottom:10px; display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
.uv-fl-label { color:var(--uv-text-dim); font-size:14px; }
.uv-fl-item { color:var(--uv-text-dim); font-size:13px; padding:3px 10px; background:rgba(142,36,170,0.08); border-radius:4px; }
.uv-fl-item:hover { color:var(--uv-gold); background:rgba(142,36,170,0.2); }
.uv-footer-bottom { padding:20px 0; text-align:center; }
.uv-footer-bottom p { color:var(--uv-text-dim); font-size:13px; }
.uv-footer-bottom a { color:var(--uv-gold); }
.uv-icp { margin-top:5px; }

/* ===== Breadcrumb & Detail ===== */
.uv-breadcrumb { padding:20px 0; color:var(--uv-text-dim); font-size:14px; }
.uv-breadcrumb a { color:var(--uv-gold); }
.uv-breadcrumb .separator { margin:0 8px; }
.uv-detail { background:var(--uv-card); border-radius:12px; padding:30px; border:1px solid var(--uv-border); margin-bottom:20px; }
.uv-detail-title { font-size:28px; color:var(--uv-white); margin-bottom:15px; }
.uv-detail-meta { display:flex; flex-wrap:wrap; gap:15px; color:var(--uv-text-dim); font-size:13px; margin-bottom:20px; padding-bottom:15px; border-bottom:1px solid var(--uv-border); }
.uv-detail-meta a { color:var(--uv-gold); }
.uv-detail-body { color:var(--uv-text); line-height:1.9; }
.uv-detail-body img { max-width:100%; height:auto; border-radius:8px; margin:15px 0; }
.uv-detail-body p { margin-bottom:15px; }
.uv-detail-nav { display:flex; justify-content:space-between; gap:20px; margin:25px 0; }
.uv-detail-nav .nav-item { flex:1; }
.uv-detail-nav .nav-label { color:var(--uv-text-dim); font-size:12px; margin-bottom:5px; }
.uv-detail-nav a { color:var(--uv-gold); font-size:14px; }
.uv-related { margin-top:30px; }
.uv-related h3 { color:var(--uv-gold); margin-bottom:15px; }
.uv-related-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:15px; }
.uv-news-card { background:var(--uv-card); border-radius:8px; overflow:hidden; border:1px solid var(--uv-border); }
.uv-news-card .news-img { height:120px; overflow:hidden; }
.uv-news-card .news-img img { width:100%; height:100%; object-fit:cover; }
.uv-news-card .news-body { padding:12px; }
.uv-news-card h4 a { color:var(--uv-white); font-size:14px; }
.uv-news-card h4 a:hover { color:var(--uv-gold); }
.uv-news-meta { color:var(--uv-text-dim); font-size:12px; margin-top:5px; }

/* ===== Search ===== */
.uv-search-form { display:flex; gap:10px; margin-bottom:25px; }
.uv-search-form input { flex:1; padding:12px 18px; background:var(--uv-card); border:1px solid var(--uv-border); border-radius:8px; color:var(--uv-text); font-family:var(--uv-font); font-size:15px; }
.uv-search-form input:focus { outline:none; border-color:var(--uv-purple); }
.uv-search-form button { padding:12px 25px; background:linear-gradient(135deg,var(--uv-purple),var(--uv-rose)); color:#fff; border:none; border-radius:8px; font-weight:700; cursor:pointer; font-family:var(--uv-font); }
.uv-no-data { text-align:center; padding:60px 20px; }
.uv-no-data .no-icon { font-size:48px; margin-bottom:15px; }
.uv-no-data p { color:var(--uv-text-dim); }

/* ===== Pagination ===== */
.uv-pagination { text-align:center; margin-top:25px; }
.uv-pagination a, .uv-pagination span { display:inline-block; padding:8px 14px; margin:0 3px; background:var(--uv-card); border:1px solid var(--uv-border); border-radius:6px; color:var(--uv-text); font-size:14px; }
.uv-pagination .current { background:linear-gradient(135deg,var(--uv-purple),var(--uv-rose)); color:#fff; border-color:var(--uv-purple); }

/* ===== Share ===== */
.uv-share-bar { display:flex; flex-wrap:wrap; gap:10px; align-items:center; padding:15px 0; border-top:1px solid var(--uv-border); border-bottom:1px solid var(--uv-border); margin:20px 0; }
.uv-share-bar .share-label { color:var(--uv-text-dim); font-size:14px; }
.uv-share-btn { display:inline-flex; align-items:center; gap:6px; padding:6px 14px; background:var(--uv-card); border:1px solid var(--uv-border); border-radius:20px; color:var(--uv-text); font-size:13px; }
.uv-share-btn:hover { border-color:var(--uv-purple); color:var(--uv-gold); }
.uv-share-btn .share-icon { width:18px; height:18px; }
.uv-share-fixed { position:fixed; left:15px; top:50%; transform:translateY(-50%); z-index:999; display:flex; flex-direction:column; gap:8px; }
.uv-share-fixed .share-label { writing-mode:vertical-rl; color:var(--uv-gold); font-size:12px; margin-bottom:5px; }
.uv-share-fixed .uv-share-btn { padding:8px; border-radius:50%; }
.uv-share-float { position:fixed; bottom:15px; right:15px; z-index:999; display:flex; gap:8px; }
.uv-share-float .uv-share-btn { padding:8px; border-radius:50%; }

/* ===== Responsive ===== */
@media (max-width:991px) {
    .uv-nav-wrap { display:none; }
    .uv-toggle { display:block; }
    .uv-nav-wrap.show { display:block; position:fixed; top:68px; left:0; right:0; background:var(--uv-bg2); padding:15px; max-height:80vh; overflow-y:auto; z-index:999; }
    .uv-nav-wrap.show .uv-nav { flex-direction:column; }
    .uv-header-btns { display:none !important; }
    .uv-compare { flex-direction:column; }
    .uv-compare-vs { padding:5px 0; }
    .uv-share-fixed { display:none; }
    .uv-list-item { flex-direction:column; }
    .uv-list-item .list-img { flex:none; width:100%; height:180px; }
}
@media (max-width:576px) {
    .uv-shield-grid { grid-template-columns:repeat(3,1fr); }
    .uv-shield-img { width:95px; height:110px; }
    .uv-slot-grid { grid-template-columns:repeat(2,1fr); }
    .uv-curtain-grid { grid-template-columns:repeat(2,1fr); }
    .uv-about-stats { grid-template-columns:repeat(2,1fr); }
    .uv-showcase-grid { grid-template-columns:repeat(2,1fr); }
    .uv-vs-grid { grid-template-columns:repeat(2,1fr); }
    .uv-hero-btns { flex-direction:column; align-items:center; }
    .uv-hero-btns a { width:100%; max-width:280px; text-align:center; }
}
