/* Global Reset & Custom Properties */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Stylish Remember Me Checkbox */
.remember-me-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  user-select: none;
  justify-content: flex-end;
}
.profile-photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}

#profilePhoto {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5f2ded;
  cursor: pointer;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(95,45,237,0.08);
}

.profile-photo-text {
  font-size: 0.9rem;
  color: #666;
  margin-top: 6px;
}/* Add to styles.css */
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease-in-out;
  font-family: 'Segoe UI', sans-serif;
}

.modal-content h2 {
  margin-bottom: 10px;
  color: #333;
}

.star-rating span {
  font-size: 28px;
  cursor: pointer;
  color: #ccc;
  transition: 0.3s;
}

.star-rating span.selected,
.star-rating span:hover,
.star-rating span:hover ~ span {
  color: #fbc02d;
}

textarea#feedbackText {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: none;
  min-height: 80px;
  font-family: inherit;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.modal-buttons button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background-color: #5f2ded;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.modal-buttons button.cancel {
  background-color: #ccc;
  color: #000;
}

.modal-buttons button:hover {
  background-color: #4b21c3;
}

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

@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




/* Animated Buttons */
.animated-btn {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px #5f2ded55, 0 0 0 #fff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.animated-btn:active {
  transform: scale(0.96);
}
.purple-btn {
  background: linear-gradient(90deg,#5f2ded 60%,#a18fff 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  margin: 4px;
  box-shadow: 0 0 18px #a18fff88, 0 0 0 #fff;
  animation: btnGlow 2s infinite alternate;
}
.small-btn {
  font-size: 14px;
  padding: 7px 18px;
}
.mute-btn {
  background: #fff;
  color: #5f2ded;
  border: 2px solid #5f2ded;
  border-radius: 50%;
  font-size: 20px;
  width: 40px;
  height: 40px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 12px #5f2ded55;
  animation: btnGlow 2s infinite alternate;
}
.mute-btn:active {
  background: #5f2ded;
  color: #fff;
}
@keyframes btnGlow {
  0% { box-shadow: 0 0 12px #5f2ded55, 0 0 0 #fff; }
  100% { box-shadow: 0 0 32px #a18fffcc, 0 0 8px #fff; }
}

/* Modal and Canvas Glow */
.animated-title {
  animation: popTitle 0.7s;
  text-shadow: 0 0 12px #a18fff, 0 0 2px #fff;
}
@keyframes popTitle {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.dc-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.5s;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.dc-modal.active { display: flex !important; }
.dc-modal-content {
  background: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  max-width: 400px;
  width: 92%;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 32px #5f2ded44, 0 0 0 #fff;
  animation: modalPop 0.3s;
}
@keyframes modalPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.dc-modal-close {
  position: absolute;
  top: 8px; right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  color: #5f2ded;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.dc-modal-close:hover {
  color: #a18fff;
}




@media (max-width: 768px) {
  #loginContainer,
  #dashboardContainer {
    width: 95%;
    margin: 20px auto;
    padding: 20px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .header h2 {
    font-size: 1.2rem;
  }
  .header button {
    margin-top: 10px;
    width: 100%;
  }
}
.profile-photo-container img,
#backgroundVideo {
  max-width: 100%;
  height: auto;
}











#preloader {
  background-color: hsl(210, 10%, 24%);
  color: hsl(209, 7%, 96%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  gap: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.letter {
  text-shadow: 0 5px 15px rgba(0,0,0,0.6);
  transform: translateY(0);
  animation: float 4s ease-in-out infinite;
}

.letter:nth-child(1) { animation-delay: 0ms; }
.letter:nth-child(2) { animation-delay: 150ms; }
.letter:nth-child(3) { animation-delay: 300ms; }
.letter:nth-child(4) { animation-delay: 450ms; }
.letter:nth-child(5) { animation-delay: 600ms; }
.letter:nth-child(6) { animation-delay: 750ms; }
.letter:nth-child(7) { animation-delay: 900ms; }

@keyframes float {
  0% { transform: translateY(0px); }
  12% { transform: translateY(-18px); }
  24% { transform: translateY(0px); }
  30% { transform: translateY(-4px); }
  36% { transform: translateY(0px); }
}
  #root-loader {
    background-color: hsl(210, 10%, 24%);
    color: hsl(209, 7%, 96%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  #root-loader.hidden {
    opacity: 0;
    visibility: hidden;
  }

  #root-loader > .container {
    font-family: 'Noto Sans', 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    gap: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  }

  .letter {
    transform: translateY(0px);
    animation: float 4s ease-in-out infinite;
  }

  .letter:nth-child(1) { animation-delay: 0ms; }
  .letter:nth-child(2) { animation-delay: 150ms; }
  .letter:nth-child(3) { animation-delay: 300ms; }
  .letter:nth-child(4) { animation-delay: 450ms; }
  .letter:nth-child(5) { animation-delay: 600ms; }
  .letter:nth-child(6) { animation-delay: 750ms; }
  .letter:nth-child(7) { animation-delay: 900ms; }

  @keyframes float {
    0%   { transform: translateY(0px); }
    12%  { transform: translateY(-20px); }
    24%  { transform: translateY(0px); }
    30%  { transform: translateY(-4px); }
    36%  { transform: translateY(0px); }
  }


#pongCanvas {
  box-shadow: 0 0 32px #5f2ded99, 0 0 0 #fff;
  animation: canvasGlow 2s infinite alternate;
  border: 2px solid #a18fff;
  transition: box-shadow 0.3s, border 0.3s;
}
@keyframes canvasGlow {
  0% { box-shadow: 0 0 18px #5f2ded55, 0 0 0 #fff; border-color: #a18fff; }
  100% { box-shadow: 0 0 48px #a18fffcc, 0 0 12px #fff; border-color: #5f2ded; }
}





.remember-me-label input[type="checkbox"] {
  accent-color: #5f2ded; /* Matches your button color */
  width: 18px;
  height: 18px;
  border-radius: 4px;
  cursor: pointer;
  margin: 0;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(95,45,237,0.08);
}

.remember-me-label span {
  color: #222;
  font-weight: 600;
  letter-spacing: 0.2px;
}
:root {
  --primary: #6200ea;         /* Rich purple */
  --primary-dark: #3700b3;    /* Darker purple */
  --secondary: #03dac6;       /* Teal */
  --secondary-dark: #018786;  /* Darker teal */
  --light-bg: rgba(255, 255, 255, 0.95);
  --dashboard-bg: rgba(255, 255, 255, 0.98);
  --text-main: #222;
  --text-muted: #555;
  --accent: #ffab00;         /* Warm amber */
  --transition: 0.3s;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  --font-family: 'Roboto', Arial, sans-serif;
}
.video-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: #000; /* fallback color */
}

.video-background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}@media (max-width: 768px) {
  .video-background {
    display: none;
  }
  body {
    background: url('video/video.mp4') no-repeat center center fixed;
    background-size: cover;
  }
}

/* Body & Animated Gradient Background */
body {
  font-family: var(--font-family);
 
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #f0f0f0; /* Fallback background color */
}

/* Keyframes for Live Wallpaper-like Gradient Animation */
@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Zoho Mail-like Loader Spinner */
.spinner {
  display: none;
  width: 60px;
  height: 60px;
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue color for the rotating segment */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Login Container */
#loginContainer {
  max-width: 450px;
  width: 90%;
  background: var(--light-bg);
  margin: 100px auto;
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition) ease;
  backdrop-filter: blur(5px);
}

#loginContainer:hover {
  transform: translateY(-5px);
}

#loginContainer h2 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.8rem;
}

#loginContainer input {
  width: 100%;
  padding: 14px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color var(--transition) ease, box-shadow var(--transition) ease;
}

#loginContainer input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(98, 0, 234, 0.5);
  outline: none;
}

#loginContainer button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: #fff;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition) ease, transform var(--transition) ease;
}

#loginContainer button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

#loginContainer p {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-main);
}

#loginContainer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}

/* Dashboard Container */
#dashboardContainer {
  max-width: 1000px;
  width: 90%;
  background: var(--dashboard-bg);
  margin: 30px auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  animation: fadeIn 0.5s ease;
  backdrop-filter: blur(3px);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px 10px 0 0;
}

.header h2 {
  font-size: 1.4rem;
}

.header button {
  background: var(--secondary);
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition) ease;
}

.header button:hover {
  background: var(--secondary-dark);
}

.schedule {
  margin-top: 25px;
}

.session {
  background: #e9ecef;
  padding: 18px;
  margin: 15px 0;
  border-radius: 6px;
  transition: background var(--transition) ease, transform var(--transition) ease;
}

.session:hover {
  background: #dfe4ea;
  transform: translateY(-3px);
}

.session h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-main);
}

.session p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-muted);
  line-height: 1.5;
}

.session-details {
  padding: 12px;
  background: #d1ecf1;
  border-left: 5px solid #17a2b8;
  margin-top: 8px;
  border-radius: 4px;
}

.session-details button {
  background: #28a745;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition) ease;
}

.session-details button:hover {
  background: #218838;
}

.session-details button:disabled {
  background: gray;
  cursor: not-allowed;
}

/* Footer */
footer {
  text-align: center;
  padding: 18px;
  background: rgba(34, 34, 34, 0.9);
  color: #fff;
  font-size: 0.9rem;
  position: fixed;
  bottom: 0;
  width: 100%;
}

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

/* Responsive Adjustments */
@media (min-width: 1024px) {
  #dashboardContainer {
    max-width: 1100px;
  }
  #loginContainer {
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  #dashboardContainer, #loginContainer {
    width: 95%;
    padding: 20px;
  }
}

/* Enhanced Input and Placeholder Styling */
input {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

input::placeholder {
  font-style: italic;
  color: #999;
}

/* Password Container */
.password-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* Toggle Password Icon */
.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}

.toggle-password:hover {
  color: #555;
}

.toggle-password.rotate {
  transform: translateY(-50%) rotate(180deg);
}

/* Spinner Styling */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #007BFF;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  vertical-align: middle;
  margin-left: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Stylish Login Button */
#loginButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #007BFF, #00A8FF);
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#loginButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.3);
}

#loginButton:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.sliding-text {
  width: 100%;
  overflow: hidden;
  background-color: #ffcccc; /* Light red background */
  border: 1px solid #e69999;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 20px 0;
  border-radius: 4px;
}

/* Actual Sliding Paragraph */
.sliding-text p {
  display: inline-block;
  white-space: nowrap;
  font-size: 16px;
  color: #b30000; /* Darker red text for contrast */
  padding-left: 100%; /* Start fully on the right side */
  box-sizing: border-box;
  animation: slideText 15s linear infinite; /* 15s cycle, continuous */
}

/* Keyframes for Right-to-Left Slide */
@keyframes slideText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7f9ff, #dfe5ff);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 1s ease;
}

/* 🔵 Glow Background Blur Effect */
.loader-glow {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(111,86,255,0.3) 0%, transparent 70%);
  animation: moveGlow 5s linear infinite;
  filter: blur(80px);
}

@keyframes moveGlow {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* 📦 Preloader Inner Content */
.preloader-inner {
  text-align: center;
  z-index: 2;
  animation: fadeIn 1.5s ease;
}

/* 🔄 Logo Animation */
.preloader-logo {
  width: 90px;
  height: 90px;
  animation: scaleUp 2s ease-in-out infinite alternate;
  border-radius: 50%;
}

/* ✨ Smooth Zoom Pulse */
@keyframes scaleUp {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* ✏️ Text */
.preloader-text {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #5f2ded;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: "Segoe UI", sans-serif;
  text-shadow: 0 1px 2px rgba(95, 45, 237, 0.1);
}

/* 🎬 Fade In */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}/* Preloader Container */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4f7ff, #dde2ff);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

/* Glow background */
.loader-glow {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(111,86,255,0.3) 0%, transparent 70%);
  animation: moveGlow 5s linear infinite;
  filter: blur(80px);
}

@keyframes moveGlow {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Preloader content */
.preloader-inner {
  text-align: center;
  z-index: 2;
  animation: fadeIn 1s ease;
}

/* Logo animation */
.preloader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  animation: scaleUp 2s ease-in-out infinite alternate;
}

/* Text under logo */
.preloader-text {
  margin-top: 14px;
  font-size: 1.15rem;
  font-weight: 500;
  color: #5f2ded;
  font-family: 'Segoe UI', sans-serif;
}

/* Spinner below text */
.preloader-spinner {
  margin: 18px auto 0;
  width: 36px;
  height: 36px;
  border: 4px solid #ddd;
  border-top: 4px solid #5f2ded;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animations */
@keyframes scaleUp {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.08); opacity: 1; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
 




    /* === PRELOADER STYLES === */
    #preloader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #0a0a0a;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      flex-direction: column;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    .loader-glow {
      position: absolute;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 1; }
    }

    .preloader-inner {
      text-align: center;
      z-index: 2;
    }

    .preloader-logo {
      width: 90px;
      margin-bottom: 10px;
    }

    .preloader-text {
      color: #fff;
      font-size: 18px;
      margin-bottom: 15px;
      font-family: 'Segoe UI', sans-serif;
    }

    /* === DOT LOADER === */
    .dot-loader {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .dot {
      width: 10px;
      height: 10px;
      background-color: #e57373;
      border-radius: 50%;
      animation: bounce 1.2s infinite ease-in-out;
    }

    .dot:nth-child(2) { animation-delay: 0.2s; }
    .dot:nth-child(3) { animation-delay: 0.4s; }
    .dot:nth-child(4) { animation-delay: 0.6s; }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); opacity: 0.6; }
      50% { transform: translateY(-10px); opacity: 1; }
    }

    /* === CAT MESSAGE + IMAGE === */
    .cat-message-wrapper {
      display: none;
      margin-top: 25px;
      text-align: center;
    }

    .cat-message {
      background: #ffffff;
      color: #333;
      padding: 10px 15px;
      border-radius: 12px;
      font-size: 14px;
      display: none;
      position: relative;
      max-width: 300px;
      margin: 0 auto 10px;
      font-family: 'Segoe UI', sans-serif;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .cat-message::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      margin-left: -10px;
      border-width: 10px 10px 0;
      border-style: solid;
      border-color: #fff transparent transparent transparent;
    }

    .talking-cat {
      width: 80px;
      border-radius: 10px;
      display: none;
    }
/* Add to your CSS file */
.session-new {
  border: 2px solid #ff9800;
  background: #fff8e1;
  position: relative;
}
.new-badge {
  background: #ff9800;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
}/* Add to your CSS file or <style> tag */
.session-new {
  border: 2px solid #ff9800;
  background: #fff8e1;
  position: relative;
}
.new-badge {
  background: #ff9800;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
}
/* Add to your CSS file or <style> tag */
.session-new {
  border: 2px solid #ff9800;
  background: #fff8e1;
  position: relative;
}
.new-badge {
  background: #ff9800;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
}
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }





/* === PRELOADER STYLES === */
    #preloader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #0a0a0a;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      flex-direction: column;
    }

    .loader-glow {
      position: absolute;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.2); opacity: 1; }
    }

    .preloader-inner {
      text-align: center;
      z-index: 2;
    }

    .preloader-logo {
      width: 90px;
      margin-bottom: 10px;
    }

    .preloader-text {
      color: #fff;
      font-size: 18px;
      margin-bottom: 15px;
      font-family: 'Segoe UI', sans-serif;
    }

    /* === DOT LOADER === */
    .dot-loader {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .dot {
      width: 10px;
      height: 10px;
      background-color: #e57373;
      border-radius: 50%;
      animation: bounce 1.2s infinite ease-in-out;
    }

    .dot:nth-child(2) { animation-delay: 0.2s; }
    .dot:nth-child(3) { animation-delay: 0.4s; }
    .dot:nth-child(4) { animation-delay: 0.6s; }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); opacity: 0.6; }
      50% { transform: translateY(-10px); opacity: 1; }
    }

    /* === CAT MESSAGE + IMAGE === */
    .cat-message-wrapper {
      display: none;
      margin-top: 25px;
      animation: fadeIn 1s ease-in-out;
      text-align: center;
    }

    .cat-message {
      background: #ffffff;
      color: #333;
      padding: 10px 15px;
      border-radius: 12px;
      font-size: 14px;
      display: inline-block;
      position: relative;
      max-width: 300px;
      margin: 0 auto 10px;
      font-family: 'Segoe UI', sans-serif;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .cat-message::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      margin-left: -10px;
      border-width: 10px 10px 0;
      border-style: solid;
      border-color: #fff transparent transparent transparent;
    }

    .talking-cat {
      width: 80px;
      border-radius: 10px;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

/* Style the link inside the sliding text if desired */
.sliding-text a {
  color: #4b0082;
  font-weight: bold;
  text-decoration: underline;
  margin-left: 5px;
}

.sliding-text a:hover {
  color: #8e44ad;
}

/* Session Container */
.session {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 20px;
  color: #333;
  font-family: Arial, sans-serif;
}

/* Session Heading (e.g., day) */
.session h4 {
  margin: 0 0 10px;
  color: #4b0082; /* A purple shade to match your header theme */
  font-size: 18px;
  font-weight: 600;
}

/* General Text */
.session p {
  margin: 5px 0;
  line-height: 1.5;
}

/* Session Details Container */
.session-details {
  background: #f9f9f9;
  padding: 10px 15px;
  border-left: 4px solid #4b0082;
  border-radius: 4px;
  margin: 15px 0;
}

/* Label inside .session-details (e.g., "Meeting Link:") */
.session-details p {
  margin: 0;
  font-weight: bold;
}

/* Join Button (if you want a styled button for the link) */
.session-details button {
  background: #4b0082;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.session-details button:hover {
  background: #673ab7;
}

/* Links Within the Session Block */
.session a {
  color: #4b0082;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.session a:hover {
  color: #8e44ad;
}

/* Lecture Notes Button (if you have a special class for it) */
.lecture-notes-btn {
  background: linear-gradient(45deg, #FF6B6B, #FF8C8C);
  border: none;
  border-radius: 4px;
  color: #fff;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  outline: none;
  margin-left: 5px;
}

.lecture-notes-btn:hover {
  background: linear-gradient(45deg, #FF4B4B, #FF6B6B);
  transform: scale(1.05);
}

.lecture-notes-btn:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.5);
}

/* Live Session Indicator */
.session-live {
  color: #388e3c;
  font-weight: bold;
  margin-right: 10px;
  animation: blink 1s infinite alternate;
}
@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0.5; }
}
  .sliding-text {
        background-color: #f8d7da;
        color: #721c24;
        padding: 10px;
        font-size: 18px;
        text-align: center;
        font-family: Arial, sans-serif;
        border: 1px solidhsl(354, 70.10%, 86.90%);
      }
      .countdown {
        font-weight: bold;
        margin-top: 5px;
      }
      .rotate-scale {
  display: inline-block;
  animation: rotateScale 0.4s cubic-bezier(0.4, 0.2, 0.2, 1);
}
@keyframes rotateScale {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(20deg) scale(1.3);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
