/* ===== ROOT VARIABLES ===== */
:root {
  --bg-primary: #0d0b1a;
  --bg-secondary: #14102a;
  --bg-card: #1a1530;
  --bg-card-hover: #221d40;
  --accent-pink: #e91e8c;
  --accent-pink-light: #ff3da6;
  --accent-gold: #f5a623;
  --accent-purple: #7b2fff;
  --text-primary: #ffffff;
  --text-secondary: #a89cc8;
  --text-muted: #6b5f8a;
  --border-color: #2a2248;
  --nav-bg: rgba(13, 11, 26, 0.95);
  --gradient-pink: linear-gradient(135deg, #e91e8c, #ff6b6b);
  --gradient-gold: linear-gradient(135deg, #f5a623, #f7d84e);
  --gradient-purple: linear-gradient(135deg, #7b2fff, #4a1bcc);
  --shadow-glow-pink: 0 0 20px rgba(233, 30, 140, 0.4);
  --shadow-glow-gold: 0 0 20px rgba(245, 166, 35, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent-pink); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 700; }
p { line-height: 1.7; color: var(--text-secondary); }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.gradient-text {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--gradient-pink); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 8px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge.gold { background: var(--gradient-gold); color: #1a1000; }
.badge.new { background: linear-gradient(135deg, #00c9a7, #00a8ff); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-xl);
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  border: none; transition: var(--transition); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--gradient-pink); color: #fff;
  box-shadow: var(--shadow-glow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(233, 30, 140, 0.6); }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover { border-color: var(--accent-pink); color: var(--accent-pink); }
.btn-gold {
  background: var(--gradient-gold); color: #1a1000;
  box-shadow: var(--shadow-glow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(245, 166, 35, 0.6); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* ===== HEADER / NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  height: 68px;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 20px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 36px; }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.nav-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-md);
  font-size: 0.88rem; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary); background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--accent-pink); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary); z-index: 999; padding: 20px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius-md);
  font-size: 1rem; font-weight: 600; color: var(--text-secondary);
  border: 1px solid transparent; transition: var(--transition);
}
.mobile-menu a:hover { color: var(--text-primary); border-color: var(--border-color); background: var(--bg-card); }
.mobile-menu .btn { width: 100%; margin-top: 8px; justify-content: center; }

/* ===== HERO SECTION ===== */
.hero {
  margin-top: 68px; position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../header-bg.webp');
  background-size: cover; background-position: center top;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,11,26,0.9) 40%, rgba(13,11,26,0.3) 100%),
              linear-gradient(to top, rgba(13,11,26,1) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 560px; padding: 60px 0;
}
.hero-badge { margin-bottom: 16px; }
.hero h1 { margin-bottom: 16px; }
.hero-desc { font-size: 1rem; margin-bottom: 28px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-features {
  display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap;
}
.hero-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-secondary);
}
.hero-feature-icon { font-size: 1.2rem; }

/* ===== CATEGORIES NAV ===== */
.categories-nav {
  background: var(--bg-secondary); border-bottom: 1px solid var(--border-color);
  position: sticky; top: 68px; z-index: 100;
}
.categories-nav .container {
  display: flex; gap: 4px; padding-top: 12px; padding-bottom: 12px;
  overflow-x: auto; scrollbar-width: none;
}
.categories-nav .container::-webkit-scrollbar { display: none; }
.cat-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 16px; border-radius: var(--radius-md);
  font-size: 0.78rem; font-weight: 700; color: var(--text-secondary);
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  background: transparent; border: none; flex-shrink: 0;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.cat-btn .cat-icon { font-size: 1.3rem; }
.cat-btn:hover, .cat-btn.active {
  color: var(--text-primary); background: rgba(233, 30, 140, 0.12);
}
.cat-btn.active { color: var(--accent-pink); }

/* ===== SECTIONS ===== */
.section { padding: 40px 0; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 12px; flex-wrap: wrap;
}
.section-title { display: flex; align-items: center; gap: 10px; }
.section-title-icon { font-size: 1.4rem; }

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.game-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; transition: var(--transition);
  aspect-ratio: 1/1; background: var(--bg-card);
}
.game-card:hover { transform: translateY(-4px) scale(1.02); }
.game-card:hover .game-overlay { opacity: 1; }
.game-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.game-card:hover img { transform: scale(1.08); }
.game-overlay {
  position: absolute; inset: 0; opacity: 0; transition: var(--transition);
  background: rgba(13, 11, 26, 0.75);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.game-overlay .btn { pointer-events: none; }
.game-badge {
  position: absolute; top: 8px; left: 8px; z-index: 1;
}
.game-title {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,11,26,0.95));
  padding: 20px 10px 10px;
  font-size: 0.75rem; font-weight: 700; text-align: center;
}

/* ===== WINS TICKER ===== */
.wins-ticker-section { padding: 20px 0; }
.wins-ticker-wrap {
  background: var(--bg-secondary); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
}
.wins-ticker-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--border-color);
}
.wins-ticker-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 700;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00e676; animation: pulse-dot 1.5s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}
.wins-list { padding: 8px 0; max-height: 260px; overflow: hidden; }
.win-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; transition: background 0.2s;
  animation: slide-in 0.4s ease;
}
.win-item:hover { background: rgba(255,255,255,0.03); }
@keyframes slide-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.win-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
  background: var(--gradient-purple);
}
.win-info { flex: 1; min-width: 0; }
.win-player { font-size: 0.82rem; font-weight: 700; }
.win-game { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-amount {
  font-size: 0.95rem; font-weight: 800; color: var(--accent-gold);
  white-space: nowrap;
}
.win-time { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }

/* ===== FEATURES STRIP ===== */
.features-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px;
  padding: 32px 0;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 24px 20px;
  text-align: center; transition: var(--transition);
}
.feature-card:hover { border-color: var(--accent-pink); transform: translateY(-3px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.8rem; }

/* ===== BONUS CARDS ===== */
.bonuses-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.bonus-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--accent-pink); box-shadow: var(--shadow-glow-pink); }
.bonus-card-header {
  padding: 28px 24px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.bonus-card-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(233,30,140,0.15), rgba(123,47,255,0.15));
}
.bonus-icon { font-size: 3rem; margin-bottom: 12px; position: relative; }
.bonus-amount {
  font-size: 2.2rem; font-weight: 900; position: relative;
  background: var(--gradient-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.bonus-label { font-size: 0.9rem; color: var(--text-secondary); position: relative; }
.bonus-card-body { padding: 20px 24px; }
.bonus-card-body h3 { margin-bottom: 8px; }
.bonus-card-body p { font-size: 0.85rem; margin-bottom: 16px; }
.bonus-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.bonus-tag {
  background: rgba(123,47,255,0.2); border: 1px solid rgba(123,47,255,0.3);
  color: #c4a7ff; font-size: 0.75rem; padding: 4px 10px; border-radius: 20px;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--accent-pink); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; gap: 12px;
  font-weight: 700; font-size: 0.95rem;
}
.faq-question:hover { color: var(--accent-pink); }
.faq-arrow { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 20px 18px; }
.faq-answer p { font-size: 0.88rem; }

/* ===== INFO TEXT (SEO) ===== */
.info-section {
  background: var(--bg-secondary); border-top: 1px solid var(--border-color);
  padding: 48px 0;
}
.info-content { columns: 2; gap: 40px; }
.info-content h2 { column-span: all; margin-bottom: 20px; }
.info-content h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--accent-pink); break-after: avoid; }
.info-content p { font-size: 0.85rem; margin-bottom: 12px; }
.info-content ol { padding-left: 20px; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.8; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border-color);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 32px;
}
.footer-logo img { height: 32px; margin-bottom: 14px; }
.footer-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.footer-col h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.85rem; color: var(--text-secondary); transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent-pink); }
.footer-bottom {
  border-top: 1px solid var(--border-color); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-sm); padding: 6px 12px;
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
}
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition); cursor: pointer;
}
.social-btn:hover { border-color: var(--accent-pink); color: var(--accent-pink); }

/* ===== PAGE HEADER ===== */
.page-header {
  margin-top: 68px; padding: 48px 0 32px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  border-bottom: 1px solid var(--border-color); text-align: center;
}
.page-header h1 { margin-bottom: 10px; }
.page-header p { font-size: 0.95rem; max-width: 600px; margin: 0 auto; }

/* ===== LIVE CASINO ===== */
.live-games-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
}
.live-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.live-card:hover { transform: translateY(-4px); border-color: var(--accent-pink); }
.live-card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.live-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.live-card:hover .live-card-img img { transform: scale(1.05); }
.live-indicator {
  position: absolute; top: 10px; left: 10px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  border-radius: 20px; padding: 4px 10px;
  font-size: 0.72rem; font-weight: 700; color: #00e676;
}
.live-players {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  border-radius: 20px; padding: 4px 10px;
  font-size: 0.72rem; color: var(--text-secondary);
}
.live-card-body { padding: 14px 16px; }
.live-card-body h3 { font-size: 0.9rem; margin-bottom: 4px; }
.live-card-body p { font-size: 0.78rem; margin-bottom: 12px; }
.live-limits {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--text-muted);
}

/* ===== NOTIFICATION POPUP ===== */
.win-notification {
  position: fixed; bottom: 20px; left: 20px; z-index: 2000;
  background: var(--bg-card); border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  max-width: 320px; box-shadow: 0 8px 32px rgba(0,0,0,0.5), var(--shadow-glow-gold);
  animation: notif-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
@keyframes notif-in {
  from { transform: translateX(-120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.notif-hide { animation: notif-out 0.3s ease forwards; }
@keyframes notif-out {
  to { transform: translateX(-120%); opacity: 0; }
}
.notif-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  background: var(--gradient-gold);
}
.notif-text p { font-size: 0.78rem; color: var(--text-secondary); margin: 0; }
.notif-text strong { color: var(--accent-gold); font-size: 1rem; }
.notif-name { font-weight: 700; font-size: 0.85rem; }

/* ===== JACKPOT COUNTER ===== */
.jackpot-bar {
  background: linear-gradient(90deg, #1a0030, #2d0055, #1a0030);
  border-bottom: 2px solid var(--accent-gold);
  padding: 10px 0; text-align: center;
  font-size: 0.88rem; display: flex; align-items: center;
  justify-content: center; gap: 12px;
}
.jackpot-label { color: var(--text-secondary); font-weight: 600; }
.jackpot-amount { font-size: 1.4rem; font-weight: 900; color: var(--accent-gold); font-variant-numeric: tabular-nums; }
.jackpot-bar .badge { font-size: 0.65rem; }

/* ===== SEO ARTICLE ===== */
.seo-article { max-width: 900px; }
.seo-article h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin: 36px 0 12px; color: var(--text-primary);
  padding-bottom: 10px; border-bottom: 1px solid var(--border-color);
}
.seo-article h2:first-child { margin-top: 0; }
.seo-article p { font-size: 0.9rem; margin-bottom: 12px; line-height: 1.8; }
.seo-article a { color: var(--accent-pink); }
.seo-article a:hover { text-decoration: underline; }

.seo-faq { margin-top: 8px; }
.seo-faq h2 { color: var(--accent-pink); }

.seo-internal-links { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border-color); }
.seo-internal-links h2 { font-size: 1rem; color: var(--text-muted); border: none; margin-bottom: 16px; }
.seo-links-list { display: flex; flex-direction: column; gap: 10px; }
.seo-links-list li { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.seo-links-list a { color: var(--accent-pink); font-weight: 700; }
.seo-links-list a:hover { text-decoration: underline; }

/* ===== INFO CONTENT (multi-col) ===== */
.info-content h2 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin: 28px 0 10px; }
.info-content h2:first-child { margin-top: 0; }
.info-content h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--accent-pink); }
.info-content p { font-size: 0.85rem; margin-bottom: 12px; }
.info-content ol { padding-left: 20px; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-content { columns: 1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn:not(.btn-primary) { display: none; }
  .nav-burger { display: flex; }
  .hero { min-height: 400px; }
  .hero-content { padding: 40px 0; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .features-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
