*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg: #0d0f14;
  --clr-surface: #161a23;
  --clr-surface2: #1e2433;
  --clr-header: #111520;
  --clr-footer: #0a0c11;
  --clr-accent: #f5c518;
  --clr-green: #27ae60;
  --clr-red: #e74c3c;
  --clr-text: #e8eaf0;
  --clr-muted: #8892a4;
  --clr-border: #252c3b;
  --clr-card: #1a1f2e;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --trans: .22s ease;
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: 'Nunito', sans-serif; background: var(--clr-bg); color: var(--clr-text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }

a { color: var(--clr-accent); text-decoration: none; transition: opacity var(--trans); }
a:hover { opacity: .8; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.xk4f2 { display: none; }
.zp7q1 { visibility: hidden; position: absolute; }
.bm3r9 { width: 0; height: 0; overflow: hidden; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 700;
  font-size: 14px; cursor: pointer; border: none; outline: none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.4); opacity: 1; }
.btn:active { transform: translateY(0); }
.btn--login { background: var(--clr-surface2); color: var(--clr-text); border: 1px solid var(--clr-border); }
.btn--login:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
.btn--signup { background: var(--clr-accent); color: #111; }
.btn--signup:hover { background: #ffd740; }
.btn--green { background: var(--clr-green); color: #fff; }
.btn--green:hover { background: #2ecc71; }
.btn--hero { padding: 14px 36px; font-size: 17px; border-radius: var(--radius-md); background: var(--clr-accent); color: #111; font-weight: 800; letter-spacing: .5px; box-shadow: 0 0 30px rgba(245,197,24,.35); }
.btn--hero:hover { background: #ffd740; box-shadow: 0 0 44px rgba(245,197,24,.55); }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--wide { width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--clr-header);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.header-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 28px; width: auto; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { color: var(--clr-text); font-size: 14px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-sm); transition: background var(--trans), color var(--trans); }
.header-nav a:hover { background: var(--clr-surface2); color: var(--clr-accent); opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-online { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--clr-muted); margin-right: 8px; white-space: nowrap; }
.header-online-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-green); box-shadow: 0 0 6px var(--clr-green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--clr-header); z-index: 99; padding: 24px 16px;
  flex-direction: column; gap: 8px; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { color: var(--clr-text); font-size: 16px; font-weight: 600; padding: 12px 16px; border-radius: var(--radius-sm); display: block; border-bottom: 1px solid var(--clr-border); }
.mobile-menu a:hover { background: var(--clr-surface2); color: var(--clr-accent); opacity: 1; }
.mobile-menu-actions { display: flex; gap: 8px; margin-top: 16px; }
.mobile-menu-actions .btn { flex: 1; }

.hero {
  position: relative; overflow: hidden;
  min-height: 460px; display: flex; align-items: center;
  background: var(--clr-surface) url('/melbet-hero-img.jpg') center/cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,15,20,.92) 0%, rgba(13,15,20,.6) 60%, rgba(13,15,20,.3) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 580px; padding: 60px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,197,24,.15); border: 1px solid rgba(245,197,24,.4); color: var(--clr-accent); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .8px; }
.hero h1 { font-size: clamp(26px, 5vw, 46px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.hero h1 span { color: var(--clr-accent); }
.hero-desc { font-size: 16px; color: rgba(232,234,240,.85); margin-bottom: 28px; line-height: 1.65; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-bonus-badge { background: rgba(39,174,96,.18); border: 1px solid rgba(39,174,96,.4); color: #2ecc71; font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: 6px; }

.breadcrumbs { padding: 12px 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; font-size: 13px; color: var(--clr-muted); }
.breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.breadcrumbs li + li::before { content: '/'; color: var(--clr-border); }
.breadcrumbs a { color: var(--clr-muted); transition: color var(--trans); }
.breadcrumbs a:hover { color: var(--clr-accent); opacity: 1; }
.breadcrumbs li:last-child { color: var(--clr-accent); }

.section { padding: 48px 0; }
.section-title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.section-subtitle { color: var(--clr-muted); font-size: 14px; margin-bottom: 32px; }
.section-head { margin-bottom: 28px; }

.jackpot-block {
  background: linear-gradient(135deg, #1a1020 0%, #0d1520 100%);
  border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; position: relative; overflow: hidden;
}
.jackpot-block::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,197,24,.12) 0%, transparent 70%);
  pointer-events: none;
}
.jackpot-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--clr-muted); margin-bottom: 8px; }
.jackpot-amount { font-size: clamp(36px, 8vw, 72px); font-weight: 900; color: var(--clr-accent); line-height: 1; text-shadow: 0 0 40px rgba(245,197,24,.4); letter-spacing: -1px; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.jackpot-currency { font-size: 20px; font-weight: 700; color: rgba(245,197,24,.7); }
.jackpot-desc { color: var(--clr-muted); font-size: 14px; margin: 12px 0 20px; }
.jackpot-grid { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.jackpot-card {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); padding: 16px 24px; min-width: 160px;
  transition: border-color var(--trans), transform var(--trans);
}
.jackpot-card:hover { border-color: var(--clr-accent); transform: translateY(-3px); }
.jackpot-card-name { font-size: 12px; color: var(--clr-muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.jackpot-card-val { font-size: 22px; font-weight: 800; color: var(--clr-accent); font-variant-numeric: tabular-nums; }

.mirrors-block { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 28px; }
.mirrors-time { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-green); font-weight: 600; margin-bottom: 20px; }
.mirrors-time-icon { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-green); box-shadow: 0 0 6px var(--clr-green); animation: pulse 2s infinite; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
thead tr { background: var(--clr-surface2); }
th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--clr-muted); border-bottom: 2px solid var(--clr-border); }
td { padding: 13px 16px; font-size: 14px; border-bottom: 1px solid var(--clr-border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,.025); }
.mirror-link { color: var(--clr-accent); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.mirror-link svg { flex-shrink: 0; }
.badge-green { display: inline-flex; align-items: center; gap: 4px; background: rgba(39,174,96,.15); color: #2ecc71; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.games-grid { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.games-grid::-webkit-scrollbar { height: 4px; }
.games-grid::-webkit-scrollbar-track { background: var(--clr-surface2); border-radius: 2px; }
.games-grid::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 2px; }
.game-card {
  flex: 0 0 calc(16.666% - 14px); min-width: 160px;
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  scroll-snap-align: start;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--clr-accent); box-shadow: 0 8px 28px rgba(245,197,24,.18); }
.game-card-img { width: 100%; height: 110px; object-fit: cover; }
.game-card-img-placeholder { width: 100%; height: 110px; background: linear-gradient(135deg, var(--clr-surface2), var(--clr-border)); display: flex; align-items: center; justify-content: center; font-size: 32px; }
.game-card-body { padding: 12px; }
.game-card-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card-provider { font-size: 11px; color: var(--clr-muted); margin-bottom: 10px; }

.bonuses-grid { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.bonuses-grid::-webkit-scrollbar { height: 4px; }
.bonuses-grid::-webkit-scrollbar-track { background: var(--clr-surface2); border-radius: 2px; }
.bonuses-grid::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 2px; }
.bonus-card {
  flex: 0 0 calc(33.333% - 11px); min-width: 260px;
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 24px; position: relative; overflow: hidden;
  transition: transform var(--trans), border-color var(--trans);
  scroll-snap-align: start;
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--clr-accent); }
.bonus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--clr-accent), var(--clr-green)); }
.bonus-card.bonus--vip::before { background: linear-gradient(90deg, #a855f7, #ec4899); }
.bonus-card.bonus--cashback::before { background: linear-gradient(90deg, #06b6d4, #3b82f6); }
.bonus-icon { font-size: 28px; margin-bottom: 12px; }
.bonus-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.bonus-amount { font-size: 26px; font-weight: 900; color: var(--clr-accent); margin-bottom: 8px; line-height: 1.1; }
.bonus-card.bonus--vip .bonus-amount { color: #c084fc; }
.bonus-card.bonus--cashback .bonus-amount { color: #38bdf8; }
.bonus-desc { font-size: 13px; color: var(--clr-muted); line-height: 1.55; margin-bottom: 16px; }
.bonus-tag { display: inline-flex; align-items: center; gap: 4px; background: rgba(245,197,24,.12); color: var(--clr-accent); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px; margin-bottom: 16px; }
.bonus-card.bonus--vip .bonus-tag { background: rgba(168,85,247,.12); color: #c084fc; }
.bonus-card.bonus--cashback .bonus-tag { background: rgba(56,189,248,.12); color: #38bdf8; }

.review-block { background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 32px; }
.author-card { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--clr-border); }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--clr-accent), var(--clr-green)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: #111; }
.author-name { font-size: 15px; font-weight: 700; color: #fff; }
.author-title { font-size: 12px; color: var(--clr-muted); margin-top: 2px; }
.author-link { font-size: 12px; color: var(--clr-accent); display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }

.review-content { font-size: 15px; line-height: 1.75; color: var(--clr-text); }
.review-content h2 { font-size: 22px; font-weight: 800; color: #fff; margin: 28px 0 12px; }
.review-content h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 22px 0 10px; }
.review-content h4 { font-size: 16px; font-weight: 700; color: var(--clr-accent); margin: 18px 0 8px; }
.review-content p { margin-bottom: 14px; }
.review-content ul, .review-content ol { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.review-content ul { list-style: disc; }
.review-content ol { list-style: decimal; }
.review-content li { color: var(--clr-text); line-height: 1.6; }
.review-content a { color: var(--clr-accent); text-decoration: underline; }
.review-content strong { color: #fff; font-weight: 700; }
.review-content em { color: var(--clr-muted); font-style: italic; }
.review-content table { min-width: 100%; }
.review-content th, .review-content td { border: 1px solid var(--clr-border); }
.review-content blockquote { border-left: 3px solid var(--clr-accent); padding: 12px 20px; background: var(--clr-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 16px 0; font-style: italic; color: var(--clr-muted); }
.review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }
.review-content img { border-radius: var(--radius-sm); max-width: 100%; height: auto; }

.faq-item { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; transition: border-color var(--trans); }
.faq-item:hover { border-color: rgba(245,197,24,.35); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 20px; font-size: 15px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: 'Nunito', sans-serif;
}
.faq-q-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--clr-surface2); display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background var(--trans); }
.faq-item.is-open .faq-q-icon { transform: rotate(45deg); background: var(--clr-accent); }
.faq-item.is-open .faq-q-icon svg { color: #111; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.is-open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 20px 18px; font-size: 14px; color: var(--clr-muted); line-height: 1.7; border-top: 1px solid var(--clr-border); padding-top: 14px; }

.site-footer { background: var(--clr-footer); border-top: 1px solid var(--clr-border); padding: 48px 0 24px; }
.footer-top { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-col { flex: 1; min-width: 180px; }
.footer-logo a { display: block;width: fit-content; }
.footer-logo img { height: 32px; object-fit: contain; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: var(--clr-muted); line-height: 1.6; max-width: 220px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--clr-muted); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(232,234,240,.7); transition: color var(--trans); }
.footer-links a:hover { color: var(--clr-accent); opacity: 1; }
.payments-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.payment-badge { background: var(--clr-surface2); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 5px 12px; font-size: 11px; font-weight: 700; color: var(--clr-muted); white-space: nowrap; }
.providers-row { display: flex; flex-wrap: wrap; gap: 6px; }
.provider-badge { background: var(--clr-surface2); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); padding: 4px 10px; font-size: 11px; color: var(--clr-muted); }
.footer-bottom { border-top: 1px solid var(--clr-border); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: flex-start; }
.footer-legal { font-size: 12px; color: var(--clr-muted); line-height: 1.65; max-width: 680px; }
.footer-copyright { font-size: 12px; color: var(--clr-muted); }

.sticky-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(90deg, #111823 0%, #0d1520 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 16px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; box-shadow: 0 -4px 24px rgba(0,0,0,.5);
}
.widget-text { font-size: 13px; color: var(--clr-text); flex: 1; }
.widget-bonus { display: block; font-size: 16px; font-weight: 900; color: var(--clr-accent); line-height: 1.2; }
.widget-sub { font-size: 11px; color: var(--clr-muted); }
.widget-btn { background: var(--clr-accent); color: #111; font-weight: 800; padding: 12px 28px; border-radius: var(--radius-md); font-size: 15px; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background var(--trans), transform var(--trans), box-shadow var(--trans); flex-shrink: 0; box-shadow: 0 0 20px rgba(245,197,24,.3); }
.widget-btn:hover { background: #ffd740; transform: translateY(-2px); box-shadow: 0 0 32px rgba(245,197,24,.5); opacity: 1; }
.widget-close { width: 28px; height: 28px; border-radius: 50%; background: var(--clr-surface2); border: 1px solid var(--clr-border); color: var(--clr-muted); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background var(--trans); }
.widget-close:hover { background: var(--clr-red); color: #fff; }
body.widget-hidden .sticky-widget { display: none; }
body { padding-bottom: 76px; }
body.widget-hidden { padding-bottom: 0; }

@media (max-width: 1024px) {
  .game-card { flex: 0 0 180px; }
  .bonus-card { flex: 0 0 280px; }
  .header-nav a {padding: 4px 8px;}
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .header-online { display: none; }
  .hero { min-height: 380px; }
  .hero-inner { padding: 40px 0; }
  .footer-top { gap: 24px; }
  .footer-col { min-width: 140px; }
  .jackpot-grid { gap: 12px; }
  .jackpot-card { min-width: 130px; padding: 12px 16px; }
  .review-block {padding: 26px;}
}
@media (max-width: 480px) {
  .btn--hero { padding: 12px 24px; font-size: 15px; }
  .bonus-card { flex: 0 0 260px; }
  .footer-bottom { flex-direction: column; }
  .sticky-widget { flex-wrap: wrap; }
  .widget-text { order: 1; flex: 0 0 100%; }
  .widget-btn { order: 2; flex: 1; justify-content: center; }
  .widget-close { order: 0; margin-left: auto; }
  .header-logo img {height: 22px;}
  .review-content table {font-size: 12px;}
  .review-content th, .review-content td {padding: 7px 10px;}
  .review-block {padding: 16px;}
  .sticky-widget {display: none;}
}

@media (max-width: 420px) {
  .header-actions .btn--login {display: none;}
}
.wp-block-group { display: block; }
.wp-block-separator { border: none; border-top: 1px solid var(--clr-border); margin: 20px 0; }
.entry-content { display: block; }
.elementor-widget { display: block; }
.wp-post-image { max-width: 100%; border-radius: var(--radius-sm); }
.wp-caption { max-width: 100%; text-align: center; }
.wp-caption-text { font-size: 12px; color: var(--clr-muted); margin-top: 4px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.aligncenter { text-align: center; margin: 0 auto; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
