/* ===== GAMING DARK THEME — Template 1 ===== */
/* Variables */
:root {
  --bg-primary: #0F0F1A;
  --bg-secondary: #161627;
  --bg-card: #1C1C35;
  --bg-card-hover: #22223F;
  --accent: #6C3FF7;
  --accent-light: #8B5CF6;
  --accent-glow: rgba(108, 63, 247, 0.35);
  --neon-green: #00FF88;
  --neon-cyan: #00D4FF;
  --text-white: #F0F0FF;
  --text-muted: #8888AA;
  --border: rgba(108, 63, 247, 0.25);
  --gradient-hero: linear-gradient(135deg, #0F0F1A 0%, #1A0A3A 100%);
  --font: 'Cairo', sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-white);
  direction: rtl;
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  background: #0A0A15;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.topbar-badge {
  background: rgba(108,63,247,0.15);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-white);
}
.topbar-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.topbar-link:hover { color: var(--text-white); }

/* ===== NAVBAR ===== */
.main-navbar {
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.navbar-brand { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.8rem; color: var(--accent); }
.logo-text { font-size: 1.4rem; font-weight: 900; color: var(--text-white); }
.logo-accent { color: var(--accent); }

.search-form { max-width: 420px; }
.search-input {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-white) !important;
  border-radius: 8px 0 0 8px !important;
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus { box-shadow: 0 0 0 2px var(--accent-glow) !important; border-color: var(--accent) !important; }
.btn-search {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 0 8px 8px 0 !important;
  padding: 0 18px;
  transition: background 0.2s;
}
.btn-search:hover { background: var(--accent-light); }

.nav-link { color: var(--text-muted) !important; font-weight: 600; padding: 6px 14px !important; border-radius: 6px; transition: all 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--text-white) !important; background: rgba(108,63,247,0.15); }
.dropdown-menu { background: #1A1A30; border: 1px solid var(--border); }
.dropdown-item { color: var(--text-muted); font-size: 0.9rem; }
.dropdown-item:hover { color: var(--text-white); background: rgba(108,63,247,0.2); }

.nav-icon-btn {
  color: var(--text-muted);
  font-size: 1.3rem;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}
.nav-icon-btn:hover { color: var(--accent); }
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.btn-login {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 18px;
  transition: all 0.2s;
}
.btn-login:hover { background: var(--accent); color: #fff !important; }
.navbar-toggler { border: 1px solid var(--border); padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ===== HERO ===== */
.hero-section {
  background: var(--gradient-hero);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(108,63,247,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; bottom: -80px; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(108,63,247,0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 5px 16px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 700;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-white);
  margin: 15px 0;
}
.hero-accent {
  background: linear-gradient(90deg, var(--accent), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 500px; }
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border: none; color: #fff;
  padding: 12px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 6px 30px var(--accent-glow); color: #fff; }
.btn-outline-custom {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 12px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: all 0.2s;
}
.btn-outline-custom:hover { border-color: var(--accent); color: var(--accent); background: rgba(108,63,247,0.1); }

.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 900; color: var(--accent-light); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); }

/* Hero Floating Cards */
.hero-cards-float {
  position: relative; width: 380px; height: 380px;
}
.float-card {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  width: 110px; height: 110px;
  border-radius: 16px;
  font-size: 0.8rem; font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  animation: floatAnim 3s ease-in-out infinite alternate;
  cursor: pointer;
  transition: transform 0.3s;
}
.float-card i { font-size: 1.8rem; }
.float-card:hover { transform: scale(1.08); }

.card-netflix { background: rgba(229,9,20,0.3); border-color: rgba(229,9,20,0.5); top: 0; right: 40px; animation-delay: 0s; }
.card-ps      { background: rgba(0,48,135,0.3); border-color: rgba(0,70,200,0.5); top: 0; left: 40px; animation-delay: 0.5s; }
.card-gplay   { background: rgba(52,168,83,0.3); border-color: rgba(52,168,83,0.5); top: 120px; right: 0; animation-delay: 1s; }
.card-pubg    { background: rgba(108,63,247,0.4); border-color: var(--accent); top: 120px; left: 0; animation-delay: 1.5s; }
.card-xbox    { background: rgba(0,120,68,0.3); border-color: rgba(0,120,68,0.5); bottom: 20px; right: 60px; animation-delay: 0.8s; }
.card-steam   { background: rgba(30,60,100,0.4); border-color: rgba(30,60,100,0.6); bottom: 20px; left: 60px; animation-delay: 0.3s; }

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* ===== SECTION COMMONS ===== */
.section-pad { padding: 60px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900; color: var(--text-white);
  margin-bottom: 8px;
}
.section-sub { color: var(--text-muted); font-size: 0.95rem; }

/* ===== CATEGORIES ===== */
.cat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 24px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 700; font-size: 0.88rem;
  transition: all 0.3s;
  text-align: center;
}
.cat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--text-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--cat-color) 20%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat-color) 50%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--cat-color);
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px var(--accent-glow);
  color: inherit;
}
.product-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.product-img-inner {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  position: relative; overflow: hidden;
}
.product-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--accent); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}
.product-badge.badge-hot { background: #EF4444; }
.product-badge.badge-new { background: var(--neon-green); color: #000; }
.product-body { padding: 16px; }
.product-name { font-weight: 700; font-size: 0.95rem; color: var(--text-white); margin-bottom: 4px; }
.product-cat { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; }
.product-price { font-size: 1.1rem; font-weight: 900; color: var(--neon-green); }
.product-price-old { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; margin-right: 6px; }
.btn-buy {
  width: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border: none; color: #fff; border-radius: 8px;
  padding: 9px; font-weight: 700; font-size: 0.88rem;
  transition: all 0.2s; margin-top: 10px;
}
.btn-buy:hover { opacity: 0.9; transform: scale(1.02); color: #fff; }

/* ===== PROMO BANNERS ===== */
.promo-banner {
  border-radius: 16px; padding: 28px 24px;
  min-height: 160px;
  display: flex; align-items: center;
  border: 1px solid var(--border);
  transition: transform 0.3s;
  overflow: hidden; position: relative;
}
.promo-banner:hover { transform: translateY(-3px); }
.promo-banner h3 { font-weight: 900; font-size: 1.3rem; color: #fff; margin: 6px 0 4px; }
.promo-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0 0 12px; }
.promo-tag {
  background: rgba(255,255,255,0.2); border-radius: 20px;
  padding: 3px 12px; font-size: 0.75rem; color: #fff; font-weight: 700;
}
.promo-icon { font-size: 4rem; color: rgba(255,255,255,0.2); }
.banner-pubg {
  background: linear-gradient(135deg, #1A0A5A, #2D1B8A);
  border-color: rgba(108,63,247,0.4);
}
.banner-ff {
  background: linear-gradient(135deg, #4A0A0A, #8B1A1A);
  border-color: rgba(239,68,68,0.4);
}

/* ===== WHY US ===== */
.why-us { background: var(--bg-secondary); }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  transition: all 0.3s;
}
.why-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 24px var(--accent-glow); }
.why-icon {
  width: 60px; height: 60px;
  background: rgba(108,63,247,0.15);
  border: 1px solid var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--accent-light);
  margin: 0 auto 16px;
}
.why-card h5 { font-weight: 800; font-size: 1rem; color: var(--text-white); margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ===== FOOTER ===== */
.main-footer { background: #0A0A15; border-top: 1px solid var(--border); }
.footer-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-title { font-weight: 800; color: var(--text-white); margin-bottom: 16px; font-size: 0.95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-light); }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1.1rem; text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); text-decoration: none; font-size: 0.88rem;
  transition: color 0.2s;
}
.contact-item:hover { color: var(--text-white); }
.contact-item i { font-size: 1.2rem; width: 20px; }
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badge {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 20px;
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted); font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.payment-icons { display: flex; gap: 12px; font-size: 1.3rem; color: var(--text-muted); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0A0A15, #1A0A3A);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 30px;
}
.page-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--text-white); margin-bottom: 6px; }
.page-sub { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.breadcrumb { background: transparent; padding: 0; margin-bottom: 12px; }
.breadcrumb-item a { color: var(--accent-light); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-item.active { color: var(--text-muted); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; padding-bottom: 4px; }
.filter-tab {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); border-radius: 8px;
  padding: 8px 20px; font-size: 0.88rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: var(--font);
}
.filter-tab:hover { border-color: var(--accent); color: var(--text-white); }
.filter-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===== SORT SELECT ===== */
.sort-select {
  background: var(--bg-card) !important; border: 1px solid var(--border) !important;
  color: var(--text-white) !important; border-radius: 8px !important;
  font-family: var(--font); font-size: 0.88rem; padding: 8px 16px;
  cursor: pointer;
}
.sort-select:focus { box-shadow: 0 0 0 2px var(--accent-glow) !important; border-color: var(--accent) !important; }
.sort-select option { background: var(--bg-card); }
.products-count { color: var(--text-muted); font-size: 0.88rem; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-visual {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 20px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-detail-glow {
  position: absolute; inset: 0;
  pointer-events: none;
}
.detail-badge {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 20px;
  font-size: 0.78rem; color: var(--text-muted);
}
.cat-pill {
  background: rgba(108,63,247,0.15); border: 1px solid var(--border);
  padding: 4px 14px; border-radius: 20px;
  font-size: 0.8rem; color: var(--accent-light);
}
.product-detail-title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; color: var(--text-white); margin-bottom: 8px; }
.product-detail-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.product-rating { display: flex; align-items: center; gap: 2px; }

/* Options */
.options-label { font-weight: 700; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; display: block; }
.options-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.option-btn {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); border-radius: 8px;
  padding: 8px 20px; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: var(--font);
}
.option-btn:hover { border-color: var(--accent); color: var(--text-white); }
.option-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Price */
.product-detail-price { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.price-label { color: var(--text-muted); font-size: 0.88rem; }
.price-value { font-size: 2rem; font-weight: 900; color: var(--neon-green); }
.price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.price-discount { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.4); color: #EF4444; padding: 3px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }

/* Buy Now Button */
.btn-buy-now {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  border: none; color: #fff;
  padding: 12px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s; cursor: pointer; font-family: var(--font);
  box-shadow: 0 4px 20px rgba(239,68,68,0.3);
}
.btn-buy-now:hover { transform: translateY(-2px); opacity: 0.9; color: #fff; }

/* Support links */
.product-support { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.support-link { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.support-link:hover { color: var(--text-white); }

/* How to use */
.how-to-use { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.how-title { font-weight: 700; color: var(--text-white); font-size: 0.95rem; }
.how-steps { color: var(--text-muted); font-size: 0.88rem; line-height: 2; padding-right: 20px; margin: 0; }
.text-accent-light { color: var(--accent-light) !important; }

/* ===== CONTACT PAGE ===== */
.contact-channel-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px;
  transition: all 0.3s;
}
.contact-channel-card:hover { border-color: var(--accent); transform: translateX(-4px); }
.channel-icon {
  width: 56px; height: 56px; border-radius: 14px;
  border: 1px solid; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.channel-info h5 { font-weight: 800; font-size: 1rem; color: var(--text-white); margin-bottom: 4px; }
.channel-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.channel-btn {
  display: inline-flex; align-items: center;
  padding: 7px 18px; border-radius: 8px; border: 1px solid;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  transition: all 0.2s; font-family: var(--font);
}
.channel-btn:hover { opacity: 0.85; }

.quick-info-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px; color: var(--text-white); font-size: 0.9rem;
}

.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
}
.custom-input {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-white) !important;
  border-radius: 10px !important;
  font-family: var(--font); font-size: 0.9rem;
  padding: 12px 16px !important;
}
.custom-input::placeholder { color: var(--text-muted) !important; }
.custom-input:focus { box-shadow: 0 0 0 2px var(--accent-glow) !important; border-color: var(--accent) !important; }
.custom-input option { background: var(--bg-card); }
.form-label { color: var(--text-muted) !important; font-family: var(--font); }

.form-success {
  text-align: center; padding: 40px 20px;
  color: var(--text-white);
}
.form-success i { font-size: 3.5rem; display: block; margin-bottom: 16px; }
.form-success h5 { font-weight: 900; font-size: 1.3rem; margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq-item { background: var(--bg-card); border: 1px solid var(--border) !important; border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; }
.faq-btn {
  background: var(--bg-card) !important; color: var(--text-white) !important;
  font-family: var(--font); font-weight: 700; font-size: 0.95rem;
  border: none !important; padding: 18px 20px;
}
.faq-btn:not(.collapsed) { color: var(--accent-light) !important; }
.faq-btn::after { filter: invert(1); }
.faq-body { background: var(--bg-secondary); color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; padding: 16px 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section { padding: 50px 0 40px; }
  .hero-title { font-size: 2rem; }
  .section-pad { padding: 40px 0; }
  .contact-form-card { padding: 20px; }
}
@media (max-width: 576px) {
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 1.2rem; }
  .why-card { padding: 20px 14px; }
  .product-detail-price { flex-direction: column; gap: 6px; align-items: flex-start; }
  .options-grid { gap: 8px; }
}
