
    :root{
      --bg1:#0a1b24;
      --bg2:#0b1020;
      --bg3:#2a0d46;

      --card: rgba(255,255,255,0.06);
      --card2: rgba(255,255,255,0.08);
      --border: rgba(255,255,255,0.12);

      --orange:#f6a623;
      --purple:#4b35ff;
      --text:#e9eefc;
      --muted: rgba(233, 238, 252, 0.68);

      --glow1: rgba(0,212,255,0.12);
      --glow2: rgba(109,0,255,0.16);
      --glow3: rgba(246,166,35,0.14);
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    body{
      font-family:"Poppins",sans-serif;
      min-height:100vh;
      color:var(--text);
      overflow-x:hidden;
      background:
        radial-gradient(circle at 20% 15%, rgba(0,212,255,0.16), transparent 42%),
        radial-gradient(circle at 80% 25%, rgba(109,0,255,0.18), transparent 46%),
        radial-gradient(circle at 50% 90%, rgba(246,166,35,0.12), transparent 48%),
        linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
      padding: 36px 16px;
    }

    /* Decorative subtle stars */
    .star{
      position:absolute;
      width:10px;
      height:10px;
      background: #22ff7a;
      filter: drop-shadow(0 0 10px rgba(34,255,122,0.6));
      clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
      opacity:0.85;
      animation: floaty 4s ease-in-out infinite;
    }
    .s1{ top: 120px; left: 10%; }
    .s2{ top: 180px; right: 12%; width:12px; height:12px; }
    .s3{ bottom: 120px; left: 20%; width:8px; height:8px; }
    .s4{ bottom: 200px; right: 18%; width:11px; height:11px; }

    @keyframes floaty{
      0%,100%{ transform: translateY(0px); }
      50%{ transform: translateY(-10px); }
    }

    /* Page Container */
    .container{
      max-width: 1150px;
      margin: 0 auto;
      position: relative;
    }

    /* Title + Subtitle */
    .hero{
      text-align:center;
      margin-bottom: 18px;
      padding: 10px 10px 26px;
    }

    .hero h1{
      font-size: 34px;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--orange);
      text-shadow: 0 0 20px rgba(246,166,35,0.25);
    }

    .hero p{
      margin-top: 10px;
      font-size: 15px;
      color: var(--muted);
      font-style: italic;
    }

    /* Main Calendar Card */
    .calendar-shell{
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow:
        0 30px 80px rgba(0,0,0,0.35),
        0 0 45px var(--glow2);
      overflow:hidden;
      backdrop-filter: blur(10px);
    }

    /* Calendar Header */
    .cal-header{
      display:flex;
      justify-content: space-between;
      align-items:center;
      padding: 18px 18px;
      border-bottom: 1px solid var(--border);
      background: rgba(0,0,0,0.15);
    }

    .month-title{
      font-size: 22px;
      font-weight: 900;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.7px;
    }

    .cal-actions{
      display:flex;
      align-items:center;
      gap: 12px;
    }
/* Upcoming Events Section */
.upcoming-box{
  margin-top: 24px;
  background: linear-gradient(
    135deg,
    rgba(246,166,35,0.14),
    rgba(75,53,255,0.12)
  );
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow:
    0 0 40px rgba(246,166,35,0.18),
    0 0 55px rgba(75,53,255,0.18);
  backdrop-filter: blur(10px);
}

.upcoming-box h2{
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  text-shadow: 0 0 18px rgba(246,166,35,0.35);
}

.upcoming-intro{
  margin-top: 10px;
  color: var(--text);
  font-size: 14.5px;
}

.upcoming-note{
  margin-top: 12px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.18);
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.18);
}

.upcoming-note ul{
  margin-top: 6px;
  padding-left: 18px;
}

.upcoming-note li{
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 6px;
}

.upcoming-footer{
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.upcoming-tagline{
  margin-top: 14px;
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--purple);
  text-shadow: 0 0 20px rgba(75,53,255,0.35);
}

.upcoming-tagline span{
  color: var(--orange);
}

    .today-btn{
      border:none;
      background: var(--orange);
      color:#fff;
      padding: 10px 16px;
      border-radius: 8px;
      font-weight: 800;
      cursor:pointer;
      transition: 0.25s ease;
      text-transform: lowercase;
      box-shadow: 0 0 25px rgba(246,166,35,0.25);
    }
    .today-btn:hover{
      transform: translateY(-1px);
      filter: brightness(0.95);
      box-shadow: 0 0 35px rgba(246,166,35,0.35);
    }

    .nav-group{
      display:flex;
      border-radius: 10px;
      overflow:hidden;
      border: 1px solid rgba(246,166,35,0.8);
      box-shadow: 0 0 25px rgba(246,166,35,0.18);
    }

    .nav-btn{
      width: 46px;
      height: 40px;
      border:none;
      cursor:pointer;
      background: rgba(246,166,35,0.95);
      color:#fff;
      font-size: 18px;
      font-weight: 800;
      display:flex;
      align-items:center;
      justify-content:center;
      transition: 0.25s ease;
    }
    .nav-btn:hover{
      filter: brightness(0.94);
    }
    .nav-btn + .nav-btn{
      border-left: 1px solid rgba(255,255,255,0.35);
    }

    /* Weekdays Row */
    .weekdays{
      display:grid;
      grid-template-columns: repeat(7, 1fr);
      background: rgba(0,0,0,0.10);
      border-bottom: 1px solid var(--border);
    }

    .weekday{
      padding: 12px 10px;
      text-align:center;
      font-weight: 900;
      color: var(--purple);
      border-right: 1px solid var(--border);
      font-size: 15px;
      text-shadow: 0 0 15px rgba(75,53,255,0.22);
    }
    .weekday:last-child{ border-right:none; }

    /* Days Grid */
    .days-grid{
      display:grid;
      grid-template-columns: repeat(7, 1fr);
      grid-auto-rows: 94px;
      background: rgba(0,0,0,0.08);
    }

    .day-cell{
      position:relative;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 10px;
      background: rgba(255,255,255,0.02);
      transition: 0.25s ease;
    }

    .day-cell:hover{
      background: rgba(255,255,255,0.05);
      box-shadow: inset 0 0 0 1px rgba(0,212,255,0.12);
    }

    .day-cell:nth-child(7n){
      border-right:none;
    }

    .day-number{
      position:absolute;
      top: 10px;
      right: 12px;
      font-weight: 800;
      color: rgba(75,53,255,0.95);
      font-size: 16px;
    }

    .other-month .day-number{
      color: rgba(75,53,255,0.30);
      font-weight: 700;
    }

    .today{
      outline: 2px solid rgba(246,166,35,0.50);
      outline-offset: -3px;
      border-radius: 10px;
      background: rgba(246,166,35,0.06);
    }

    .today .day-number{
      color: var(--orange);
      text-shadow: 0 0 18px rgba(246,166,35,0.35);
      font-weight: 950;
    }

    /* Bottom Discord Message */
    .discord-box{
      margin-top: 22px;
      background: linear-gradient(135deg, rgba(88,101,242,0.15), rgba(0,212,255,0.10));
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 18px 18px;
      box-shadow: 0 0 35px rgba(88,101,242,0.18);
      display:flex;
      justify-content: space-between;
      align-items:center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .discord-text h2{
      margin:0;
      font-size: 18px;
      font-weight: 900;
    }

    .discord-text p{
      margin-top: 6px;
      color: var(--muted);
      font-size: 14px;
      max-width: 720px;
      line-height: 1.5;
    }

    .discord-btn{
      border:none;
      cursor:pointer;
      background: linear-gradient(135deg, #5865F2, #00d4ff);
      color:#fff;
      padding: 12px 18px;
      border-radius: 12px;
      font-weight: 800;
      transition: 0.25s ease;
      box-shadow: 0 0 30px rgba(88,101,242,0.35);
      white-space: nowrap;
    }

    .discord-btn:hover{
      transform: translateY(-1px);
      filter: brightness(0.95);
      box-shadow: 0 0 40px rgba(0,212,255,0.28);
    }

    footer{
      text-align:center;
      margin-top: 18px;
      color: rgba(233,238,252,0.45);
      font-size: 12.5px;
    }
/* ===== Calendar Responsive Fix ===== */

/* Make the calendar width 100% on small screens */
@media (max-width: 900px) {
  .calendar-shell {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    margin: 0 auto;
  }

  /* Header adjustments */
  .cal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .month-title {
    font-size: 18px;
  }

  .cal-actions {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Weekdays row */
  .weekdays {
    grid-template-columns: repeat(7, 1fr);
  }

  .weekday {
    font-size: 12px;
    padding: 6px 4px;
  }

  /* Days grid */
  .days-grid {
    grid-template-columns: repeat(7, 1fr);
    grid-auto-rows: minmax(60px, auto); /* dynamic row height */
    gap: 2px; /* small gaps between cells */
  }

  .day-cell {
    padding: 4px 6px;
    min-height: 60px;
  }

  .day-number {
    top: 6px;
    right: 6px;
    font-size: 12px;
  }

  .today {
    outline-offset: -2px;
  }

  /* Navigation buttons smaller */
  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .today-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
}

/* Extra small devices */
@media (max-width: 600px) {
  .days-grid {
    grid-auto-rows: minmax(50px, auto);
  }

  .day-cell {
    padding: 3px 4px;
    min-height: 50px;
  }

  .day-number {
    font-size: 11px;
  }
}

/* Ultra small devices */
@media (max-width: 400px) {
  .days-grid {
    grid-auto-rows: minmax(40px, auto);
  }

  .day-cell {
    padding: 2px 3px;
    min-height: 40px;
  }

  .day-number {
    font-size: 10px;
  }
}

 