/* KABOOM77 Australia Bonus Page Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --boom-color: #ffff00;
  --explosion-color: #ffeb3b;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #b0b0b0;
  --background-dark: #0a0a0a;
  --background-darker: #050505;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-boom: 0 0 30px rgba(255, 255, 0, 0.5);
  --shadow-explosion: 0 0 50px rgba(255, 107, 53, 0.6);
  --gradient-boom: linear-gradient(135deg, #ffff00, #ffeb3b, #ffd700);
  --gradient-primary: linear-gradient(135deg, #ff6b35, #f7931e, #ff8c42);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Exo 2', sans-serif;
  background: url('../images/reze.gif') center/cover no-repeat fixed;
  color: var(--text-primary);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/reze.gif') center/cover no-repeat fixed;
  z-index: -2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px var(--boom-color));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--boom-color);
  text-shadow: 0 0 10px var(--boom-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--boom-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-explosion);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--boom-color);
  color: var(--boom-color);
}

.btn-mega {
  background: var(--gradient-boom);
  color: #000;
  font-size: 1.2rem;
  padding: 15px 30px;
  box-shadow: var(--shadow-boom);
  animation: pulse 2s infinite;
}

.btn-claim {
  background: var(--gradient-primary);
  color: #000;
  font-size: 0.9rem;
  padding: 10px 20px;
}

.btn-promo {
  background: var(--gradient-boom);
  color: #000;
  font-weight: 800;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  font-weight: 900;
  color: var(--boom-color);
  text-shadow: 0 0 30px var(--boom-color);
  margin-bottom: 1rem;
  animation: boom 3s infinite;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--boom-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-explosion);
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--boom-color);
  text-shadow: 0 0 20px var(--boom-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--boom-color);
  text-shadow: 0 0 20px var(--boom-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Welcome Bonus Section */
.welcome-bonus {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.1);
}

.bonus-showcase {
  max-width: 800px;
  margin: 0 auto;
}

.bonus-main {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 3px solid var(--boom-color);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-main::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 0, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
  z-index: -1;
}

.bonus-amount {
  font-family: 'Orbitron', monospace;
  font-size: 5rem;
  font-weight: 900;
  color: var(--boom-color);
  text-shadow: 0 0 30px var(--boom-color);
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.bonus-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.bonus-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.bonus-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  background: rgba(255, 255, 0, 0.1);
  padding: 1rem;
  border-radius: 10px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Daily Bonuses Section */
.daily-bonuses {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.05);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card:hover {
  border-color: var(--boom-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-explosion);
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bonus-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: var(--boom-color);
  margin-bottom: 1rem;
}

.bonus-value {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--boom-color);
}

.bonus-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Special Promotions */
.special-promotions {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.1);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promo-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-card:hover {
  border-color: var(--boom-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-explosion);
}

.promo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--boom-color);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 800;
}

.promo-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: var(--boom-color);
  margin-bottom: 1rem;
}

.promo-value {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--boom-color);
}

.promo-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.promo-timer {
  background: rgba(255, 0, 0, 0.2);
  padding: 0.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  color: #ff6b6b;
  font-weight: 600;
}

/* Bonus Terms */
.bonus-terms {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.05);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.term-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.term-item:hover {
  border-color: var(--boom-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-explosion);
}

.term-item h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--boom-color);
  margin-bottom: 1rem;
}

.term-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cta-content h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--boom-color);
  text-shadow: 0 0 20px var(--boom-color);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--boom-color);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--boom-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

/* Animations */
@keyframes boom {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(1deg); }
  50% { transform: scale(1.05) rotate(-1deg); }
  75% { transform: scale(1.08) rotate(0.5deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Boom Effects */
.boom-trigger {
  position: relative;
  overflow: hidden;
}

.boom-trigger::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--boom-color) 0%, transparent 70%);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.boom-trigger:hover::before {
  width: 300px;
  height: 300px;
}

.boom-card {
  position: relative;
  overflow: hidden;
}

.boom-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

/* Bonus Codes Section */
.bonus-codes {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.1);
}

.codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.code-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.code-card:hover {
  border-color: var(--boom-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-explosion);
}

.code-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--boom-color);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 800;
}

.code-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: var(--boom-color);
  margin: 2rem 0 1rem;
  text-shadow: 0 0 20px var(--boom-color);
}

.code-value {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.code-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.code-copy {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.code-copy input {
  flex: 1;
  padding: 0.5rem;
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  text-align: center;
}

.btn-copy {
  background: var(--gradient-primary);
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* How to Claim Section */
.how-to-claim {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.05);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: var(--boom-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-explosion);
}

.step-number {
  background: var(--boom-color);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  color: var(--boom-color);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-content ul {
  list-style: none;
  padding: 0;
}

.step-content ul li {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Bonus Comparison Section */
.bonus-comparison {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.1);
}

.comparison-table {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--boom-color);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
}

.table-header > div {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.table-header > div:last-child {
  border-right: none;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--glass-border);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row > div {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-row > div:last-child {
  border-right: none;
}

.feature-name {
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 0, 0.1);
}

.kaboom-value {
  color: var(--boom-color);
  font-weight: 700;
  background: rgba(255, 255, 0, 0.1);
}

.other-value {
  color: var(--text-muted);
  background: rgba(255, 0, 0, 0.1);
}

/* Bonus Tips Section */
.bonus-tips {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.05);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-card:hover {
  border-color: var(--boom-color);
  transform: translateY(-10px);
  box-shadow: var(--shadow-explosion);
}

.tip-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  color: var(--boom-color);
  margin-bottom: 1rem;
}

.tip-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tip-games,
.tip-schedule,
.tip-limits,
.tip-mobile {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.game-tag,
.schedule-item,
.limit-item,
.mobile-feature {
  background: rgba(255, 255, 0, 0.2);
  color: var(--text-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Bonus FAQ Section */
.bonus-faq {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.1);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--boom-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-explosion);
}

.faq-item h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--boom-color);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* JavaScript for Copy Function */
.copy-success {
  background: var(--boom-color) !important;
  color: #000 !important;
  animation: pulse 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .bonus-features {
    grid-template-columns: 1fr;
  }
  
  .bonus-grid,
  .promo-grid,
  .terms-grid,
  .codes-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .table-header,
  .table-row {
    grid-template-columns: 1fr;
  }
  
  .table-header > div,
  .table-row > div {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
  
  .table-header > div:last-child,
  .table-row > div:last-child {
    border-bottom: none;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .code-copy {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .bonus-amount {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}