/* ============================================================
   БАДМИНТОН — Голубо-белая тема
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #f0f9ff;
  line-height: 1.6;
}

/* === Container === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 25%, #7dd3fc 50%, #38bdf8 75%, #0ea5e9 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__deco {
  position: absolute;
  opacity: 0.5;
}

.hero__deco--1 {
  width: 120px;
  top: 10%;
  left: 8%;
  animation: float1 8s ease-in-out infinite;
}

.hero__deco--2 {
  width: 90px;
  top: 20%;
  right: 12%;
  animation: float2 10s ease-in-out infinite;
  animation-delay: -3s;
}

.hero__deco--3 {
  width: 70px;
  bottom: 18%;
  left: 18%;
  animation: float3 12s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(12deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-10deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(8deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 40px 20px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: #0c4a6e;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 40px rgba(14, 165, 233, 0.15);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: #075985;
  max-width: 520px;
  margin: 0 auto 32px;
  font-weight: 500;
}

.hero__btn {
  display: inline-block;
  padding: 14px 36px;
  background: #0369a1;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(3, 105, 161, 0.35);
}

.hero__btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2, 132, 199, 0.4);
}

/* === Sticky Nav === */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e0f2fe;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: #0369a1;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 18px;
  border-radius: 24px;
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  background: #0ea5e9;
  color: white;
}

/* === Sections === */
.section {
  padding: 80px 0;
}

.section--light {
  background: #ffffff;
}

.section--light-blue {
  background: #f0f9ff;
}

.section--white {
  background: #ffffff;
}

.section--blue {
  background: linear-gradient(160deg, #0ea5e9 0%, #0369a1 50%, #075985 100%);
}

.section--video {
  background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%);
}

.section__title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: #0c4a6e;
}

.section__title--white {
  color: white;
}

.section__title--dark {
  color: #0c4a6e;
}

.section__lead {
  text-align: center;
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section__lead--white {
  color: rgba(255, 255, 255, 0.85);
}

.section__lead--dark {
  color: #64748b;
}

/* === Cards (Inventory) === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(14, 165, 233, 0.08);
  border: 1px solid #e0f2fe;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
  transform: translateY(-4px);
}

.card__illustration {
  width: 100%;
  overflow: hidden;
}

.card__illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

.card__body {
  padding: 24px;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

.card__text strong {
  color: #0369a1;
}

.card__tip {
  background: #f0f9ff;
  border-left: 3px solid #38bdf8;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: #075985;
  line-height: 1.5;
}

/* === Video === */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(14, 165, 233, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* === Ranks === */
.ranks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.rank {
  background: white;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #e0f2fe;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.rank.visible {
  opacity: 1;
  transform: translateY(0);
}

.rank::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.rank--master::before { background: linear-gradient(90deg, #f59e0b, #f97316); }
.rank--kms::before { background: linear-gradient(90deg, #8b5cf6, #6366f1); }
.rank--first::before { background: linear-gradient(90deg, #ef4444, #dc2626); }
.rank--second::before { background: linear-gradient(90deg, #0ea5e9, #06b6d4); }
.rank--third::before { background: linear-gradient(90deg, #22c55e, #16a34a); }

.rank__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: white;
}

.rank--master .rank__badge { background: linear-gradient(135deg, #f59e0b, #f97316); }
.rank--kms .rank__badge { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.rank--first .rank__badge { background: linear-gradient(135deg, #ef4444, #dc2626); }
.rank--second .rank__badge { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.rank--third .rank__badge { background: linear-gradient(135deg, #22c55e, #16a34a); }

.rank__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 8px;
}

.rank__desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

.bwf-info {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 14px;
  padding: 28px;
}

.bwf-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 10px;
}

.bwf-info p {
  color: #475569;
  line-height: 1.7;
}

.bwf-info strong {
  color: #0369a1;
}

/* === Benefits === */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e0f2fe;
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit:hover {
  box-shadow: 0 6px 24px rgba(14, 165, 233, 0.12);
}

.benefit__number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}

.benefit__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 6px;
}

.benefit__content p {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.7;
}

.benefit__content strong {
  color: #0369a1;
}

/* === Muscles === */
.muscles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.muscle-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.muscle-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.muscle-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.muscle-card--wide {
  grid-column: 1 / -1;
}

.muscle-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.muscle-card__icon {
  font-size: 1.8rem;
}

.muscle-card__header h3 {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
}

.muscle-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.muscle-card__list li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.muscle-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #7dd3fc;
  font-weight: 700;
}

.muscle-card__rating {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
}

.stars {
  color: #fbbf24;
  font-size: 1rem;
}

/* === Muscle Table === */
.muscle-table {
  width: 100%;
  border-collapse: collapse;
  color: white;
  font-size: 0.92rem;
}

.muscle-table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 700;
  color: white;
}

.muscle-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.muscle-table tr:hover td {
  background: rgba(255, 255, 255, 0.08);
}

/* === Footer === */
.footer {
  background: #0c4a6e;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 40px 20px;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer__small {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* === Timeline === */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #0ea5e9, #0369a1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 0 40px 40px;
}

.timeline__item--left {
  left: 0;
  text-align: right;
  padding-right: 40px;
}

.timeline__item--right {
  left: 50%;
  text-align: left;
  padding-left: 40px;
}

.timeline__dot {
  position: absolute;
  top: 8px;
  width: 18px;
  height: 18px;
  background: #0ea5e9;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
  z-index: 1;
}

.timeline__item--left .timeline__dot {
  right: -9px;
}

.timeline__item--right .timeline__dot {
  left: -9px;
}

.timeline__card {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px rgba(14, 165, 233, 0.08);
  border: 1px solid #e0f2fe;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__card:hover {
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.12);
}

.timeline__year {
  display: inline-block;
  background: #0ea5e9;
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 6px;
}

.timeline__card p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.timeline__card strong {
  color: #0369a1;
}

/* === Court Diagram === */
.court-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.court-svg {
  width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.court-facts {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(14, 165, 233, 0.08);
  border: 1px solid #e0f2fe;
}

.court-facts h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 16px;
}

.court-facts__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.court-facts__list li {
  font-size: 0.92rem;
  color: #475569;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.court-facts__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #0ea5e9;
  font-weight: 700;
}

.court-facts__list li strong {
  color: #0c4a6e;
}

.court-fact-box {
  background: #f0f9ff;
  border-left: 3px solid #0ea5e9;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem;
  color: #075985;
  line-height: 1.6;
}

.court-fact-box strong {
  color: #0369a1;
}

/* === Techniques === */
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.technique {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(14, 165, 233, 0.08);
  border: 1px solid #e0f2fe;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.technique.visible {
  opacity: 1;
  transform: translateY(0);
}

.technique:hover {
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.12);
}

.technique__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.technique h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 8px;
}

.technique p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 12px;
}

.technique strong {
  color: #0369a1;
}

.technique__tip {
  background: #f0f9ff;
  border-left: 3px solid #38bdf8;
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: #075985;
}

/* === Quiz === */
.quiz-container {
  max-width: 600px;
  margin: 0 auto;
}

.quiz-progress {
  position: relative;
  width: 100%;
  height: 8px;
  background: #e0f2fe;
  border-radius: 4px;
  margin-bottom: 32px;
  overflow: hidden;
}

.quiz-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #0ea5e9, #0369a1);
  border-radius: 4px;
  transition: width 0.4s ease;
  width: 14.28%;
}

.quiz-progress__text {
  position: absolute;
  right: 0;
  top: -22px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
}

.quiz-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 20px rgba(14, 165, 233, 0.1);
  border: 1px solid #e0f2fe;
}

.quiz-card__question {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 24px;
  line-height: 1.5;
}

.quiz-card__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  padding: 14px 18px;
  background: #f0f9ff;
  border: 2px solid #e0f2fe;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #334155;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  font-family: inherit;
  width: 100%;
}

.quiz-option:hover {
  border-color: #0ea5e9;
  background: #e0f2fe;
  color: #0c4a6e;
  transform: translateX(4px);
}

.quiz-option.selected {
  border-color: #0369a1;
  background: #0ea5e9;
  color: white;
}

.quiz-option.correct {
  border-color: #22c55e;
  background: #dcfce7;
  color: #166534;
}

.quiz-option.wrong {
  border-color: #ef4444;
  background: #fee2e2;
  color: #991b1b;
}

.quiz-result {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 2px 20px rgba(14, 165, 233, 0.1);
  border: 1px solid #e0f2fe;
}

.quiz-result__badge {
  font-size: 4rem;
  margin-bottom: 16px;
}

.quiz-result__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0c4a6e;
  margin-bottom: 12px;
}

.quiz-result__desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 24px;
}

.quiz-result__btn {
  display: inline-block;
  padding: 12px 32px;
  background: #0ea5e9;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.quiz-result__btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

/* === Calculator === */
.calc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  align-items: start;
}

.calc-form {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(14, 165, 233, 0.08);
  border: 1px solid #e0f2fe;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.calc-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0c4a6e;
  margin-bottom: 6px;
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0f2fe;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color 0.25s;
  outline: none;
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: #0ea5e9;
  background: white;
}

.calc-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.calc-result {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.25);
}

.calc-result__icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.calc-result__value {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.calc-result__label {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.calc-result__details {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 8px;
  line-height: 1.6;
}

.calc-result__equivalent {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px;
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.5;
}

/* === Responsive === */
@media (max-width: 700px) {
  .timeline::before { left: 20px; }
  .timeline__item { width: 100%; left: 0 !important; padding: 0 0 30px 50px !important; text-align: left !important; }
  .timeline__dot { left: 11px !important; right: auto !important; }
  .court-wrapper { grid-template-columns: 1fr; }
  .court-svg { width: 100%; max-width: 320px; margin: 0 auto; }
  .techniques-grid { grid-template-columns: 1fr; }
  .calc-container { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .ranks-grid { grid-template-columns: 1fr; }
  .muscles-grid { grid-template-columns: 1fr; }
  .benefit { flex-direction: column; gap: 12px; }
  .benefit__number { width: 36px; height: 36px; font-size: 0.95rem; }
  .hero { min-height: 75vh; }
  .muscle-table { font-size: 0.82rem; }
  .muscle-table th, .muscle-table td { padding: 8px 10px; }
}