/* Base styles */
:root {
  --primary-color: #000000;
  --secondary-color: #0a0a0a;
  --accent-color: #7000FF;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --font-family: 'Montserrat', sans-serif;
}

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

/* Barbell Loading Animation */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.barbell-loader {
  position: relative;
  width: 200px;
  height: 40px;
  margin-bottom: 20px;
}

.bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 10px;
  background-color: #444;
  border-radius: 5px;
}

.plate {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 40px;
  background-color: var(--accent-color);
  border-radius: 5px;
  transform: translateY(-50%);
  animation: pulse 1.5s infinite alternate;
}

.plate-left {
  left: 10px;
  animation-delay: 0s;
}

.plate-right {
  right: 10px;
  animation-delay: 0.75s;
}

.loading-text {
  color: var(--accent-color);
  font-family: var(--font-family);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  animation: pulse-text 1.5s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
    transform: translateY(-50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes pulse-text {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(to bottom, #0a0a0a, #1a1a1a);
}

/* Particles background */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Content container */
.content-container {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}

.logo {
  height: 50px;
  margin-right: 1rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Navigation styles */
.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--accent-color);
}

/* Hamburger menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1500;
}

.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Hamburger animation */
.hamburger-menu.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile navigation styles */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    z-index: 1400;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 1.5rem 0;
  }
  
  /* Ensure vision and mission headings are properly centered and colored on mobile */
  .about-text h3 {
    text-align: center;
    color: var(--accent-color);
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
}

/* Sections */
section {
  padding: 6rem 5%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--accent-color);
  box-shadow: 0 0 5px var(--accent-color), 0 0 10px var(--accent-color);
}

/* Hero section */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 5px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* About section */
.about {
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-section, .mission-section {
  margin-bottom: 2rem;
  width: 100%;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin: 1.5rem 0 1rem;
  text-align: center;
  width: 100%; /* Ensure full width for proper centering */
  display: block; /* Ensure block display for proper centering */
}

.vision-section h3, .mission-section h3 {
  margin-top: 0;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}

/* Community section */
.community {
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}

.community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: -1;
}

.community-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.community-box {
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.community-text p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}

.community-text p:last-child {
  margin-bottom: 0;
}

/* Nutrition Challenge section */
.nutrition-challenge {
  background: rgba(0, 0, 0, 0.6);
  position: relative;
}

.nutrition-challenge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.challenge-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.challenge-details {
  max-width: 600px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.challenge-details h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.challenge-details p {
  margin-bottom: 1.5rem;
}

.challenge-details ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.challenge-details li {
  margin-bottom: 0.8rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Signup section */
.signup {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}

.signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  z-index: -1;
}

.signup p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  max-width: 90%;
  width: 700px;
  margin: 0 auto;
}

/* MailerLite Form Styling Overrides */
.ml-form-embedWrapper {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ml-form-embedBody {
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ml-form-embedContent h4 {
  display: none !important;
}

.ml-form-embedContent p {
  display: none !important;
}

.ml-form-embedSubmit button {
  padding: 1rem 2.5rem !important;
  background-color: var(--accent-color) !important;
  border: none !important;
  border-radius: 4px !important;
  color: var(--text-color) !important;
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  letter-spacing: 1px !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
}

.ml-form-embedSubmit button:hover {
  background-color: #8C1FFF !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3) !important;
}

input[type="email"],
input[type="text"],
input[type="tel"],
.ml-form-formContent input[type="email"],
.ml-form-formContent input[type="text"],
.ml-form-formContent input[type="tel"] {
  padding: 1rem !important;
  margin-bottom: 1rem !important;
  border: none !important;
  border-radius: 4px !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--text-color) !important;
  font-family: var(--font-family) !important;
  font-size: 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
.ml-form-formContent input[type="email"]:focus,
.ml-form-formContent input[type="text"]:focus,
.ml-form-formContent input[type="tel"]:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px var(--accent-color) !important;
}

#form-message,
#challenge-form-message {
  margin-top: 1rem;
  min-height: 20px;
}

/* Contact section */
.contact {
  background: rgba(0, 0, 0, 0.6);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
  z-index: -1;
}

.contact-content {
  display: flex;
  justify-content: center;
}

.contact-info {
  text-align: center;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-color);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-icon svg {
  transition: transform 0.3s ease;
}

.social-icon:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

.facebook-icon {
  background-color: rgba(66, 103, 178, 0.15);
}

.facebook-icon:hover {
  background-color: rgba(66, 103, 178, 0.25);
}

.substack-icon {
  background-color: rgba(66, 103, 178, 0.15);
}

.substack-icon:hover {
  background-color: rgba(66, 103, 178, 0.25);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: rgba(10, 10, 10, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Button styles */
.cta-button {
  padding: 1rem 2.5rem;
  background-color: var(--accent-color);
  border: none;
  border-radius: 4px;
  color: var(--text-color);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}

/* Challenge button specific styles */
.challenge-button {
  display: block;
  margin: 0 auto;
}

.cta-button:hover {
  background-color: #8C1FFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3);
}

.cta-button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(112, 0, 255, 0.3);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--secondary-color);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--accent-color);
}

#challenge-form {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive styles */
@media (max-width: 768px) {
  header {
    padding: 1rem 5%;
  }
  
  .logo-container {
    margin-right: auto;
  }
  
  h1 {
    font-size: 1.2rem;
  }
  
  .hero {
    align-items: center;
    padding-top: 95px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-top: 0;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text {
    margin-bottom: 2rem;
    padding: 0 10px;
  }
  
  /* Ensure vision and mission text is properly formatted */
  .vision-section, .mission-section {
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }
  
  .about-text h3 {
    font-size: 1.6rem;
    text-align: center;
    color: var(--accent-color) !important;
    margin: 1rem 0;
    padding: 0.5rem 0;
    position: relative;
  }
  
  .about-text p {
    text-align: left;
    padding: 0 5px;
    font-size: 1.1rem;
  }
  
  /* Fix community section on mobile */
  .community-box {
    padding: 1rem;
    margin: 0 10px;
  }
  
  .community-text p {
    text-align: left;
    padding: 0;
    font-size: 1.1rem;
  }
  
  section {
    padding: 4rem 5%;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
  
  .hero {
    padding-top: 70px;
    justify-content: center;
  }
  
  .hero-content {
    margin-top: 60px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 0 10px;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  /* Additional mobile-specific fixes */
  .vision-section, .mission-section {
    padding: 0.5rem;
    margin-bottom: 1.2rem;
  }
  
  .about-text h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    border-bottom: 1px solid rgba(112, 0, 255, 0.3);
    padding-bottom: 0.5rem;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .community-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
  }
  
  .challenge-details {
    padding: 1.5rem;
  }
}