* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sansita', sans-serif;
    background-color: #1a1a1a; /* Dark background for contrast */
    color: #fff;
    line-height: 0.6;
    padding-top: 80px; /* To offset fixed header */
}

/* Header */
header {
    background-color: #0a0a0a;
    padding: -4px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3); /* Neon green glow shadow */
}

header .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: #00ff00; /* Soft neon green */
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00; /* Subtle glow effect */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #b8ff80;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

/* Main Section */
section {
    text-align: center;
    padding: 20px;
}

.Weeklytitle {
    font-size: 2.5rem;
    color: #b8ff80;
    margin: 50px 0;
    font-family: 'Russo One', sans-serif;
    text-shadow: 0 0 5px #b8ff80, 0 0 10px #b8ff80;
}

/* Video Boxes */
#boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
}

#boxes section {
  width: 300px;
  background-color: #2a2a2a;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 255, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#boxes section:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px #39ff14, 0 0 50px #00ff00;
}

#boxes p {
  margin-top: 10px;
  color: #ccc;
  font-size: 1rem;
}


section iframe {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.6);
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section iframe:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #39ff14, 0 0 50px #00ff00;
}

p {
    font-size: 1rem;
    color: #ccc;
    text-align: center;
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 -2px 10px rgba(0, 255, 0, 0.3);
}

#footertext a {
    color: #008cff;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

#footertext a:hover {
    color: #00ff00;
    text-shadow: 0 0 10px #037803, 0 0 25px #00ff00;
}

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    nav a {
        font-size: 1rem;
    }

    .Weeklytitle {
        font-size: 2rem;
    }

    section iframe {
        width: 90%;
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    section iframe {
        width: 100%;
    }

    p {
        font-size: 1rem;
    }
}

.share-tech-mono-regular {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

/* For the new Week 1 layout */
.video-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.video-box {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  width: 320px;
  box-shadow: 0 2px 15px rgba(0, 255, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.video-box:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px #39ff14, 0 0 50px #00ff00;
}

.video-box iframe {
  width: 100%;
  height: 180px;
  border-radius: 8px;
}

.video-box p {
  margin-top: 15px;
  color: #ccc;
  font-size: 1rem;
  font-family: 'Share Tech Mono', monospace;
}
