:root { 
  --primary: #5f3d18;
  --accent: #f15e10;
  --bg: #F8F5F0; 
  --white: #fff; 
  --text-main: #2c2c2c; 
  --card-bg: #fff; 
  --red: #e74c3c; 
  --fb: #1877F2; 
  --insta: #E1306C; 
  --success: #2ecc71;
  --gold: #FFD700;
}

[data-theme="dark"] {
  --primary: #D4AF37; 
  --accent: #6F4E37;
  --bg: #121212;
  --white: #1e1e1e;
  --text-main: #f0f0f0;
  --card-bg: #1e1e1e;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; transition: background 0.3s, color 0.3s; }
body { margin: 0; background: var(--bg); font-family: 'Tajawal', sans-serif; direction: rtl; color: var(--text-main); overflow-x: hidden; user-select: none; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes popIn { 0% { transform: scale(0.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes pulseBtn { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
@keyframes rot { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floatY { 0% { transform: translateY(0); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0); } }

.fade-in { animation: fadeIn 0.5s ease-out forwards; }
.slide-up { animation: slideUp 0.4s ease-out forwards; }
.pop-in { animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.float-anim { animation: floatY 3s ease-in-out infinite; }

/* Loader */
#global-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg); z-index: 10001; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s; }
.spin { width: 40px; height: 40px; border: 4px solid #ddd; border-top: 4px solid var(--primary); border-radius: 50%; animation: rot 1s linear infinite; }

/* Offline Badge */
#offline-badge { display: none; position: fixed; top: 0; left: 0; width: 100%; background: #333; color: #fff; text-align: center; padding: 5px; font-size: 0.8rem; z-index: 10002; font-weight: bold; }

/* Toasts */
#toast-container { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 10003; width: 90%; max-width: 350px; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: rgba(0,0,0,0.85); color: #fff; padding: 12px 20px; border-radius: 25px; display: flex; align-items: center; gap: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); pointer-events: auto; }
.toast i { color: var(--accent); }
.toast.success i { color: var(--success); }

/* Gateway UI */
#gate-overlay { display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.gate-card { background: var(--card-bg); width: 100%; max-width: 400px; padding: 25px; border-radius: 35px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.06); max-height: 92vh; display: flex; flex-direction: column; overflow-y: auto; animation: slideUp 0.5s ease; }
.terms-view { flex: 1; height: 350px; overflow-y: auto; border: 2px solid #f0f0f0; background: #fafafa; border-radius: 20px; padding: 15px; margin: 15px 0; text-align: right; font-size: 0.88rem; line-height: 1.8; white-space: pre-wrap; color: #333; }
[data-theme="dark"] .terms-view { background: #2a2a2a; border-color: #333; color: #ddd; }

/* Login Button Style */
.login-btn-tg { background: #2AABEE; color: #fff; text-decoration: none; padding: 15px 30px; border-radius: 25px; font-weight: bold; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 5px 15px rgba(42, 171, 238, 0.3); transition: transform 0.2s; animation: pulseBtn 2s infinite; }
.login-btn-tg:active { transform: scale(0.95); }

/* Dashboard Header */
#main-app { display: none; padding-bottom: 120px; }
.app-header { padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; background: var(--card-bg); border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.lang-pill { background: var(--primary); color: #fff; padding: 6px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; cursor: pointer; border: none; }

/* Daily Quote Card */
.quote-card { margin: 15px; padding: 20px; background: var(--card-bg); border-radius: 20px; border-right: 4px solid var(--accent); display: flex; align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.quote-icon { font-size: 1.5rem; color: var(--accent); margin-left: 15px; }
.quote-text { font-family: 'Amiri', serif; font-size: 1rem; color: var(--primary); font-weight: bold; line-height: 1.8; }

/* Hero Card */
.hero-card { margin: 15px; padding: 45px 25px; border-radius: 35px; color: #fff; position: relative; overflow: hidden; background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.75)), url('https://www2.0zz0.com/2025/12/26/17/891318072.jpg'); background-size: cover; background-position: center; text-align: center; box-shadow: 0 15px 35px rgba(111,78,55,0.3); }
.pts-val { font-size: 4rem; font-weight: 900; color: var(--accent); display: block; margin: 10px 0; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.badge-ui { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); padding: 8px 15px; border-radius: 15px; backdrop-filter: blur(5px); font-weight: bold; font-size: 0.8rem; cursor: pointer; }

/* Grid & Footer */
.grid-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
.feat-box { background: var(--card-bg); padding: 22px; border-radius: 28px; text-align: center; border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: 0.2s; cursor: pointer; }
.feat-box:active { transform: scale(0.95); }
.feat-box i { font-size: 1.8rem; color: var(--accent); margin-bottom: 8px; display: block; transition: transform 0.3s; }
.feat-box:hover i { transform: translateY(-3px); }
.feat-box span { font-size: 0.85rem; font-weight: 800; color: var(--primary); }

.app-footer { text-align: center; padding: 40px 20px 20px; font-size: 0.8rem; color: #999; margin-top: 20px; border-top: 1px dashed #eee; }
.app-footer a { color: var(--primary); text-decoration: none; font-weight: 900; }

/* Story Tab Styles */
.story-header { background: var(--card-bg); margin: 15px; padding: 25px; border-radius: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid var(--accent); text-align: center; }
.story-quote { font-family: 'Amiri', serif; font-size: 1.3rem; color: var(--primary); font-style: italic; margin-bottom: 20px; display: block; line-height: 1.6; }
.story-body { text-align: justify; line-height: 1.9; font-size: 0.95rem; color: var(--text-main); }
.highlight-txt { color: var(--accent); font-weight: bold; }
.story-divider { height: 1px; background: var(--accent); opacity: 0.3; margin: 15px 40px; }

/* Profile & VIP Card */
.vip-card { background: linear-gradient(135deg, var(--primary), #4a342e); margin: 15px; padding: 25px; border-radius: 25px; color: #fff; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(111,78,55,0.4); display: flex; flex-direction: column; justify-content: space-between; min-height: 180px; }
.vip-card::before { content: ''; position: absolute; top: -50px; left: -50px; width: 150px; height: 150px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.vip-card::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px; background: rgba(212,175,55,0.2); border-radius: 50%; }
.vip-header { display: flex; justify-content: space-between; align-items: center; z-index: 2; position: relative; }
.vip-profile-pic { width: 55px; height: 55px; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; box-shadow: 0 2px 10px rgba(0,0,0,0.3); background: #eee; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.5rem; overflow: hidden; }
.vip-profile-pic img { width: 100%; height: 100%; object-fit: cover; }
.vip-chip { width: 45px; height: 30px; background: linear-gradient(45deg, #e6c13d, #8f6e18); border-radius: 6px; position: relative; }
.vip-user-info { z-index: 2; margin-top: 20px; text-align: left; }
.vip-name { font-size: 1.4rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.vip-meta { display: flex; gap: 15px; font-size: 0.8rem; opacity: 0.9; font-family: monospace; }

.settings-list { background: var(--card-bg); margin: 0 15px; border-radius: 25px; padding: 10px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.setting-item { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; border-bottom: 1px solid rgba(0,0,0,0.03); cursor: pointer; transition: background 0.2s; }
.setting-item:last-child { border-bottom: none; }
.setting-item:active { background: rgba(0,0,0,0.02); }
.setting-item i.icon-start { width: 35px; height: 35px; background: rgba(0,0,0,0.04); display: flex; align-items: center; justify-content: center; border-radius: 12px; color: var(--primary); margin-left: 15px; }
.setting-text { flex: 1; font-weight: bold; font-size: 0.95rem; }

/* Transaction History Modal UI */
.history-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #eee; font-size: 0.9rem; }
.history-row:last-child { border-bottom: none; }
.history-reason { font-weight: bold; color: var(--text-main); }
[data-theme="dark"] .history-reason { color: #fff; }
.history-date { font-size: 0.75rem; color: #888; display: block; margin-top: 4px; }
.history-delta.positive { color: var(--success); font-weight: 900; }
.history-delta.negative { color: var(--red); font-weight: 900; }

/* Social Icons */
.social-area { display: flex; justify-content: center; gap: 20px; margin: 25px 0; }
.social-s-btn { width: 45px; height: 45px; background: var(--card-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); color: var(--text-main); font-size: 1.2rem; text-decoration: none; }

/* Podium Styles */
.podium-container { display: flex; justify-content: center; align-items: flex-end; margin: 30px 0; gap: 10px; height: 220px; }
.podium-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.p-avatar { width: 50px; height: 50px; background: #eee; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 3px 10px rgba(0,0,0,0.1); margin-bottom: -15px; z-index: 2; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #888; font-size: 1.2rem; overflow: hidden; object-fit: cover;}
.p-avatar img { width: 100%; height: 100%; object-fit: cover; }
.p-bar { width: 70px; border-radius: 10px 10px 0 0; display: flex; align-items: flex-end; justify-content: center; color: #fff; font-weight: 900; padding-bottom: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.p-name { font-size: 0.75rem; font-weight: bold; margin-bottom: 5px; width: 70px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-score { font-size: 0.7rem; color: #fff; opacity: 0.9; margin-top: 2px; }
.rank-1 .p-bar { height: 140px; background: linear-gradient(to bottom, #FFD700, #FDB931); }
.rank-1 .p-avatar { width: 65px; height: 65px; border-color: #FFD700; color: #d4af37; font-size: 1.5rem; }
.rank-2 .p-bar { height: 100px; background: linear-gradient(to bottom, #E0E0E0, #BDBDBD); }
.rank-3 .p-bar { height: 80px; background: linear-gradient(to bottom, #E7CBA9, #CD7F32); }
.rank-row { display: flex; align-items: center; padding: 12px 15px; background: var(--card-bg); margin-bottom: 8px; border-radius: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.r-pos { font-weight: 900; color: #ccc; width: 30px; font-size: 0.9rem; }
.r-info { flex: 1; font-weight: bold; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.r-img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 1px solid #ddd;}
.r-pts { color: var(--accent); font-weight: 900; font-size: 0.9rem; }

/* In-App Menu Modal */
.menu-modal-body { padding: 20px; width: 100%; max-height: 80vh; overflow-y: auto; text-align: right; }
.menu-cat-title { color: var(--primary); font-size: 1.2rem; font-weight: 900; margin: 25px 0 10px; border-bottom: 2px solid var(--accent); padding-bottom: 5px; display:flex; align-items:center; gap:8px;}
.menu-item-row { display: flex; justify-content: space-between; margin-bottom: 12px; border-bottom: 1px dashed #f0f0f0; padding-bottom: 8px; }
.m-name { font-weight: bold; font-size: 0.9rem; color:#333; }
[data-theme="dark"] .m-name { color: #fff; }
.m-price { color: var(--accent); font-weight: 900; font-family: monospace; background:rgba(241, 94, 16, 0.1); padding:2px 8px; border-radius:10px; }

/* Admin & Cashier Styles */
.admin-section { background: var(--card-bg); margin: 15px 0; padding: 20px; border-radius: 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid var(--accent); }
.admin-input { width: 100%; padding: 15px; border: 2px dashed #ccc; border-radius: 15px; font-size: 1.2rem; text-align: center; margin-bottom: 15px; background: transparent; color: var(--text-main); transition: border-color 0.3s; font-family: monospace; }
.admin-input:focus { border-color: var(--accent); outline: none; }
.admin-btn { width: 100%; padding: 15px; background: var(--accent); color: #fff; border: none; border-radius: 15px; font-weight: bold; font-size: 1.1rem; cursor: pointer; box-shadow: 0 5px 15px rgba(241, 94, 16, 0.3); margin-bottom: 10px; transition: transform 0.2s; }
.admin-btn:active { transform: scale(0.95); }
.admin-btn.secondary { background: var(--primary); box-shadow: 0 5px 15px rgba(95, 61, 24, 0.3); }

/* Cashier / Admin Verification Results */
.result { margin-top: 15px; padding: 15px; border-radius: 10px; text-align: center; line-height: 1.6; }
.result.valid { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.result.invalid { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
[data-theme="dark"] .result.valid { background: rgba(46, 204, 113, 0.15); color: #2ecc71; border-color: #2ecc71; }
[data-theme="dark"] .result.invalid { background: rgba(231, 76, 60, 0.15); color: #e74c3c; border-color: #e74c3c; }

/* Bottom Nav & Perfect Circle FAB Integration */
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; height: 75px; background: var(--card-bg); display: flex !important; flex-direction: row !important; justify-content: space-around; align-items: center; border-top: 1px solid rgba(0,0,0,0.05); z-index: 2000; box-shadow: 0 -5px 20px rgba(0,0,0,0.03); padding: 0 5px; }
.nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; color: #aaa; cursor: pointer; text-decoration: none; }
.nav-item.active { color: var(--primary); }
.nav-item i { font-size: 1.3rem; margin-bottom: 4px; }
.nav-item span { font-size: 0.65rem; font-weight: 800; }

.fab-qr-nav { position: relative; width: 75px; height: 75px; display: flex; align-items: center; justify-content: center; margin-top: -35px; z-index: 2100; }
.fab-inner { width: 65px; height: 65px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; box-shadow: 0 5px 15px rgba(241, 94, 16, 0.4); border: 5px solid var(--card-bg); cursor: pointer; animation: pulseBtn 3s infinite; }

/* SweetAlert Mobile Overrides - Forced Fixes */
div:where(.swal2-container) div:where(.swal2-popup) {
  width: 92% !important;
  max-width: 400px !important;
  border-radius: 25px !important;
  padding: 1.5em 1em !important;
  box-sizing: border-box !important;
}
div:where(.swal2-container) input:where(.swal2-input),
div:where(.swal2-container) select:where(.swal2-select),
div:where(.swal2-container) textarea:where(.swal2-textarea) {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 1em 0 0 0 !important;
  border-radius: 12px !important;
}

/* Modals */
.modal-f { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); z-index: 10005; align-items: center; justify-content: center; flex-direction: column; color: #fff; }

/* Wheel Refactored */
.wheel-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 10;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.5));
}

.wheel-pointer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

#wheel-phys { 
  position: relative; 
  width: 280px; 
  height: 280px; 
  border: 8px solid var(--card-bg); 
  border-radius: 50%; 
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.1, 1);
  overflow: hidden; 
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
  background: #333;
}

/* المركز (المسمار الداخلي للدولاب لعمق 3D) */
#wheel-phys::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, var(--card-bg) 30%, #ccc 80%);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6), inset 0 -3px 5px rgba(0,0,0,0.2);
  z-index: 50;
  border: 3px solid var(--gold);
}

/* QR Tools */
.qr-tools { display: flex; gap: 20px; margin-top: 20px; }
.qr-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.2); border: 1px solid #fff; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; cursor: pointer; backdrop-filter: blur(4px); }
.qr-btn:active { transform: scale(0.9); background: rgba(255,255,255,0.4); }

/* King Tab Styles & Grid */
.king-header { text-align:center; margin-top:30px; }
.challenge-btn { display:block; width:80%; margin: 20px auto; padding: 15px; background: var(--red); color: #fff; border: none; border-radius: 20px; font-weight: 900; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4); animation: pulseBtn 2s infinite; cursor:pointer; z-index:5; position:relative;}
.king-rules { margin: 20px; padding: 20px; background: rgba(0,0,0,0.03); border-radius: 20px; font-size: 0.9rem; color: #666; line-height: 1.8; }
.king-rules ul { padding-right: 20px; margin: 0; }
[data-theme="dark"] .king-rules { background: rgba(255,255,255,0.05); color: #ccc; }

.kings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 15px; padding: 0 20px 20px; }
.king-card { background: var(--card-bg); border-radius: 20px; padding: 15px 10px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: 2px solid transparent; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;}
.king-card.has-king { border-color: var(--gold); }
.king-card.vacant { border: 2px dashed #ccc; opacity: 0.8; }
.k-table-badge { background: var(--primary); color: #fff; font-size: 0.8rem; padding: 4px 10px; border-radius: 12px; margin-bottom: 10px; font-weight: bold; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.k-avatar-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: 10px; background: var(--bg); }
.k-avatar-icon { width: 60px; height: 60px; border-radius: 50%; border: 2px solid #ccc; background: var(--bg); color: #aaa; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 10px; }
.k-name-text { font-size: 0.95rem; font-weight: bold; color: var(--text-main); margin-bottom: 5px; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.k-score-badge { background: rgba(255,215,0,0.2); color: #b8860b; font-size: 0.8rem; padding: 3px 8px; border-radius: 8px; font-weight: bold; }
.vacant .k-name-text { color: #aaa; }

/* Memory Tab Styles & On This Day */
.memory-header { text-align: center; margin-top: 20px; }
.memory-wall-container { width: 100%; height: 400px; background: #F8F5F0; position: relative; margin: 20px 0; border-radius: 20px; box-shadow: inset 0 0 20px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid rgba(95, 61, 24, 0.1); touch-action: none; }
[data-theme="dark"] .memory-wall-container { background: #1a1a1a; border-color: rgba(255,255,255,0.1); }
.wall-bg-logo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('https://www2.0zz0.com/2025/12/26/11/830054007.png'); background-size: 60%; background-repeat: no-repeat; background-position: center; opacity: 0.1; z-index: 0; pointer-events: none; }
.mobile-signature { position: absolute; width: 100px; height: 100px; z-index: 1; }
.mobile-signature path { fill: none; stroke: #5f3d18; stroke-width: 2; stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawSignMobile 3s forwards; }
[data-theme="dark"] .mobile-signature path { stroke: #D4AF37; }
@keyframes drawSignMobile { to { stroke-dashoffset: 0; } }
.add-memory-btn { width: 90%; margin: 0 auto; display: block; padding: 15px; background: var(--primary); color: #fff; border: none; border-radius: 15px; font-weight: bold; font-size: 1rem; box-shadow: 0 5px 15px rgba(95, 61, 24, 0.3); cursor: pointer; transition: transform 0.2s; }
.add-memory-btn:active { transform: scale(0.95); }

.otd-card { background: var(--card-bg); border: 2px solid var(--accent); border-radius: 20px; padding: 20px; margin: 15px 20px; text-align: center; display: none; box-shadow: 0 5px 15px rgba(241, 94, 16, 0.1); position: relative; overflow: hidden; }
.otd-card h3 { color: var(--primary); margin-top: 0; margin-bottom: 15px; font-size: 1.1rem; font-weight: 900;}
.otd-svg-wrapper { width: 100%; height: 150px; background: var(--bg); border-radius: 15px; border: 1px dashed #ccc; display: flex; align-items: center; justify-content: center; }