/* Points System Page - Modern Professional Design */

:root {
  --primary: #7367f0;
  --primary-dark: #5e50ee;
  --secondary: #28c76f;
  --accent: #00cfe8;
  --danger: #ea5455;
  --warning: #ff9f43;
  --info: #00cfe8;
  --dark-bg: #1e1e2d;
  --card-bg: #282a3c;
  --text-primary: #e7e7ff;
  --text-secondary: #a8aabc;
  --border-color: rgba(115, 103, 240, 0.15);
}

/* === Announcement Card === */
.announcement-card {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(40, 199, 111, 0.1), rgba(0, 207, 232, 0.1));
  border: 2px solid rgba(40, 199, 111, 0.3);
  border-radius: 16px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.announcement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.announcement-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.announcement-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 12px;
  flex-shrink: 0;
}

.announcement-icon i {
  font-size: 1.75rem;
  color: white;
}

.announcement-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.announcement-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.announcement-content {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.announcement-content p {
  margin-bottom: 1.25rem;
}

.announcement-content strong {
  color: white;
  font-weight: 700;
}

.announcement-changes {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.change-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.change-item:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.change-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 199, 111, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
}

.change-icon i {
  font-size: 1.125rem;
  color: var(--secondary);
}

.change-content {
  flex: 1;
}

.change-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.change-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.announcement-cta {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(40, 199, 111, 0.1);
  border: 1px solid rgba(40, 199, 111, 0.25);
  border-radius: 10px;
  text-align: center;
}

.announcement-cta p {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.announcement-cta span {
  color: var(--secondary);
}

/* === Hero Section === */
.points-hero {
  padding: 1.5rem 0 1rem;
  margin-bottom: 2.5rem;
}

.points-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.points-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(115, 103, 240, 0.1);
  border: 1px solid rgba(115, 103, 240, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.points-hero-badge i {
  font-size: 0.875rem;
}

.points-hero-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
  color: white;
}

.highlight-gradient {
  color: var(--primary);
}

.points-hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* === Stats Bar === */
.points-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.points-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.points-stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 103, 240, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.25rem;
  color: var(--primary);
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.3;
  display: block;
}

/* === Section Headers === */
.section-header-modern {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  background: rgba(115, 103, 240, 0.1);
  border: 1px solid rgba(115, 103, 240, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
  color: white;
}

.section-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* === Points Methods Grid === */
.points-methods-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.points-method-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.2s ease;
}

.points-method-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.method-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 103, 240, 0.15);
  border-radius: 10px;
  flex-shrink: 0;
}

.method-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.method-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.method-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Difficulty Grid */
.difficulty-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.difficulty-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.difficulty-item:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.difficulty-badge {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-very-easy {
  background: rgba(0, 207, 232, 0.15);
  color: #00cfe8;
  border: 1px solid rgba(0, 207, 232, 0.3);
}

.badge-easy {
  background: rgba(40, 199, 111, 0.15);
  color: #28c76f;
  border: 1px solid rgba(40, 199, 111, 0.3);
}

.badge-medium {
  background: rgba(255, 159, 67, 0.15);
  color: #ff9f43;
  border: 1px solid rgba(255, 159, 67, 0.3);
}

.badge-hard {
  background: rgba(234, 84, 85, 0.15);
  color: #ea5455;
  border: 1px solid rgba(234, 84, 85, 0.3);
}

.badge-daily {
  background: rgba(115, 103, 240, 0.15);
  color: #7367f0;
  border: 1px solid rgba(115, 103, 240, 0.3);
}

.difficulty-points {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.points-breakdown {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex: 1;
}

.points-breakdown strong {
  color: white;
}

.points-total {
  font-size: 0.875rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.points-total span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-left: 0.5rem;
}

/* Method Tips */
.method-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 207, 232, 0.08);
  border: 1px solid rgba(0, 207, 232, 0.2);
  border-left-width: 3px;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.method-tip i {
  color: #00cfe8;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.method-tip strong {
  color: white;
}

.method-tip.warning {
  background: rgba(255, 159, 67, 0.08);
  border-color: rgba(255, 159, 67, 0.2);
}

.method-tip.warning i {
  color: #ff9f43;
}

.method-tip.success {
  background: rgba(40, 199, 111, 0.08);
  border-color: rgba(40, 199, 111, 0.2);
}

.method-tip.success i {
  color: #28c76f;
}

.method-tip.info {
  background: rgba(115, 103, 240, 0.08);
  border-color: rgba(115, 103, 240, 0.2);
}

.method-tip.info i {
  color: #7367f0;
}

.method-tip a {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.method-tip a:hover {
  color: var(--primary);
}

/* First Blood Specific */
.first-blood-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blood-rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.blood-reward-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.blood-reward-item:hover {
  background: rgba(234, 84, 85, 0.1);
  box-shadow: 0 4px 12px rgba(234, 84, 85, 0.2);
}

.blood-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.blood-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.blood-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 0.375rem;
}

.blood-per {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.blood-total {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 0.25rem 0.5rem;
  background: rgba(40, 199, 111, 0.1);
  border-radius: 4px;
  display: inline-block;
}

/* Featured Card */
.card-featured {
  position: relative;
  border: 1px solid rgba(255, 159, 67, 0.3);
  background: rgba(255, 159, 67, 0.05);
}

.card-featured:hover {
  border-color: rgba(255, 159, 67, 0.4);
  background: rgba(255, 159, 67, 0.08);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, var(--warning), var(--danger));
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 159, 67, 0.3);
}

.featured-badge i {
  font-size: 0.875rem;
}

/* Courses & Writeups */
.course-points-info,
.writeup-points-info {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.writeup-points-info p {
  margin-bottom: 1.5rem;
}

.writeup-points-info p strong {
  color: white;
}

.course-highlight,
.writeup-reward {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(40, 199, 111, 0.08);
  border: 1px solid rgba(40, 199, 111, 0.2);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.course-icon-large,
.writeup-badge {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 12px;
  flex-shrink: 0;
}

.course-icon-large i,
.writeup-badge i {
  font-size: 2rem;
  color: white;
}

.course-label,
.writeup-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.course-value,
.writeup-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.writeup-reward {
  background: rgba(255, 159, 67, 0.08);
  border-color: rgba(255, 159, 67, 0.2);
  margin-bottom: 1.5rem;
}

.writeup-badge {
  background: linear-gradient(135deg, var(--warning), var(--danger));
}

/* Writeup Benefits */
.writeup-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 159, 67, 0.2);
}

.benefit-item i {
  color: var(--warning);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-item span {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* === Ranking Explainer === */
.ranking-explainer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ranking-explainer-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.ranking-explainer-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.explainer-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 103, 240, 0.15);
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.explainer-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.explainer-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.explainer-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.explainer-text strong {
  color: white;
}

/* === Ranking Categories === */
.ranking-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ranking-category-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.ranking-category-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 103, 240, 0.15);
  border-radius: 10px;
  margin-bottom: 1.25rem;
}

.category-users .category-icon {
  background: rgba(255, 215, 0, 0.15);
}

.category-users .category-icon i {
  color: #ffd700;
}

.category-countries .category-icon {
  background: rgba(40, 199, 111, 0.15);
}

.category-countries .category-icon i {
  color: var(--secondary);
}

.category-universities .category-icon {
  background: rgba(115, 103, 240, 0.15);
}

.category-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.category-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.category-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.category-link:hover {
  gap: 0.75rem;
  color: white;
}

.category-link i {
  font-size: 1.125rem;
  transition: transform 0.2s ease;
}

.category-link:hover i {
  transform: translateX(2px);
}

/* === Tips Grid === */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tip-card-modern {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.tip-card-modern:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tip-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 103, 240, 0.15);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.tip-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.tip-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.tip-text a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tip-text a:hover {
  color: white;
  text-decoration: underline;
}

/* === CTA Section === */
.cta-section {
  padding: 3rem 2rem;
  background: rgba(115, 103, 240, 0.08);
  border: 1px solid rgba(115, 103, 240, 0.2);
  border-radius: 16px;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(115, 103, 240, 0.15);
  border-radius: 12px;
  margin: 0 auto 1.5rem;
}

.cta-icon-wrapper i {
  font-size: 2rem;
  color: var(--primary);
}

.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  color: white;
}

.cta-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-cta-primary {
  background: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(115, 103, 240, 0.3);
}

.btn-cta-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(115, 103, 240, 0.4);
  color: white;
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: white;
}

.btn-cta-primary i,
.btn-cta-secondary i {
  font-size: 1.125rem;
}

/* === Responsive Design === */
@media (max-width: 768px) {
  .points-hero {
    padding: 3rem 0 2rem;
  }

  .points-hero-title {
    font-size: 2.25rem;
  }

  .points-hero-description {
    font-size: 1rem;
  }

  .points-stats-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .difficulty-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .difficulty-points {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .points-breakdown {
    flex-direction: column;
    gap: 0.5rem;
  }

  .blood-rewards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ranking-categories-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .method-header {
    flex-direction: column;
  }

  .difficulty-badge {
    font-size: 0.75rem;
  }

  .course-highlight,
  .writeup-reward {
    flex-direction: column;
    text-align: center;
  }
}
