  html,
  body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
  }

  /* Full screen background image */
  .fullscreen-bg {
    background: url("https://raw.githubusercontent.com/kurt-dvx/DMC/refs/heads/master/DMC.jpg") no-repeat center center fixed;
    background-color: #0b0b1b;
    height: 100vh;
    position: relative;
    color: white;
  }

  /* Position text at the 2nd horizontal third, near bottom of that third */
  .welcome-text {
    position: absolute;
    /* 66.6% down the viewport minus a bit of offset to place near bottom of the 2nd third */
    top: calc(66.6vh - 40px);
    width: 100%;
    text-align: center;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    padding: 0 20px;
  }

  .carousel-section {
    padding: 4rem 0;
  }

  .carousel-item img {
    max-height: 90vh;
    /* Won't exceed 90% of the screen height */
    object-fit: contain;
    /* scales without cropping */
    width: 100%;
    /* Fills the carousel width */
    margin: 0 auto;
    /* Centers the image if it's narrower than the container */
  }

  /* Center align the text within the three columns below the carousel */
  .marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .marketing h2 {
    font-weight: 400;
  }

  .marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
  }

  /* Featurettes
  ------------------------- */

  .featurette-divider {
    margin: 5rem 0;
    /* Space out the Bootstrap <hr> more */
  }

  /* Thin out the marketing headings */
  .featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
  }

  /* Button Style */
  .btn-magenta {
    background-color: #b388fe;
    color: black;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    /* Bootstrap-like padding */
    font-size: 1rem;
    border: none;
    transition: background-color 0.3s ease;
    text-shadow: none;
  }

  .btn-magenta:hover,
  .btn-magenta:focus {
    background-color: #c400c4;
    /* darker magenta */
    color: white;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(196, 0, 196, 0.5);
    /* subtle focus glow */
  }

  /* Weekly Mission Section Styling */
  .events-section {
    background: linear-gradient(to right, #1f1c2c, #6a2c80);
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
  }

  .day-block {
    background-color: rgba(255, 255, 255, 0.07);
    padding: 30px 20px;
    margin: 10px;
    margin-bottom: 80px;
    border-radius: 12px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .day-header {
    font-weight: bold;
    padding: 5px 0;
    margin-bottom: 10px;
    border-radius: 5px;
    color: white;
  }

  .mon {
    background-color: #9b4dca;
  }

  .tue {
    background-color: #4d61ca;
  }

  .wed {
    background-color: #2ac3d2;
  }

  .thu {
    background-color: #29c27f;
  }

  .fri {
    background-color: #a4ce3c;
  }

  .sat {
    background-color: #f4b53f;
  }

  .sun {
    background-color: #ef4a3c;
  }

  .icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .mission {
    font-weight: bold;
    font-size: 1rem;
  }

  .frosted-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .team-section {
    background: linear-gradient(to left, #1f1c2c, #6a2c80);
    padding: 4rem 0;
    color: white;
  }

  .member-card {
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: white;
    transition: transform 0.3s;
  }

  .member-card:hover {
    transform: translateY(-5px);
  }

  .member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
  }

  footer a:hover {
    text-decoration: underline;
    color: #b388fe;
  }