:root {
    --theme-r: 0; --theme-g: 240; --theme-b: 255;
    --theme-main: rgb(var(--theme-r), var(--theme-g), var(--theme-b));
    --theme-glass-light: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 0.1);
    --theme-glass-medium: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 0.25);
    --theme-glass-heavy: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 0.5);
    
    --bg-base: #050505; 
    --text-main: #FFFFFF;
    --text-sub: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 30, 35, 0.7);
    --nav-bg: rgba(20, 20, 22, 0.85);
}

body.light-mode {
    --bg-base: #FFFFFF !important; 
    --text-main: #000000 !important;
    --text-sub: rgba(0, 0, 0, 0.6) !important;
    --border-color: rgba(0, 0, 0, 0.08) !important;
    --card-bg: #FFFFFF !important;
    --nav-bg: rgba(255, 255, 255, 0.9) !important;
    --theme-glass-light: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 0.15) !important;
    --theme-glass-medium: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 0.25) !important;
    --theme-glass-heavy: rgba(var(--theme-r), var(--theme-g), var(--theme-b), 0.8) !important;
}

html { background-color: var(--bg-base) !important; min-height: 100vh; margin: 0 !important; padding: 0 !important; width: 100vw !important; max-width: 100vw !important; overflow-x: hidden !important; }
body { background-color: var(--bg-base) !important; min-height: 100vh; margin: 0 !important; padding: 0 !important; width: 100vw !important; max-width: 100vw !important; overflow-x: hidden !important; position: relative; color: var(--text-main); padding-bottom: 130px !important; background-image: radial-gradient(circle at top left, var(--theme-glass-medium), transparent 70%), radial-gradient(circle at bottom right, var(--theme-glass-light), transparent 70%); background-attachment: fixed; }
.app-wrapper { width: 100vw !important; max-width: 100vw !important; overflow-x: hidden !important; position: relative; }
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif; transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }

.glow-orb-1 { position: fixed; top: -100px; right: -50px; width: 350px; height: 350px; background: var(--theme-main); border-radius: 50%; filter: blur(120px); opacity: 0.35; z-index: -1; animation: float 8s infinite alternate ease-in-out; }
.glow-orb-2 { position: fixed; bottom: 50px; left: -100px; width: 300px; height: 300px; background: var(--theme-main); border-radius: 50%; filter: blur(140px); opacity: 0.25; z-index: -1; animation: float 10s infinite alternate-reverse ease-in-out; }

.announcement-banner { background: var(--theme-glass-heavy); color: var(--text-main); padding: 8px 30px 8px 15px; position: relative; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); font-size: 13px; font-weight: bold; z-index: 101; display: flex; align-items: center; overflow: hidden; width: 100%; box-sizing: border-box; }
.close-announcement { position: absolute; inset-inline-start: 15px; cursor: pointer; font-size: 20px; font-weight: normal; z-index: 10;}

header { padding: 30px 20px 10px 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 90; background: linear-gradient(to bottom, var(--bg-base), transparent); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.logo-text { font-size: 34px; font-weight: 900; letter-spacing: -1px; margin: 0; color: var(--text-main); }
.logo-dot { color: var(--theme-main); text-shadow: 0 0 10px var(--theme-glass-heavy); }
.cert-status { background: rgba(57, 255, 20, 0.15); border: 1px solid rgba(57, 255, 20, 0.4); color: #39FF14; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 800; }
body.light-mode .cert-status { background: rgba(52, 199, 89, 0.1); color: #34C759; border-color: rgba(52, 199, 89, 0.4); }

.search-container, .slider-container { display: none; } 

.modern-search-wrapper { position: relative; width: 100%; margin-bottom: 15px; }
.modern-search-input { width: 100%; padding: 14px; padding-inline-end: 45px; padding-inline-start: 20px; border-radius: 20px; background: var(--card-bg); border: 1px solid var(--border-color); color: var(--text-main); font-size: 15px; font-weight: 600; backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); outline: none; transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.modern-search-input:focus { border-color: var(--theme-main); box-shadow: 0 0 15px var(--theme-glass-medium); }
.search-icon { position: absolute; inset-inline-end: 15px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; fill: var(--text-sub); transition: fill 0.3s ease; pointer-events: none; }
.modern-search-input:focus + .search-icon { fill: var(--theme-main); }
body.light-mode .modern-search-input { background: #FFFFFF; border-color: rgba(0, 0, 0, 0.1); color: #000; box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
body.light-mode .modern-search-input:focus { border-color: var(--theme-main); }

.premium-featured-scroll { display: flex; gap: 15px; overflow-x: auto; padding: 10px 0px 25px 0px; margin: 0; scroll-snap-type: x mandatory; scrollbar-width: none; width: 100%; }
.premium-featured-scroll::-webkit-scrollbar { display: none; }
.premium-featured-card { min-width: 85vw; max-width: 350px; background: linear-gradient(160deg, rgba(35, 35, 38, 0.7), rgba(20, 20, 22, 0.9)); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 28px; padding: 20px; scroll-snap-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.3); position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 15px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); cursor: pointer; transition: transform 0.2s; }
.premium-featured-card:active { transform: scale(0.98); }
body.light-mode .premium-featured-card { background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 245, 0.95)); border-color: rgba(0, 0, 0, 0.08); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }

.pfc-header { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; z-index: 2;}
.pfc-body { display: flex; align-items: center; gap: 15px; z-index: 2;}
.pfc-icon-wrapper { width: 75px !important; height: 75px !important; flex: 0 0 75px !important; border-radius: 20px; overflow: hidden; background: var(--theme-glass-medium); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.pfc-icon-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.pfc-info { flex-grow: 1; overflow: visible; text-align: start; min-width: 0; }
.pfc-info h3 { margin: 0 0 6px 0; font-size: 18px; font-weight: 900; color: var(--text-main); white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.pfc-info-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pfc-tag { background: var(--theme-glass-light); color: var(--text-main); font-size: 11px; font-weight: 800; padding: 4px 8px; border-radius: 8px; border: 1px solid var(--border-color); }
body.light-mode .pfc-tag { background: rgba(0,0,0,0.05); color: #000; border-color: rgba(0,0,0,0.1); }

.pfc-footer { margin-top: auto; z-index: 2;}
.pfc-get-btn { width: 100%; border: none; padding: 12px; border-radius: 16px; font-size: 15px; font-weight: 900; text-transform: uppercase; pointer-events: none; }
.pfc-glow { position: absolute; top: -50px; inset-inline-end: -50px; width: 120px; height: 120px; border-radius: 50%; filter: blur(60px); opacity: 0.15; z-index: 0; pointer-events: none; }
.pfc-glow-top { background: #FF3B30; }
.pfc-glow-new { background: #34C759; }
.pfc-glow-update { background: #007AFF; }

/* 🏷️ جۆرەکان */
.category-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 15px; margin-top: 10px; scrollbar-width: none; }
.category-scroll::-webkit-scrollbar { display: none; }
.category-pill { padding: 8px 18px; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; font-size: 14px; font-weight: 600; white-space: nowrap; cursor: pointer; color: var(--text-main); }
.category-pill.active { background: var(--theme-main); color: #000; border-color: var(--theme-main); box-shadow: 0 0 15px var(--theme-glass-heavy); }

/* بەشەکان */
.section { display: none; padding: 10px 20px; animation: massivePopIn 0.5s forwards; width: 100%; max-width: 100%; box-sizing: border-box; overflow-x: hidden; }
.section.active { display: block; }
.section-title { font-size: 22px; font-weight: 800; margin: 20px 0 15px 0; color: var(--text-main); }
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.bento-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 24px; backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); color: var(--text-main); padding: 18px; text-align: center; display: flex; flex-direction: column; align-items: center; cursor: pointer; }
body.light-mode .bento-card { background: #FFFFFF !important; box-shadow: 0 8px 25px rgba(0,0,0,0.05); }

.modern-app-icon-wrapper { width: 65px !important; height: 65px !important; min-width: 65px !important; min-height: 65px !important; max-width: 65px !important; max-height: 65px !important; flex: 0 0 65px !important; border-radius: 18px !important; position: relative !important; display: block !important; }
.app-icon-bento { width: 60px !important; height: 60px !important; min-width: 60px !important; min-height: 60px !important; max-width: 60px !important; max-height: 60px !important; flex: 0 0 60px !important; border-radius: 16px !important; margin: 0 auto 12px auto !important; display: flex; justify-content: center; align-items: center; position: relative !important; }
.modal-icon { width: 80px !important; height: 80px !important; min-width: 80px !important; min-height: 80px !important; max-width: 80px !important; max-height: 80px !important; flex: 0 0 80px !important; border-radius: 20px !important; position: relative !important; display: block !important; margin-top: 10px;}
.modern-app-icon-wrapper img, .app-icon-bento img, .modal-icon img { width: 100% !important; height: 100% !important; object-fit: cover !important; position: absolute !important; top: 0 !important; left: 0 !important; display: block !important; border-radius: inherit !important; }

.app-badge { position: absolute; top: -6px; inset-inline-end: -6px; padding: 4px 10px; border-radius: 10px; font-size: 10px; font-weight: 900; color: white !important; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 100; text-transform: uppercase; }
[dir="rtl"] .app-badge { left: -6px; right: auto; }
[dir="ltr"] .app-badge { right: -6px; left: auto; }
.badge-HOT, .badge-TOP { background: #FF3B30 !important; } 
.badge-NEW { background: #34C759 !important; }
.badge-UPDATE { background: #007AFF !important; }

.bento-title { font-size: 16px; font-weight: 700; margin: 0 0 5px 0; color: var(--text-main); }
.bento-sub { font-size: 12px; color: var(--text-sub); margin: 0 0 12px 0; }

.btn-cyber { background: var(--theme-glass-light); color: var(--text-main); border: 1px solid var(--border-color); padding: 8px 18px; border-radius: 16px; font-size: 14px; font-weight: 800; cursor: pointer; width: 100%; display: flex; justify-content: center; align-items: center; gap: 8px;}
body.light-mode .btn-cyber:not(.btn-primary) { background: rgba(0, 0, 0, 0.05); }
.btn-primary { background: var(--theme-main); color: #000 !important; border: none; box-shadow: 0 4px 15px var(--theme-glass-heavy); }

.ultra-list { display: flex; flex-direction: column; gap: 15px; width: 100%; }

.nav-pill { position: fixed; bottom: 35px; left: 0; right: 0; margin: 0 auto; width: 90%; max-width: 400px; background: var(--nav-bg); backdrop-filter: blur(40px) saturate(200%); -webkit-backdrop-filter: blur(40px) saturate(200%); border: 1px solid var(--border-color); border-radius: 40px; display: flex; justify-content: space-around; padding: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 1000; }
body.light-mode .nav-pill { box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.nav-btn { width: 65px; height: 55px; border-radius: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-sub); font-size: 11px; font-weight: 700; cursor: pointer; gap: 2px;}
.nav-btn svg { width: 24px; height: 24px; fill: currentColor; }
.nav-btn.active { background: var(--theme-glass-heavy); color: var(--text-main); }
body.light-mode .nav-btn.active { background: var(--theme-glass-light); color: var(--theme-main); }

/* =========================================
   🍎 دیزاینی ئەپڵ ستۆری ئەسڵی بۆ مۆداڵ 🍎
========================================= */

.modal-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.7); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); 
    z-index: 2000; display: none; align-items: flex-end; justify-content: center;
}

/* 🔴 باڵای مۆداڵەکە زۆر بچووک کرایەوە بۆ 75vh 🔴 */
.ios-app-page { 
    width: 100%; max-width: 800px; height: 75vh; 
    background: var(--bg-base); border-radius: 25px 25px 0 0; position: relative; 
    display: flex; flex-direction: column; overflow: hidden; 
    animation: slideUpApp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1); box-shadow: 0 -10px 40px rgba(0,0,0,0.5); 
}
@keyframes slideUpApp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.ios-pull-indicator {
    width: 40px; height: 5px; background: rgba(150,150,150,0.5); 
    border-radius: 10px; margin: 8px auto; position: absolute; left: 0; right: 0; top: 0; z-index: 50;
}

.ios-cover-bg { position: absolute; top: 0; left: 0; width: 100%; height: 150px; background-size: cover; background-position: center; filter: blur(40px) brightness(0.6); opacity: 0.6; z-index: 0; mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); transition: background-image 0.5s ease;}
body.light-mode .ios-cover-bg { opacity: 0.3; filter: blur(40px) brightness(1); }

.ios-top-nav { position: absolute; top: 0; left: 0; width: 100%; padding: calc(15px + env(safe-area-inset-top)) 20px 15px 20px; display: flex; justify-content: space-between; align-items: center; z-index: 20; transition: background 0.3s;}
.ios-nav-btn { width: 36px; height: 36px; background: rgba(0,0,0,0.5); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; cursor: pointer; transition: transform 0.2s;}
.ios-nav-btn:active { transform: scale(0.9); }
.ios-nav-title { font-size: 16px; font-weight: 800; color: #fff; opacity: 0; transition: opacity 0.3s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 50%; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

.ios-nav-actions-pill { display: flex; align-items: center; background: rgba(0,0,0,0.5); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 20px; padding: 0 14px; height: 36px; gap: 16px;}
.ios-nav-icon { color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color 0.2s;}

.ios-feature-banner { width: 100%; height: 180px; display: none; background: var(--theme-glass-light); position: relative; z-index: 1;}
.ios-feature-banner img { width: 100%; height: 100%; object-fit: cover; display: block;}
.ios-feature-banner::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; background: linear-gradient(to top, var(--bg-base), transparent); }

.ios-page-content { flex-grow: 1; overflow-y: auto; overflow-x: hidden; position: relative; z-index: 10; padding-bottom: 50px;}
.ios-page-content::-webkit-scrollbar { display: none; }

.ios-header-layout { display: flex; gap: 18px; padding: 20px; align-items: flex-start; position: relative; z-index: 2;}
.ios-app-icon { width: 100px; height: 100px; min-width: 100px; border-radius: 22px; background: var(--card-bg); box-shadow: 0 12px 30px rgba(0,0,0,0.3); position: relative; border: 1px solid rgba(255,255,255,0.1);}
body.light-mode .ios-app-icon { box-shadow: 0 10px 25px rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.05);}
.ios-app-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

.ios-app-info { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; padding-top: 5px;}
.ios-app-info h2 { margin: 0 0 4px 0; font-size: 20px; font-weight: 900; line-height: 1.2; color: var(--text-main); letter-spacing: -0.5px;}
.ios-app-info .category { margin: 0 0 6px 0; font-size: 13px; font-weight: 600; color: var(--text-sub); }
.ios-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; font-size: 12px; font-weight: 600; color: var(--text-sub); }
.ios-rating .stars { color: #FFD700; font-size: 15px; letter-spacing: 1px; text-shadow: 0 1px 3px rgba(0,0,0,0.3);}

.ios-action-row { display: flex; gap: 10px; align-items: center;}
.ios-get-btn { background: rgba(0, 240, 255, 0.1); color: #00F0FF; border: none; font-size: 14px; font-weight: 900; padding: 7px 22px; border-radius: 18px; text-transform: uppercase; cursor: pointer; transition: transform 0.2s;}
.ios-get-btn:active { transform: scale(0.95); }
body.light-mode .ios-get-btn { background: rgba(0, 122, 255, 0.1); color: #007AFF; }

.ios-meta-pills { display: flex; gap: 12px; padding: 10px 20px 25px 20px; border-bottom: 1px solid var(--border-color); position: relative; z-index: 2;}
.ios-pill { flex: 1; padding: 10px; border-radius: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 800; border: 1px solid var(--border-color);}
.version-pill { background: rgba(0, 240, 255, 0.05); color: #00F0FF; border-color: rgba(0, 240, 255, 0.2);}
.size-pill { background: var(--theme-glass-light); color: var(--text-main); }
body.light-mode .version-pill { background: rgba(0, 122, 255, 0.05); color: #007AFF; border-color: rgba(0, 122, 255, 0.2);}
body.light-mode .size-pill { background: #f9f9f9; color: #000; border-color: rgba(0,0,0,0.05);}

.ios-section { padding: 25px 20px; border-bottom: 1px solid var(--border-color); }
.ios-section h3 { margin: 0 0 15px 0; font-size: 19px; font-weight: 800; color: var(--text-main); letter-spacing: -0.5px;}

/* 🔴 وێنەکان کورت کرانەوە بۆ ئەوەی جوانتر دەربکەون 🔴 */
.ios-screenshots-scroll { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: none;}
.ios-screenshots-scroll::-webkit-scrollbar { display: none; }
.ios-screenshots-scroll img { 
    height: 250px; 
    max-height: 50vh;
    width: auto;
    max-width: 85vw; 
    object-fit: contain; 
    border-radius: 14px; 
    scroll-snap-align: center; 
    background: transparent; 
}

/* بەشی دەربارە */
.ios-desc-box { font-size: 14px; line-height: 1.6; color: var(--text-sub); }
.ios-desc-box p { margin: 0; }

.animated-crown {
    display: inline-block;
    animation: crownWobble 2s infinite ease-in-out;
    margin-inline-end: 8px;
    font-size: 16px;
}
@keyframes crownWobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

/* مۆداڵی لیستی فایلەکان (Esign, VIP) */
.modal-content { width: 100%; height: 75vh; display: flex; flex-direction: column; background: var(--card-bg); border-top-left-radius: 35px; border-top-right-radius: 35px; padding: 40px 20px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border-color); animation: slideUp 0.4s; color: var(--text-main); position: relative; }
.close-modal { position: absolute; top: 15px; font-size: 26px; font-weight: bold; color: var(--text-sub); cursor: pointer; z-index: 100; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(150,150,150,0.2); border-radius: 50%; }
[dir="rtl"] .close-modal { left: 15px; right: auto; }
[dir="ltr"] .close-modal { right: 15px; left: auto; }
.modal-header { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; flex-shrink: 0; }
.modal-body::-webkit-scrollbar { width: 5px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--theme-glass-heavy); border-radius: 10px; }

.spinner { border: 3px solid rgba(128, 128, 128, 0.3); border-top: 3px solid currentColor; border-radius: 50%; width: 20px; height: 20px; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* 🌟 سۆشیاڵ میدیا */
.social-bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 15px; }
.social-bento-card { background: linear-gradient(145deg, var(--theme-glass-light), transparent); border: 1px solid var(--border-color); border-radius: 24px; padding: 20px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-decoration: none; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.social-bento-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.social-bento-card:hover { transform: translateY(-5px) scale(1.02); }
.social-bento-card:hover::before { opacity: 1; }
.social-icon-box { width: 55px; height: 55px; border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #fff; transition: transform 0.3s; }
.social-bento-card:hover .social-icon-box { transform: scale(1.1) rotate(5deg); }
.social-bento-card span { font-size: 14px; font-weight: 800; color: var(--text-main); letter-spacing: 0.5px; }
.sc-insta .social-icon-box { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4); }
.sc-tele .social-icon-box { background: linear-gradient(135deg, #0088cc, #00aaff); box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4); }
.sc-tiktok .social-icon-box { background: #111; color: #fff; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 20px rgba(254, 9, 121, 0.4); }
.sc-snap .social-icon-box { background: linear-gradient(135deg, #FFFC00, #ffeb3b); color: #000; box-shadow: 0 8px 20px rgba(255, 252, 0, 0.4); }
body.light-mode .social-bento-card { background: #FFFFFF !important; box-shadow: 0 8px 25px rgba(0,0,0,0.05); }

/* 👑 کارتی VIP */
.vip-premium-card { position: relative; background: linear-gradient(145deg, #1a1a1c, #0d0d0e); border-radius: 28px; padding: 2px; overflow: hidden; cursor: pointer; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.1); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.vip-premium-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.2); }
.vip-premium-card:active { transform: scale(0.98); }
.vip-glow-1 { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(255, 215, 0, 0.5) 25%, transparent 50%); animation: spin 4s linear infinite; z-index: 0; }
.vip-glow-2 { position: absolute; inset: 2px; background: linear-gradient(135deg, rgba(20, 20, 22, 0.95), rgba(10, 10, 12, 0.98)); border-radius: 26px; z-index: 1; backdrop-filter: blur(20px); }
.vip-sparkles { position: absolute; top: 12px; right: 18px; font-size: 16px; opacity: 0.6; animation: pulse 2s infinite alternate; z-index: 2; pointer-events: none;}
.vip-ultra-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; gap: 15px; width: 100%; }
.vip-ultra-icon { width: 60px; height: 60px; border-radius: 20px; flex-shrink: 0; background: linear-gradient(135deg, #FFD700, #FF8C00); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4); display: flex; align-items: center; justify-content: center; }
.vip-ultra-icon svg { width: 36px; height: 36px; fill: #000; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.vip-ultra-text { flex-grow: 1; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0 10px; }
.vip-badge-mini { display: inline-block; background: linear-gradient(90deg, #FFD700, #FFA500); color: #000; font-size: 10px; font-weight: 900; padding: 3px 8px; border-radius: 8px; margin-bottom: 6px; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(255,215,0,0.4); }
.vip-ultra-text h3 { margin: 0 0 6px 0; font-size: 20px; font-weight: 900; color: #FFD700; text-shadow: 0 0 15px rgba(255,215,0,0.4); letter-spacing: -0.5px; }
.vip-ultra-text p { margin: 0; font-size: 13px; font-weight: 600; color: var(--text-sub); line-height: 1.4; }
.vip-ultra-btn { display: flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #FFD700, #FFA500); color: #000 !important; border: none; box-shadow: 0 6px 20px rgba(255,215,0,0.4); width: auto; padding: 10px 22px; font-size: 15px; font-weight: 900; border-radius: 20px; flex-shrink: 0; cursor: pointer; transition: all 0.3s; margin-inline-end: auto; margin-inline-start: unset;}

/* 💎 کارتی بڕوانامەکان (CERTIFICATES) */
.cert-ultra-card { position: relative; background: linear-gradient(145deg, #1a1a1c, #0d0d0e); border-radius: 28px; padding: 2px; overflow: hidden; cursor: pointer; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; }
.cert-ultra-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.2); }
.cert-ultra-card:active { transform: scale(0.98); }
.cert-glow-1 { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(0, 240, 255, 0.5) 25%, transparent 50%); animation: spin 4s linear infinite reverse; z-index: 0; }
.cert-glow-2 { position: absolute; inset: 2px; background: linear-gradient(135deg, rgba(20, 20, 22, 0.95), rgba(10, 10, 12, 0.98)); border-radius: 26px; z-index: 1; backdrop-filter: blur(20px); }
.cert-sparkles { position: absolute; top: 12px; right: 18px; font-size: 16px; opacity: 0.6; animation: pulse 2s infinite alternate; z-index: 2; pointer-events: none;}
.cert-ultra-icon { width: 60px; height: 60px; border-radius: 20px; flex-shrink: 0; background: linear-gradient(135deg, #00F0FF, #007AFF); box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4); display: flex; align-items: center; justify-content: center; }
.cert-ultra-icon svg { width: 32px; height: 32px; fill: #fff; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.cert-badge-mini { display: inline-block; background: linear-gradient(90deg, #00F0FF, #007AFF); color: #fff; font-size: 10px; font-weight: 900; padding: 3px 8px; border-radius: 8px; margin-bottom: 6px; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(0,122,255,0.4); }
.cert-ultra-card h3 { margin: 0 0 4px 0; font-size: 20px; font-weight: 900; color: #00F0FF; text-shadow: 0 0 15px rgba(0,240,255,0.4); letter-spacing: -0.5px; }
.cert-ultra-btn { display: flex; align-items: center; gap: 5px; background: linear-gradient(135deg, #00F0FF, #007AFF); color: #fff !important; border: none; box-shadow: 0 6px 20px rgba(0,122,255,0.4); width: auto; padding: 10px 22px; font-size: 15px; font-weight: 900; border-radius: 20px; flex-shrink: 0; cursor: pointer; transition: all 0.3s; margin-inline-end: auto; margin-inline-start: unset;}

body.light-mode .vip-premium-card { background: linear-gradient(145deg, #ffffff, #f0f0f0); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
body.light-mode .vip-glow-2 { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(250,250,250,0.98)); }
body.light-mode .vip-ultra-text h3 { color: #000; text-shadow: none; }
body.light-mode .vip-ultra-text p { color: rgba(0,0,0,0.6); }
body.light-mode .cert-ultra-card { background: linear-gradient(145deg, #ffffff, #f0f0f0); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
body.light-mode .cert-glow-2 { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(250,250,250,0.98)); }
body.light-mode .cert-ultra-card h3 { color: #007AFF; text-shadow: none; }

/* 🌟 پەنجەرەی پاسۆردی VIP */
.vip-pass-box { background: rgba(30, 30, 35, 0.8); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 28px; padding: 30px; width: 85%; max-width: 320px; text-align: center; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.1); color: #fff; animation: massivePopIn 0.3s ease-out; }
body.light-mode .vip-pass-box { background: rgba(255, 255, 255, 0.95); color: #000; border-color: rgba(255, 215, 0, 0.5); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.close-pass { position: absolute; top: 15px; inset-inline-end: 15px; font-size: 24px; font-weight: bold; color: var(--text-sub); cursor: pointer; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: rgba(150,150,150,0.2); border-radius: 50%; }
.vip-pass-icon { font-size: 40px; margin-bottom: 10px; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
.vip-pass-box h3 { font-size: 18px; color: #FFD700; margin: 0 0 5px 0; }
body.light-mode .vip-pass-box h3 { color: #B87300; }
.vip-pass-box p { font-size: 12px; color: var(--text-sub); margin: 0 0 20px 0; }
.vip-pass-input { width: 100%; padding: 12px 15px; border-radius: 12px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); color: #fff; text-align: center; font-size: 20px; letter-spacing: 5px; outline: none; transition: border 0.3s; margin-bottom: 5px;}
.vip-pass-input:focus { border-color: #FFD700; }
body.light-mode .vip-pass-input { background: rgba(0,0,0,0.05); color: #000; border-color: rgba(0,0,0,0.1); }
.vip-pass-btn { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; font-weight: 900; font-size: 15px; padding: 12px; width: 100%; border: none; border-radius: 16px; cursor: pointer; box-shadow: 0 5px 15px rgba(255,215,0,0.3); transition: transform 0.2s;}
.vip-pass-btn:active { transform: scale(0.95); }
.vip-pass-error { color: #FF3B30 !important; font-size: 12px !important; margin: 5px 0 10px 0 !important; min-height: 18px; font-weight: bold;}
.shake { animation: shake 0.4s; }

/* 🌟 کارتی زانیاری سێرڤەر 🌟 */
.ultra-status-card { position: relative; background: linear-gradient(145deg, var(--card-bg), rgba(0,0,0,0.2)); border: 1px solid var(--border-color); border-radius: 24px; padding: 20px; margin-bottom: 25px; overflow: hidden; backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); transition: transform 0.3s ease; }
.usc-glow { position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: var(--theme-main); filter: blur(70px); opacity: 0.2; z-index: 0; pointer-events: none;}
.usc-content { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; margin-bottom: 16px; border-bottom: 1px solid var(--border-color); padding-bottom: 16px; }
.usc-icon { width: 55px; height: 55px; background: linear-gradient(135deg, var(--theme-glass-heavy), var(--theme-main)); border: 1px solid rgba(255,255,255,0.2); border-radius: 18px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; box-shadow: 0 8px 20px var(--theme-glass-medium); }

/* ⚙️ ڕێکخستنەکانی مۆدێرن */
.settings-group-title { padding-inline-start: 15px; margin: 25px 0 8px 0; font-size: 13px; font-weight: 800; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.5px; }
.modern-settings-box { overflow: hidden; margin-bottom: 20px; padding: 0 !important; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 24px; backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); box-shadow: 0 10px 30px rgba(0,0,0,0.1);}
body.light-mode .modern-settings-box { background: #FFFFFF !important; box-shadow: 0 8px 25px rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.05) !important;}
.setting-row { padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); font-size: 15px; font-weight: 700; color: var(--text-main); transition: background 0.3s; }
.setting-row:last-child { border-bottom: none; }
.setting-row:active { background: var(--theme-glass-light); }
.setting-left { display: flex; align-items: center; gap: 12px; }
.setting-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; justify-content: center; align-items: center; font-size: 16px; color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

.toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(120, 120, 128, 0.4); transition: .3s; border-radius: 34px; box-shadow: inset 0 2px 5px rgba(0,0,0,0.1); }
.slider:before { position: absolute; content: ""; height: 22px; width: 22px; inset-inline-start: 2px; bottom: 2px; background-color: white; transition: .3s; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.3); }
input:checked + .slider { background-color: #34C759; }
[dir="rtl"] input:checked + .slider:before { transform: translateX(-22px); }
[dir="ltr"] input:checked + .slider:before { transform: translateX(22px); }

.modern-select { appearance: none; -webkit-appearance: none; background: var(--theme-glass-light); border: 1px solid var(--border-color); color: var(--text-main); font-size: 14px; font-weight: 700; padding: 6px 14px; border-radius: 12px; outline: none; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.modern-select option { background: var(--card-bg); color: var(--text-main); }
body.light-mode .modern-select { background: rgba(0,0,0,0.05); color: #000; border-color: rgba(0,0,0,0.1); }
body.light-mode .modern-select option { background: #fff; color: #000; }
.modern-color-scroll { display: flex; gap: 10px; overflow-x: auto; max-width: 55%; padding-bottom: 4px; scrollbar-width: none; }
.modern-color-scroll::-webkit-scrollbar { display: none; }
.color-swatch { width: 26px; height: 26px; border-radius: 50%; cursor: pointer; border: 2px solid var(--border-color); flex-shrink: 0; transition: transform 0.2s; }
.color-swatch:hover { transform: scale(1.15); border-color: #fff; }

.clear-cache-btn { cursor: pointer; transition: background 0.3s; }
.clear-cache-btn:active { background: rgba(255, 59, 48, 0.1); }
.developer-footer { text-align: center; padding: 20px 0 40px 0; opacity: 0.6; }
.footer-title { margin: 0 0 5px 0; font-size: 14px; font-weight: 800; color: var(--text-main); }
.footer-sub { margin: 0; font-size: 12px; font-weight: 600; color: var(--text-sub); }
.footer-sub span { color: var(--theme-main); }

/* دیزاینی مۆدێرن بۆ لیستی Apps و IPA */
.modern-app-card, .list-modal-card { display: flex; align-items: center; background: rgba(30, 30, 35, 0.7); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 14px 16px; margin-bottom: 15px; gap: 15px; transition: box-shadow 0.3s, border-color 0.3s; cursor: pointer; position: relative; width: 100%; overflow: visible !important; }
.modern-app-card:hover, .list-modal-card:hover { border-color: var(--theme-main); box-shadow: 0 10px 25px var(--theme-glass-medium); }
body.light-mode .modern-app-card, body.light-mode .list-modal-card { background: #FFFFFF !important; border: 1px solid rgba(0,0,0,0.05) !important; box-shadow: 0 8px 25px rgba(0,0,0,0.04) !important; }
.modern-app-info { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; text-align: start; overflow: visible !important; min-width: 0; }
.modern-app-info h3 { margin: 0 0 4px 0; font-size: 16px; font-weight: 800; color: var(--text-main); letter-spacing: -0.3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.modern-app-info p { margin: 0 0 8px 0; font-size: 12px; font-weight: 600; color: var(--text-sub); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.modern-app-hack-tag { display: inline-flex; align-items: center; background: rgba(57, 255, 20, 0.1); color: #39FF14; border: 1px solid rgba(57, 255, 20, 0.3); font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 8px; width: fit-content; box-shadow: 0 2px 8px rgba(57, 255, 20, 0.1); white-space: nowrap; }
body.light-mode .modern-app-info h3 { color: #000; }
body.light-mode .modern-app-info p { color: rgba(0,0,0,0.6); }

.modern-app-action { flex-shrink: 0; }
.modern-get-btn { background: rgba(255,255,255,0.1); color: var(--theme-main); border: none; padding: 7px 18px; border-radius: 16px; font-size: 13px; font-weight: 800; pointer-events: none; box-shadow: none; text-transform: uppercase; letter-spacing: 0.5px; }
body.light-mode .modern-get-btn { background: rgba(0,0,0,0.06); color: var(--theme-main); font-weight: 900;}

/* 🔴 🔴 🔴 مۆداڵی نوێی پاکێجەکانی بڕوانامە (Certificate) 🔴 🔴 🔴 */
.cert-packages-container { display: flex; flex-direction: column; gap: 20px; margin-top: 10px; }
.cert-package-card { background: rgba(30, 30, 35, 0.5); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border-radius: 24px; padding: 25px; border: 1px solid var(--border-color); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); position: relative; overflow: hidden; transition: transform 0.3s ease; }
body.light-mode .cert-package-card { background: rgba(255, 255, 255, 0.8); border-color: rgba(0,0,0,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.cert-package-card.cert-popular { border: 1px solid rgba(255, 215, 0, 0.5); background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(30, 30, 35, 0.8)); box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15); }
body.light-mode .cert-package-card.cert-popular { background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.9)); }

.cert-popular-badge { position: absolute; top: 20px; left: -35px; background: linear-gradient(90deg, #FFD700, #FDB931); color: #000; padding: 5px 40px; font-size: 11px; font-weight: 900; transform: rotate(-45deg); box-shadow: 0 2px 10px rgba(0,0,0,0.2); letter-spacing: 0.5px; }
[dir="ltr"] .cert-popular-badge { right: -35px; left: auto; transform: rotate(45deg); }

.cert-package-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
.cert-package-price { font-size: 32px; font-weight: 900; margin-bottom: 20px; color: var(--text-main); }
.cert-package-price span { font-size: 14px; color: var(--text-sub); font-weight: 600; }

.cert-features-list { list-style: none; margin-bottom: 25px; padding: 0; }
.cert-features-list li { font-size: 14px; font-weight: 600; color: var(--text-main); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; text-align: start; }
.check-icon { color: #34C759; font-weight: bold; font-size: 16px; }
.cross-icon { color: #FF3B30; font-weight: bold; font-size: 16px; }

.cert-buy-btn { width: 100%; border: none; padding: 14px; border-radius: 18px; font-size: 16px; font-weight: 800; cursor: pointer; transition: transform 0.2s; display: flex; justify-content: center; align-items: center; }
.cert-buy-btn:active { transform: scale(0.95); }
.cert-buy-btn.primary { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3); }
.cert-buy-btn.secondary { background: var(--theme-glass-light); color: var(--text-main); border: 1px solid var(--border-color); }