/* ========== 小黄书 - 完整样式表 ========== */
* { margin:0; padding:0; box-sizing:border-box; }

@font-face {
    font-family: 'MSYHFont';
    src: url('../fonts/msyh.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --primary: #ff2e4d;
  --primary-dark: #e6273f;
  --primary-light: #fff0f2;
  --bg: #f7f7f7;
  --card-bg: rgba(255,255,255,0.7);
  --text: #222;
  --text-secondary: #666;
  --text-light: #999;
  --border: rgba(255,255,255,0.2);
  --glass-bg: rgba(255,255,255,0.55);
  --glass-border: rgba(255,255,255,0.25);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========== 顶部导航 ========== */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.logo { font-size: 22px; font-weight: 800; letter-spacing: -1px; color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: 15px; color: var(--text-secondary); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.user-menu {
  display: flex; align-items: center; gap: 12px; padding: 4px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.5); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}
.avatar-sm { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; }
.user-menu span { font-size: 14px; font-weight: 500; color: var(--text); }
@media (max-width: 768px) { .nav-links { display: none; } .navbar .container { justify-content: space-between; } }

/* ========== 汉堡按钮 ========== */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; background: rgba(255,255,255,0.5); backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); border-radius: 50%; cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 2.5px 0; border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) { .hamburger { display: flex; } }

/* ========== 移动端菜单 ========== */
.mobile-menu {
  display: block; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease; opacity: 0;
  background: var(--glass-bg); backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid var(--glass-border);
}
.mobile-menu.open { max-height: 80vh; opacity: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mobile-menu-item { display: block; padding: 14px 24px; font-size: 16px; color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-menu-item:hover { background: rgba(255,255,255,0.5); color: var(--primary); }
.menu-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 6px 0; }

/* ========== 用户下拉菜单 ========== */
.dropdown { position: relative; }
.dropdown-toggle { background: transparent; border: none; cursor: pointer; font-size: 12px; color: var(--text-secondary); padding: 0 2px; }
.dropdown-content {
  display: none; position: absolute; right: 0; top: 100%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: 12px;
  box-shadow: var(--shadow-md); min-width: 160px; padding: 5px 0; z-index: 1000;
  max-height: 70vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { display: block; padding: 10px 16px; font-size: 13px; color: var(--text); white-space: nowrap; }
.dropdown-content a:hover { background: rgba(255,46,77,0.05); color: var(--primary); }

/* ========== 分类卡片 ========== */
.category-filter {
  display: flex; flex-wrap: nowrap; gap: 10px; margin: 14px 0 12px; padding: 4px 2px 8px 2px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.category-filter::-webkit-scrollbar { display: none; }
.filter-item {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  min-width: 72px; height: 40px; padding: 0 16px; background: #fff; border-radius: 14px;
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  white-space: nowrap; text-decoration: none; border: 1.5px solid #f0f0f0;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.filter-item:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.filter-item.active { background: var(--primary); color: #fff; font-weight: 700; border-color: transparent; }
.filter-item:active { transform: scale(0.94); }

/* ========== 笔记卡片 ========== */
.notes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
.note-card {
  background: var(--card-bg); backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--glass-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.note-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.note-cover { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: #f0f0f0; }
.note-cover-wrapper { position: relative; }
.video-overlay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 32px; color: #fff; background: rgba(0,0,0,0.5); border-radius: 50%;
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.note-body { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; }
.note-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; line-height: 1.35; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.note-content { font-size: 13px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
.note-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-light); margin-top: auto; }
.author { display: flex; align-items: center; gap: 5px; min-width: 0; }
.avatar-placeholder { width: 20px; height: 20px; border-radius: 50%; background: rgba(0,0,0,0.08); flex-shrink: 0; }
.stats { white-space: nowrap; font-size: 12px; }
.level-badge { display: inline-block; padding: 2px 8px; border-radius: 10px; background: var(--primary-light); color: var(--primary); font-weight: 600; font-size: 12px; }

@media (min-width: 768px) { .notes-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .notes-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1440px) { .notes-grid { grid-template-columns: repeat(5, 1fr); } }

/* ========== 按钮 ========== */
.btn {
  display: inline-block; padding: 11px 24px; background: var(--primary); color: #fff;
  border: none; border-radius: 24px; cursor: pointer; font-size: 14px; font-weight: 600;
  transition: var(--transition); text-align: center; box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.btn:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-sm { padding: 6px 14px; font-size: 13px; border-radius: 20px; }
.btn-block { width: 100%; }

/* ========== 表单 ========== */
.form-container {
  max-width: 420px; margin: 24px auto; background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--glass-shadow);
}
.form-container h2 { text-align: center; margin-bottom: 20px; font-size: 22px; color: var(--text); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 14px; color: var(--text-secondary); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm); font-size: 15px;
  background: rgba(255,255,255,0.6); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,46,77,0.1); outline: none; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input[type="file"] { padding: 8px; background: rgba(255,255,255,0.4); }

/* ========== 笔记详情 ========== */
.note-detail {
  background: var(--card-bg); backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 16px; margin-top: 12px; box-shadow: var(--glass-shadow);
}
.note-detail h1 { font-size: 20px; margin-bottom: 6px; line-height: 1.3; color: var(--text); }
.note-detail .author { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; flex-wrap: wrap; }
.note-detail .author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.content-text { white-space: pre-wrap; font-size: 15px; line-height: 1.6; margin: 14px 0; color: var(--text); }
.note-stats { display: flex; gap: 20px; font-size: 14px; color: var(--text-secondary); margin: 10px 0; }
.note-actions { display: flex; gap: 16px; margin: 14px 0; align-items: center; }

/* ========== 评论区域 ========== */
.comments-section { margin-top: 20px; }
.comments-section h3 { font-size: 16px; margin-bottom: 10px; color: var(--text); }
.comment-item { display: flex; align-items: flex-start; gap: 8px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.comment-item img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.comment-content { flex: 1; font-size: 14px; color: var(--text); }
.comment-user { font-weight: 600; margin-right: 4px; }
.comment-time { color: var(--text-light); font-size: 11px; margin-left: 6px; }
.no-comments { text-align: center; padding: 24px 0; color: var(--text-light); font-size: 14px; }
.top-comments { background: var(--primary-light); border-radius: 12px; padding: 10px; margin-bottom: 10px; }
.top-label { font-size: 12px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.comment-item.top { background: rgba(255,255,255,0.6); border-radius: 8px; padding: 8px; }

/* ========== 表格 ========== */
.table {
  width: 100%; border-collapse: collapse; background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--glass-shadow); font-size: 14px;
}
.table th, .table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(0,0,0,0.05); }
.table th { background: rgba(255,255,255,0.3); font-weight: 600; color: var(--text-secondary); }
.table img { width: 50px; height: 38px; object-fit: cover; border-radius: 6px; }
.status-badge { padding: 2px 8px; border-radius: 10px; font-size: 11px; display: inline-block; font-weight: 500; }
.status-0 { background: var(--primary-light); color: var(--primary); }
.status-1 { background: #e8f5e9; color: #2e7d32; }
.status-2 { background: #fff3e0; color: #f57c00; }
.badge-video { display: inline-block; margin-left: 4px; padding: 1px 5px; font-size: 10px; background: var(--primary); color: #fff; border-radius: 4px; }

/* ========== 图片轮播 ========== */
.image-carousel { position: relative; max-width: 100%; margin: 14px 0; overflow: hidden; border-radius: var(--radius); background: rgba(0,0,0,0.03); }
.carousel-track { display: flex; transition: transform 0.3s ease; }
.carousel-slide { min-width: 100%; display: none; }
.carousel-slide.active { display: block; }
.carousel-slide img { width: 100%; max-height: 400px; object-fit: contain; border-radius: var(--radius); }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: #fff; border: none; padding: 6px 10px; cursor: pointer; font-size: 16px; border-radius: 50%; }
.carousel-btn.prev { left: 6px; }
.carousel-btn.next { right: 6px; }
.carousel-indicators { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; }
.indicator { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; }
.indicator.active { background: #fff; width: 18px; border-radius: 3px; }

/* ========== 公告弹窗 ========== */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-card { width: 90%; max-width: 360px; background: #fff; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); padding: 20px; transform: scale(0.8); transition: transform 0.3s; }
.modal-overlay.show .modal-card { transform: scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.modal-title { font-size: 18px; font-weight: 700; color: var(--primary); }
.modal-close { background: #f0f0f0; border: none; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 14px; color: #666; display: flex; align-items: center; justify-content: center; }
.modal-body { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.modal-item { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; }
.modal-label { flex-shrink: 0; background: var(--primary-light); color: var(--primary); padding: 2px 10px; border-radius: 10px; font-weight: 600; white-space: nowrap; }
.modal-text { color: var(--text); }
.modal-footer .btn { width: 100%; }

/* ========== 视频容器 ========== */
.video-container { margin: 14px 0; position: relative; }
.video-cover-placeholder { background: #333; display: flex; align-items: center; justify-content: center; aspect-ratio: 3/4; }
.video-play-icon { font-size: 40px; color: rgba(255,255,255,0.8); }
.video-thumb { width: 50px; height: 38px; background: #333; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }

/* ========== 头像 ========== */
img.avatar-img { width: 28px !important; height: 28px !important; border-radius: 50% !important; object-fit: cover !important; flex-shrink: 0 !important; display: inline-block !important; }
.user-menu img.avatar-img { width: 32px !important; height: 32px !important; }
.note-detail .author img.avatar-img { width: 36px !important; height: 36px !important; }
.comment-item img.avatar-img { width: 30px !important; height: 30px !important; }

/* ========== 提示消息 ========== */
.alert { padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 14px; font-size: 13px; background: rgba(255,255,255,0.6); }
.alert-error { background: rgba(255,46,77,0.1); color: #c62828; }
.alert-success { background: rgba(46,125,50,0.1); color: #2e7d32; }
.alert-info { background: rgba(21,101,192,0.1); color: #1565c0; }

/* ========== 分页 ========== */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin: 30px 0 20px; }
.page-link {
  display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px;
  background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border);
  border-radius: 12px; font-size: 14px; font-weight: 500; color: var(--text);
}
.page-link:hover { background: #fff; border-color: var(--primary); color: var(--primary); }
.page-link.active { background: var(--primary); color: #fff; font-weight: 700; border-color: transparent; }
.page-dots { color: var(--text-light); font-size: 16px; padding: 0 4px; }

/* ========== 全屏/下载按钮 ========== */
.fullscreen-btn { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.4); color: #fff; border: none; padding: 6px 10px; border-radius: 6px; cursor: pointer; font-size: 14px; z-index: 10; }
.download-buttons { margin: 10px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.download-buttons a { flex: 1 1 auto; text-align: center; min-width: 120px; }

/* ========== 打卡区域 ========== */
.checkin-box { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; text-align: center; box-shadow: var(--glass-shadow); }

/* ========== 主题选择卡片 ========== */
.theme-card { background: #fff; border-radius: 14px; padding: 16px; text-align: center; box-shadow: var(--shadow-sm); cursor: pointer; transition: var(--transition); }
.theme-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ========== 页脚 ========== */
.footer { background: transparent; padding: 20px 0; text-align: center; color: var(--text-light); font-size: 13px; }

/* ========== 收藏本站引导 ========== */
.fav-guide {
  margin: 16px 0 8px;
  background: linear-gradient(135deg, rgba(255,46,77,0.08), rgba(255,107,129,0.12));
  border: 1px solid rgba(255,46,77,0.15);
  border-radius: 16px;
  padding: 14px 16px;
}
.fav-guide-content { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fav-guide-icon { font-size: 28px; flex-shrink: 0; }
.fav-guide-text { flex: 1; min-width: 160px; }
.fav-guide-title { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.fav-guide-desc { font-size: 12px; color: var(--text-secondary); }
.fav-guide-desc kbd { display: inline-block; padding: 1px 6px; background: #fff; border: 1px solid #ddd; border-radius: 4px; font-size: 11px; font-family: monospace; color: #333; font-weight: 600; }
.fav-guide-btn { background: var(--primary); color: #fff; border: none; padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; }
.fav-guide-btn:hover { background: var(--primary-dark); }
.fav-guide-close { background: transparent; border: none; color: var(--text-light); font-size: 16px; cursor: pointer; padding: 4px 8px; }
.fav-guide-close:hover { color: var(--primary); }

/* ========== 上传进度条 ========== */
.progress-wrap { display: none; margin: 15px 0; padding: 14px 18px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); }
.progress-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; display: flex; justify-content: space-between; }
.progress-bar-bg { width: 100%; height: 10px; background: rgba(0,0,0,0.08); border-radius: 10px; overflow: hidden; }
.progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); border-radius: 10px; transition: width 0.2s ease; }
.progress-bar.success { background: linear-gradient(90deg, #4caf50, #388e3c); }
.progress-bar.error { background: linear-gradient(90deg, #f44336, #c62828); }

/* ========== 滚动横幅（跑马灯 - 关键修复） ========== */
.marquee-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  margin: 12px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.marquee-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation-name: marqueeScroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.marquee-content span {
  display: block;
  flex-shrink: 0;
  color: #000000 !important;
  font-family: 'MSYHFont', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 0 60px;
  white-space: nowrap;
  line-height: 44px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== 移动端优化 ========== */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .navbar .container { height: 54px; }
  .hamburger { width: 38px; height: 38px; }
  .hamburger span { width: 18px; margin: 2px 0; }
  .category-filter { gap: 8px; margin: 12px 0 10px; padding: 2px 2px 6px 2px; }
  .filter-item { min-width: 68px; height: 38px; padding: 0 14px; font-size: 13px; border-radius: 13px; }
  .notes-grid { gap: 8px; }
  .note-card { border-radius: 14px; }
  .note-body { padding: 8px 10px 10px; }
  .note-title { font-size: 13px; }
  .note-content { font-size: 11px; }
  .note-meta { font-size: 10px; }
  .page-link { min-width: 36px; height: 36px; padding: 0 10px; font-size: 13px; }
  .dropdown-content { max-height: 60vh; min-width: 140px; }
  .marquee-banner { height: 40px; border-radius: 10px; }
  .marquee-content span { font-size: 14px; padding: 0 40px; line-height: 40px; }
}

/* ========== 主题定义（8套） ========== */
body.theme-default { --primary: #ff2e4d; --primary-dark: #e6273f; --primary-light: #fff0f2; --bg: #f7f7f7; --card-bg: rgba(255,255,255,0.7); --text: #222; --text-secondary: #666; --text-light: #999; --glass-bg: rgba(255,255,255,0.55); --glass-border: rgba(255,255,255,0.25); }
body.theme-blue { --primary: #2196f3; --primary-dark: #1976d2; --primary-light: #e3f2fd; --bg: #e3f2fd; --card-bg: rgba(255,255,255,0.75); --text: #0d47a1; --text-secondary: #1565c0; --text-light: #64b5f6; --glass-bg: rgba(255,255,255,0.6); --glass-border: rgba(255,255,255,0.4); }
body.theme-tech { --primary: #00bcd4; --primary-dark: #0097a7; --primary-light: #004d40; --bg: #121212; --card-bg: rgba(30,30,30,0.85); --text: #e0e0e0; --text-secondary: #b0bec5; --text-light: #78909c; --glass-bg: rgba(0,0,0,0.5); --glass-border: rgba(255,255,255,0.15); }
body.theme-dark { --primary: #ff2e4d; --primary-dark: #e6273f; --primary-light: #2d1b1b; --bg: #1a1a1a; --card-bg: rgba(45,45,45,0.85); --text: #f5f5f5; --text-secondary: #aaa; --text-light: #777; --glass-bg: rgba(0,0,0,0.6); --glass-border: rgba(255,255,255,0.1); }
body.theme-green { --primary: #4caf50; --primary-dark: #388e3c; --primary-light: #e8f5e9; --bg: #f1f8e9; --card-bg: rgba(255,255,255,0.7); --text: #1b5e20; --text-secondary: #2e7d32; --text-light: #81c784; --glass-bg: rgba(255,255,255,0.55); --glass-border: rgba(255,255,255,0.3); }
body.theme-yellow { --primary: #f9a825; --primary-dark: #f57f17; --primary-light: #fff8e1; --bg: #fffde7; --card-bg: rgba(255,255,255,0.75); --text: #f57f17; --text-secondary: #f9a825; --text-light: #fbc02d; --glass-bg: rgba(255,255,255,0.6); --glass-border: rgba(255,255,255,0.4); }
body.theme-purple { --primary: #9c27b0; --primary-dark: #7b1fa2; --primary-light: #f3e5f5; --bg: #fce4ec; --card-bg: rgba(255,255,255,0.75); --text: #4a148c; --text-secondary: #6a1b9a; --text-light: #ab47bc; --glass-bg: rgba(255,255,255,0.6); --glass-border: rgba(255,255,255,0.4); }
body.theme-rainbow { --primary: #ff6b6b; --primary-dark: #ee5a24; --primary-light: #ffe0e0; --bg: #fff8f0; --card-bg: rgba(255,255,255,0.75); --text: #2c3e50; --text-secondary: #e74c3c; --text-light: #f39c12; --glass-bg: rgba(255,255,255,0.6); --glass-border: rgba(255,255,255,0.4); }
