@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --clr-header: #1b4153;
  --clr-header-dark: #142f3d;
  --clr-btn-orange: #db941b;
  --clr-btn-orange-h: #c27f10;
  --clr-btn-green: #1f7209;
  --clr-btn-green-h: #175e07;
  --clr-bg: #605327;
  --clr-bg-dark: #4a3e1c;
  --clr-bg-light: #7a6933;
  --clr-text: #f5ead8;
  --clr-text-muted: #c9b88a;
  --clr-white: #ffffff;
  --clr-card: rgba(27,65,83,0.82);
  --clr-card-border: rgba(219,148,27,0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,0,0,0.38);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Lilita One', sans-serif;
  line-height: 1.25;
  color: var(--clr-white);
}

a { color: var(--clr-btn-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-orange-h); }

img { max-width: 100%; display: block; }

.wrapper { display: flex; flex-direction: column; min-height: 100vh; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.x9f2a { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-family: 'Lilita One', sans-serif;
  font-size: 15px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.32); }
.btn:active { transform: translateY(0); }

.btn--green {
  background: var(--clr-btn-green);
  color: var(--clr-white);
}
.btn--green:hover { background: var(--clr-btn-green-h); color: var(--clr-white); }

.btn--orange {
  background: var(--clr-btn-orange);
  color: #1a1a1a;
}
.btn--orange:hover { background: var(--clr-btn-orange-h); color: #1a1a1a; }

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-btn-orange);
  color: var(--clr-btn-orange);
}
.btn--outline:hover { background: var(--clr-btn-orange); color: #1a1a1a; }

.btn--lg { padding: 15px 36px; font-size: 18px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }

.site-header {
  background: var(--clr-header);
  box-shadow: 0 2px 16px rgba(0,0,0,0.45);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover { background: rgba(255,255,255,0.1); color: var(--clr-white); }

.header-nav svg { flex-shrink: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.winner-ticker {
  background: rgba(219,148,27,0.15);
  border: 1px solid rgba(219,148,27,0.4);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--clr-btn-orange);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  margin-right: 6px;
}
.winner-ticker span { font-weight: 700; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 910;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/aztec-fire-hero.webp') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,30,40,0.82) 0%, rgba(15,30,40,0.4) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 60px 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(219,148,27,0.2);
  border: 1px solid var(--clr-btn-orange);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 13px;
  color: var(--clr-btn-orange);
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 17px;
  color: var(--clr-text);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-stars .stars { color: #f5c518; font-size: 20px; letter-spacing: 2px; }
.hero-stars .rating-label { font-size: 14px; color: var(--clr-text-muted); }
.hero-stars .rating-val { font-family: 'Lilita One', sans-serif; color: var(--clr-white); font-size: 18px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.section-wrap {
  padding: 60px 0;
}
.section-wrap + .section-wrap {
  padding-top: 0;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-align: center;
  margin-bottom: 8px;
  color: var(--clr-white);
}
.section-sub {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 38px;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.adv-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.45); }

.adv-icon {
  width: 54px;
  height: 54px;
  background: rgba(219,148,27,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.adv-icon svg { color: var(--clr-btn-orange); }

.adv-card h3 { font-size: 15px; margin-bottom: 8px; color: var(--clr-white); }
.adv-card p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.55; }

.app-section-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.app-phone-wrap {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 200px;
  background: #0d1b24;
  border-radius: 36px;
  border: 3px solid rgba(219,148,27,0.5);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  position: relative;
  padding: 14px 8px;
}
.phone-frame::before {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 12px;
}
.phone-frame img {
  width: 100%;
  border-radius: 18px;
}

.app-info { flex: 1 1 280px; }
.app-info h2 { margin-bottom: 18px; }

.app-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  overflow-x: auto;
}
.app-table th,
.app-table td {
  border: 1px solid rgba(219,148,27,0.25);
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}
.app-table th {
  background: rgba(27,65,83,0.9);
  color: var(--clr-btn-orange);
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
}
.app-table td { color: var(--clr-text); background: rgba(27,65,83,0.5); }
.app-table tr:hover td { background: rgba(27,65,83,0.75); }

.app-dl-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(27,65,83,0.9);
  border: 1px solid rgba(219,148,27,0.4);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-store:hover { background: var(--clr-header); transform: translateY(-2px); color: var(--clr-white); }
.btn-store svg { color: var(--clr-btn-orange); }

.screenshots-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.screenshots-slider::-webkit-scrollbar { height: 5px; }
.screenshots-slider::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 3px; }
.screenshots-slider::-webkit-scrollbar-thumb { background: var(--clr-btn-orange); border-radius: 3px; }

.screenshot-item {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-card-border);
}
.screenshot-item img { width: 100%; height: 200px; object-fit: cover; display: block; }

.demo-section-inner {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.demo-header {
  background: rgba(27,65,83,0.95);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.demo-header h2 { font-size: 1.3rem; margin: 0; }
.demo-iframe-wrap {
  position: relative;
  background: #0a0f14;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-iframe-wrap iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}

.review-block {
  background: rgba(27,65,83,0.55);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.review-block h2,
.review-block h3 { margin-bottom: 14px; color: var(--clr-white); }

.review-block p { margin-bottom: 14px; color: var(--clr-text); line-height: 1.7; }

.review-block ul,
.review-block ol { margin: 0 0 16px 22px; color: var(--clr-text); line-height: 1.75; }

.review-block li { margin-bottom: 6px; }

.review-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow-x: auto;
  display: block;
}
.review-block table th,
.review-block table td {
  border: 1px solid rgba(219,148,27,0.25);
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}
.review-block table th {
  background: rgba(27,65,83,0.9);
  color: var(--clr-btn-orange);
}
.review-block table td { background: rgba(27,65,83,0.5); color: var(--clr-text); }

.review-block a { color: var(--clr-btn-orange); }
.review-block a:hover { color: var(--clr-btn-orange-h); text-decoration: underline; }

.review-block blockquote {
  border-left: 4px solid var(--clr-btn-orange);
  padding: 10px 20px;
  background: rgba(219,148,27,0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 18px 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

.faq-list {  margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  color: var(--clr-white);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.05); }

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(219,148,27,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--clr-btn-orange); }
.faq-chevron svg { color: var(--clr-btn-orange); }
.faq-item.open .faq-chevron svg { color: #1a1a1a; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--clr-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.author-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.author-photo-wrap { flex: 0 0 auto; }
.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-btn-orange);
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

.author-info { flex: 1 1 260px; }
.author-name { font-size: 1.4rem; margin-bottom: 4px; }
.author-role { color: var(--clr-btn-orange); font-size: 14px; margin-bottom: 4px; font-weight: 600; }
.author-location { color: var(--clr-text-muted); font-size: 13px; margin-bottom: 12px; display: flex; align-items: center; gap: 5px; }
.author-bio { font-size: 14px; color: var(--clr-text); line-height: 1.7; margin-bottom: 16px; }
.author-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--clr-text-muted); margin-bottom: 16px; }
.author-meta strong { color: var(--clr-text); }
.author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,65,83,0.8);
  border: 1px solid rgba(219,148,27,0.3);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  color: var(--clr-text);
  transition: background var(--transition), color var(--transition);
}
.author-social-link:hover { background: var(--clr-btn-orange); color: #1a1a1a; }
.author-dates { font-size: 12px; color: var(--clr-text-muted); margin-top: 14px; display: flex; flex-wrap: wrap; gap: 14px; }

.site-footer {
  background: var(--clr-header-dark);
  color: var(--clr-text-muted);
  padding: 48px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col { flex: 1 1 180px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 44px; }
.footer-desc { font-size: 13px; line-height: 1.65; }

.footer-nav-title {
  font-family: 'Lilita One', sans-serif;
  color: var(--clr-white);
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a { color: var(--clr-text-muted); font-size: 14px; transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--clr-btn-orange); }

.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.payment-logo {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-white);
}
.footer-socials-link {display: block;width: fit-content;}
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-socials-provider {height: 20px;width: auto;}
.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--transition), color var(--transition);
}
.footer-social:hover { background: var(--clr-btn-orange); color: #1a1a1a; }
.footer-flag {height: 20px;width: auto;}
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.trust-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--clr-text-muted);
  font-weight: 600;
}
.trust-badge.age { background: rgba(219,0,0,0.2); color: #ff8080; border-color: rgba(219,0,0,0.35); font-weight: 700; font-size: 13px; }

.au-flag { font-size: 22px; vertical-align: middle; }

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 980;
  background: var(--clr-header-dark);
  border-top: 2px solid var(--clr-btn-orange);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.55);
}
.widget-text { font-size: 14px; color: var(--clr-text); font-weight: 600; }
.widget-text span { color: var(--clr-btn-orange); }
.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 2px 6px;
  transition: color var(--transition);
}
.widget-close:hover { color: var(--clr-white); }

.info-page-wrap {
  max-width: 860px;
  margin: 48px auto;
  background: var(--clr-card);
  border: 1px solid var(--clr-card-border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.info-page-wrap h1 { font-size: 1.9rem; margin-bottom: 22px; }
.info-page-wrap h2 { font-size: 1.3rem; margin: 24px 0 10px; }
.info-page-wrap p { margin-bottom: 14px; font-size: 15px; line-height: 1.7; color: var(--clr-text); }
.info-page-wrap ul,
.info-page-wrap ol { margin: 0 0 14px 22px; color: var(--clr-text); line-height: 1.75; }
.info-page-wrap li { margin-bottom: 6px; font-size: 15px; }
.info-page-wrap a { color: var(--clr-btn-orange); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--clr-text-muted);
  padding: 12px 0 0;
}
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-btn-orange); }
.breadcrumb .sep { opacity: 0.4; }

.fade-in {
  animation: fadeIn 0.55s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  animation: slideUp 0.5s ease both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.wp-caption { max-width: 100%; }
.wp-block-image { margin: 0; }
.wp-block-separator { border-color: var(--clr-card-border); }
.has-text-align-center { text-align: center; }
.has-large-font-size { font-size: 1.5rem; }
.text-orange { color: var(--clr-btn-orange); }
.text-muted { color: var(--clr-text-muted); }
.text-center { text-align: center; }
.mt1 { margin-top: 1rem; }
.mb1 { margin-bottom: 1rem; }
.mt2 { margin-top: 2rem; }
.mb2 { margin-bottom: 2rem; }

.box {
  background: rgba(27,65,83,0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(219,148,27,0.15);
}
@media (max-width: 1024px) {
.winner-ticker {display: none;}
}
@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--clr-header-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    z-index: 905;
    gap: 4px;
    overflow-y: auto;
  }
  .header-nav.open { display: flex; }
  .header-nav a { font-size: 16px; padding: 10px 12px; width: 100%; }
  .burger { display: flex; }
  .winner-ticker { display: none; }
}

@media (max-width: 600px) {
  .hero-section { min-height: 420px; }
  .hero-content h1 { font-size: 1.7rem; }
  .app-section-inner { flex-direction: column; align-items: center; }
  .phone-frame { width: 160px; }
  .screenshot-item { width: 240px; }
  .review-block { padding: 22px 16px; }
  .author-card { padding: 20px 16px; }
  .footer-grid { gap: 24px; }
  .sticky-widget { flex-wrap: wrap; }
  .info-page-wrap { padding: 22px 14px; }
  .demo-iframe-wrap iframe { height: 380px; }
  .demo-iframe-wrap { min-height: 380px; }
  .footer-grid {flex-direction: column;}
}

body.nav-open { overflow: hidden; }

.dkl9x2 { visibility: visible; }
.mnv7e3 { pointer-events: auto; }
