/* ============================
   EVA VIP CASINO — Main Styles
   ============================ */

:root {
  --bg:        #0a0a18;
  --bg2:       #111127;
  --bg3:       #1a1a35;
  --card:      #14142a;
  --accent:    #e91e8c;
  --accent2:   #ff4db8;
  --gold:      #f5c842;
  --gold2:     #ffe47a;
  --text:      #ffffff;
  --muted:     #8888aa;
  --border:    rgba(233,30,140,0.2);
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 30px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 20px rgba(233,30,140,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================
   HEADER
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,24,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 38px; }
.logo-text {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(233,30,140,0.12);
}
.nav-link.active { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  border: none;
  outline: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c0157a);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d4a017);
  color: #1a1000;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(245,200,66,0.35);
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-lg {
  padding: 14px 34px;
  font-size: 16px;
  border-radius: var(--radius);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../header-bg.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,24,0.92) 40%, rgba(10,10,24,0.3) 100%),
              linear-gradient(0deg, rgba(10,10,24,1) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.4);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--accent2);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-badge::before {
  content: '●';
  font-size: 8px;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================
   FEATURES BAR
   ============================ */
.features-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(233,30,140,0.06); }

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(233,30,140,0.2), rgba(233,30,140,0.05));
  border: 1px solid rgba(233,30,140,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-text-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.feature-text-sub {
  font-size: 12px;
  color: var(--muted);
}

/* ============================
   SECTION COMMONS
   ============================ */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -.5px;
}
.section-title span { color: var(--accent); }

.section-link {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  opacity: .85;
  transition: opacity .2s;
}
.section-link:hover { opacity: 1; }

/* ============================
   LIVE WINS TICKER
   ============================ */
.wins-ticker {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}

.wins-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(233,30,140,0.06);
}

.wins-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.4s ease-in-out infinite;
}

.wins-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wins-list {
  display: flex;
  flex-direction: column;
}

.win-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: slideIn .4s ease;
  transition: background .2s;
}
.win-item:last-child { border-bottom: none; }
.win-item:hover { background: rgba(255,255,255,0.03); }

@keyframes slideIn {
  from { opacity:0; transform: translateY(-10px); }
  to   { opacity:1; transform: translateY(0); }
}

.win-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
}

.win-name { font-size: 14px; font-weight: 600; flex: 1; }
.win-game { font-size: 12px; color: var(--muted); }
.win-amount {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

/* ============================
   GAMES GRID
   ============================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
}
.game-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--shadow-accent);
  border-color: rgba(233,30,140,0.4);
}

.game-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg3);
}
.game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.game-card:hover .game-img-wrap img { transform: scale(1.08); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(233,30,140,0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity .25s;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay-btn {
  background: #fff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 50px;
}

.game-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.game-badge.live { background: #22c55e; }
.game-badge.new  { background: var(--gold); color: #1a1000; }
.game-badge.hot  { background: #ef4444; }

.game-info {
  padding: 12px 14px;
}
.game-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================
   WIN NOTIFICATION TOAST
   ============================ */
.win-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.win-toast {
  background: var(--bg3);
  border: 1px solid rgba(233,30,140,0.4);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: toastIn .4s cubic-bezier(.34,1.56,.64,1) forwards;
  pointer-events: auto;
}

.win-toast.hiding {
  animation: toastOut .35s ease forwards;
}

@keyframes toastIn {
  from { opacity:0; transform: translateX(-30px) scale(.95); }
  to   { opacity:1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
  from { opacity:1; transform: translateX(0) scale(1); }
  to   { opacity:0; transform: translateX(-30px) scale(.95); }
}

.toast-icon {
  font-size: 26px;
  flex-shrink: 0;
}
.toast-text-name { font-size: 13px; font-weight: 700; color: #fff; }
.toast-text-game { font-size: 11px; color: var(--muted); }
.toast-amount {
  margin-left: auto;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  padding-left: 10px;
}

/* ============================
   BONUS CARDS
   ============================ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.bonus-card:hover {
  border-color: rgba(233,30,140,0.5);
  box-shadow: var(--shadow-accent);
}

.bonus-icon { font-size: 42px; margin-bottom: 16px; }
.bonus-label {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bonus-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.bonus-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.bonus-terms {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  opacity: .7;
}

/* ============================
   FAQ
   ============================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 600;
  gap: 16px;
  transition: background .2s;
}
.faq-question:hover { background: rgba(233,30,140,0.06); }

.faq-arrow {
  font-size: 18px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* ============================
   SEO TEXT BLOCK
   ============================ */
.seo-block {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.seo-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.seo-inner h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}
.seo-inner .lead {
  color: var(--muted);
  max-width: 680px;
}

.seo-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}
.seo-col p, .seo-col ol, .seo-col ul {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.seo-col ol, .seo-col ul { padding-left: 18px; }
.seo-col li { margin-bottom: 4px; }

/* ============================
   SEO ARTICLE EXTRAS
   ============================ */
.seo-article { }

.seo-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.seo-link:hover { opacity: .75; }

.seo-faq { margin-top: 40px; }
.seo-faq-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.seo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.seo-faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.seo-faq-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.seo-faq-a {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  display: block;
}

.seo-inlinks {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.seo-inlinks-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.seo-inlinks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.seo-inlinks-list a {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  transition: all .2s;
}
.seo-inlinks-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-bottom: 32px;
  align-items: start;
}

.footer-brand .logo-text { font-size: 22px; margin-bottom: 10px; display: block; }
.footer-desc { font-size: 13px; color: var(--muted); max-width: 320px; line-height: 1.7; }

.footer-links-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 12px; color: var(--muted); }

.footer-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-badge {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 20px;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero p {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
}

/* ============================
   SLOTS FILTER
   ============================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(233,30,140,0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================
   LIVE PAGE
   ============================ */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.live-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.live-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.live-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
}
.live-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-badge::before {
  content: '●';
  font-size: 8px;
  animation: blink 1.4s ease-in-out infinite;
}
.live-players {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}
.live-info { padding: 14px 16px; }
.live-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.live-limits { font-size: 12px; color: var(--muted); }

/* ============================
   BREADCRUMBS
   ============================ */
.breadcrumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs a { color: var(--muted); transition: color .2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .features-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .header-inner { height: 60px; gap: 12px; }
  .main-nav { display: none; }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 420px; }
  .hero-stats { gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .win-toast { min-width: 250px; }
}

@media (max-width: 480px) {
  .features-inner { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================
   HAMBURGER MENU (mobile)
   ============================ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
@media (max-width: 680px) {
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(10,10,24,0.98);
    backdrop-filter: blur(14px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .main-nav.open .nav-link { width: 100%; padding: 12px 16px; font-size: 15px; }
}
