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

html {
  scroll-behavior: smooth;
}

/* NOTIFICATION BACKDROP */
.notification-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  animation: fadeInBackdrop 0.5s ease-in-out;
}

.notification-backdrop.fade-out {
  animation: fadeOutBackdrop 0.5s ease-in-out forwards;
}

.notification-backdrop.bankai-mode {
  animation: bankai-backdrop 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

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

@keyframes bankai-backdrop {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* NOTIFICATION STYLES */
.notification {
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  animation: zoomIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
}

.notification-content {
  padding: 1.5rem;
  color: white;
  position: relative;
}

.notification-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.notification-content p {
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.notification-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.close-notification,
.bankai-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.close-notification {
  padding: 0.5rem 0.8rem;
  font-size: 1.8rem;
  width: auto;
  height: auto;
}

.close-notification:hover,
.bankai-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.bankai-btn:active {
  transform: scale(0.98);
}

.notification.fade-out {
  animation: zoomOut 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.notification.bankai-mode {
  animation: bankai 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

@keyframes zoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes zoomOut {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

@keyframes bankai {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    box-shadow:
      0 0 40px rgba(26, 115, 232, 0.8),
      0 0 80px rgba(26, 115, 232, 0.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
    box-shadow:
      0 0 100px rgba(26, 115, 232, 0.2),
      0 0 200px rgba(26, 115, 232, 0);
  }
}

@keyframes zoomOut {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}

/* FADE OUT TOP EFFECT FOR VIEWPORT EXIT */
.fade-out-top {
  animation: fadeOutTop 0.5s ease-out forwards !important;
  pointer-events: none;
}

body {
  background:
    linear-gradient(
      135deg,
      #0f0f23 0%,
      #1a1a2e 25%,
      #16213e 50%,
      #0f3460 75%,
      #1a1a2e 100%
    ),
    url(Images/logo.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  font-weight: 700;
  backdrop-filter: blur(4px);
  padding-left: 280px; /* Account for sidebar width */
  padding-right: 10%;
  overflow-x: hidden;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  scroll-padding-top: 80px;
  color: #ffffff;
  transition: padding-left 0.3s ease;
}

/* SIDEBAR STYLES */
#navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.98) 0%,
    rgba(22, 33, 62, 0.98) 50%,
    rgba(15, 52, 96, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  box-shadow:
    4px 0 20px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(26, 115, 232, 0.2);
  z-index: 1000;
  border-right: 2px solid #1a73e8;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

#navbar.sidebar-hidden {
  width: 60px;
  overflow: hidden;
}

#navbar.sidebar-hidden .logo,
#navbar.sidebar-hidden .nav-menu {
  opacity: 0;
  visibility: hidden;
}

#navbar.sidebar-hidden .sidebar-hide-btn {
  opacity: 1;
  visibility: visible;
}

#navbar.sidebar-hidden .sidebar-hide-btn span {
  transform: rotate(180deg);
}

.navbar-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1rem;
}

.logo {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: bold;
  color: #00d4ff;
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow:
    0 0 15px rgba(0, 212, 255, 0.6),
    0 0 25px rgba(0, 212, 255, 0.4);
  animation: float 3s ease-in-out infinite;
  text-align: center;
  margin-bottom: 3rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.sidebar-hide-btn {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
  margin-bottom: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-hide-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
}

.sidebar-hide-btn span {
  display: block;
  transition: transform 0.3s ease;
}

.sidebar-hide-btn.sidebar-hidden span {
  transform: rotate(180deg);
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  padding: 0 1rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.2rem);
  transition: all 0.3s ease;
  position: relative;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 600;
}

.nav-link:hover {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.nav-link.active {
  color: #ff6b6b !important;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.7) !important;
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

/* Sidebar hidden state for desktop */
body.sidebar-hidden {
  padding-left: 60px;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
  background: linear-gradient(135deg, #00d4ff 0%, #1a73e8 100%);
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* SIDEBAR RESPONSIVE */
@media (max-width: 1024px) {
  body {
    padding-left: 250px;
  }

  #navbar {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  body {
    padding-left: 0;
  }

  body.sidebar-open {
    padding-left: 240px;
  }

  #navbar {
    transform: translateX(-100%);
    width: 240px;
  }

  #navbar.sidebar-open {
    transform: translateX(0);
  }

  .navbar-container {
    padding: 1.5rem 1rem;
  }

  .logo {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .nav-menu {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  #navbar {
    width: 220px;
  }

  body.sidebar-open {
    padding-left: 220px;
  }

  .navbar-container {
    padding: 1rem;
  }

  .logo {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.7rem 0.8rem;
  }
}

/* FOR HERO SECTION */
#Hero {
  display: flexbox;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

#Hero h1 {
  font-size: clamp(2rem, 8vw, 5em);
  background: linear-gradient(45deg, #00d4ff 0%, #1a73e8 50%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  margin-bottom: 1rem;
}

#Hero p,
pre {
  font-size: clamp(1rem, 4vw, 1.6em);
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
/* END */

/*ABOU US*/
#About-us {
  display: flexbox;
  text-align: center;
  border-radius: 20px;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  color: #ffffff;
}

#About-us img {
  border-radius: 10%;
  border: 3px solid rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

#About-us h2 {
  font-size: clamp(1.5rem, 5vw, 2em);
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  margin-bottom: 1rem;
}
/*END*/

/*ABOUT ANIME*/
#about-anime {
  display: flexbox;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(22, 33, 62, 0.8) 0%,
    rgba(26, 26, 46, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: #ffffff;
}

#about-anime li {
  list-style-type: none;
  font-size: clamp(1rem, 3vw, 20px);
  line-height: 1.8;
  margin: 0.5rem 0;
  color: #e0e0e0;
}

/*END*/

@keyframes appear {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow:
      0 0 30px rgba(0, 212, 255, 0.6),
      0 0 40px rgba(0, 212, 255, 0.4);
  }
}

img {
  transition-property: transform;
  transition-duration: 2s;
  transition-timing-function: ease;
}

img:hover {
  transform: scale(1.3);
  cursor: pointer;
}

#Hero,
#about-anime,
#genres,
#The-Father,
#The-Big-Three,
#BOD,
#logo,
#Forms,
#anime-quotes,
#comments,
#announcements-hero,
#latest-announcements,
#announcement-categories,
#stay-updated {
  animation: appear ease 2s;
  animation-timeline: view();
  animation-range: entry 0;
}

#Hero {
  animation:
    appear ease 2s,
    glow 4s ease-in-out infinite;
  animation-timeline: view();
  animation-range: entry 0;
}

/* GENRE BOX RESPONSIVE */
#genre-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

#genre-box span {
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: clamp(0.75rem, 2vw, 1rem);
  display: inline-block;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

#genre-box span:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* BOARD OF DIRECTORS RESPONSIVE */
#BOD {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  color: #ffffff;
}

#AJ,
#Ichigo,
#Goku,
#Jin-Woo,
#Luffy {
  flex: 1;
  min-width: 200px;
  max-width: 350px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#AJ img,
#Ichigo img,
#Goku img,
#Jin-Woo img,
#Luffy img {
  width: 100%;
  height: auto;
  max-height: 300px;
  transition:
    filter 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#AJ p,
#Ichigo p,
#Goku p,
#Jin-Woo p,
#Luffy p {
  position: absolute;
  margin: 0;
  color: white;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#AJ:hover img,
#Ichigo:hover img,
#Goku:hover img,
#Jin-Woo:hover img,
#Luffy:hover img {
  filter: blur(5px);
  transform: scale(1.05);
}

#AJ:hover p,
#Ichigo:hover p,
#Goku:hover p,
#Jin-Woo:hover p,
#Luffy:hover p {
  opacity: 1;
}

#AJ p:first-of-type,
#Ichigo p:first-of-type,
#Goku p:first-of-type,
#Jin-Woo p:first-of-type,
#Luffy p:first-of-type {
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
}

#AJ p:last-of-type,
#Ichigo p:last-of-type,
#Goku p:last-of-type,
#Jin-Woo p:last-of-type,
#Luffy p:last-of-type {
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
}

/* SECTIONS PADDING */
section {
  margin: 2rem 0;
  padding: 1.5rem;
  color: #ffffff;
}

#Forms {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(15, 52, 96, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* ANIME QUOTES SECTION */
#anime-quotes {
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 2rem;
  text-align: center;
  color: #ffffff;
}

#anime-quotes h2 {
  font-size: clamp(1.5rem, 5vw, 2.5em);
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  margin-bottom: 2rem;
}

.quotes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.6);
}

.quote-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.quote-card cite {
  font-size: 0.9rem;
  color: #00d4ff;
  font-weight: bold;
  text-align: right;
  display: block;
}

/* COMMENT SECTION */
#comments {
  background: linear-gradient(
    135deg,
    rgba(22, 33, 62, 0.8) 0%,
    rgba(26, 26, 46, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 2rem;
  text-align: center;
  color: #ffffff;
}

#comments h2 {
  font-size: clamp(1.5rem, 5vw, 2.5em);
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  margin-bottom: 1rem;
}

#comments > p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comment-form {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #00d4ff;
  font-weight: bold;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #1a73e8 100%);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

.comments-display h3 {
  color: #ff6b6b;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
}

#commentsList {
  max-width: 800px;
  margin: 0 auto;
}

.comment-item {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.comment-item:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.comment-author {
  font-weight: bold;
  color: #00d4ff;
  font-size: 1rem;
}

.comment-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.comment-text {
  color: #e0e0e0;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.no-comments {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  padding: 2rem;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1024px) {
  body {
    padding-left: 250px; /* Account for sidebar */
    padding-right: 5%;
  }

  body.sidebar-hidden {
    padding-left: 60px; /* Account for collapsed sidebar */
  }

  #Hero h1 {
    font-size: clamp(1.8rem, 6vw, 4em);
  }

  #Hero p,
  pre {
    font-size: clamp(0.9rem, 3.5vw, 1.4em);
  }

  #About-us h2 {
    font-size: clamp(1.3rem, 4vw, 1.8em);
  }
}

@media screen and (max-width: 768px) {
  .sidebar-hide-btn {
    display: none; /* Hide hide button on mobile - hamburger controls visibility */
  }

  body {
    padding-left: 0; /* Remove sidebar padding on mobile */
    padding-right: 3%;
  }

  #Hero h1 {
    font-size: clamp(1.5rem, 5vw, 3em);
  }

  #Hero p,
  pre {
    font-size: clamp(0.85rem, 3vw, 1.2em);
  }

  #About-us {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #About-us h2 {
    font-size: clamp(1.2rem, 3.5vw, 1.6em);
  }

  #about-anime li {
    font-size: clamp(0.9rem, 2.5vw, 18px);
  }

  #genre-box {
    gap: 0.3rem;
  }

  #genre-box span {
    padding: 0.4rem 0.8rem;
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  }

  #AJ,
  #Ichigo {
    flex: 1 1 45%;
    min-width: 150px;
  }

  #AJ img,
  #Ichigo img {
    max-height: 250px;
  }

  section {
    margin: 1.5rem 0;
    padding: 1rem;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding-left: 1rem;
    padding-right: 1rem;
    background-attachment: scroll;
  }

  #Hero h1 {
    font-size: clamp(1.2rem, 6vw, 2.5em);
    margin-bottom: 0.5rem;
  }

  #Hero p,
  pre {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    line-height: 1.4;
  }

  #About-us {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  #About-us h2 {
    font-size: clamp(1rem, 3vw, 1.4em);
    margin-top: 1rem;
  }

  #about-anime li {
    font-size: clamp(0.8rem, 2.5vw, 16px);
  }

  #anime-quotes {
    padding: 1rem;
  }

  .quotes-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quote-card {
    padding: 1rem;
  }

  #comments {
    padding: 1rem;
  }

  .comment-form {
    padding: 1rem;
  }

  .comment-item {
    padding: 0.8rem;
  }

  /* Anime page responsive */
  .genre-details-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .getting-started-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .must-watch-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .etiquette-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Announcements responsive */
  .announcement-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .announcement-date {
    margin-left: 0;
    align-self: flex-end;
  }

  .announcement-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .announcement-priority {
    align-self: flex-end;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .update-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #genre-box {
    gap: 0.25rem;
  }

  #genre-box span {
    padding: 0.3rem 0.6rem;
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  }

  #BOD {
    flex-direction: column;
    gap: 1.5rem;
  }

  #AJ,
  #Ichigo {
    flex: 1 1 100%;
    min-width: 100%;
  }

  #AJ img,
  #Ichigo img {
    max-height: 200px;
  }

  section {
    margin: 1rem 0;
    padding: 0.75rem;
  }

  pre {
    overflow-x: auto;
    white-space: pre-wrap;
  }

  /* Anime page responsive mobile */
  .must-watch-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .genre-detail-card,
  .getting-started-item,
  .culture-item,
  .etiquette-item {
    padding: 1rem;
  }

  .must-watch-card {
    padding: 1rem;
  }
}

/* FOOTER STYLES */
#footer {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.9) 0%,
    rgba(22, 33, 62, 0.9) 100%
  );
  border-top: 3px solid #00d4ff;
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

#footer h2 {
  font-size: clamp(1.5rem, 4vw, 2.5em);
  margin-bottom: 1rem;
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

#footer p {
  font-size: clamp(0.9rem, 2vw, 1.2em);
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.2em);
  transition: all 0.3s ease;
  border: 2px solid #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  border-color: #20ba5a;
  transform: scale(1.05);
}

.whatsapp-btn:active {
  transform: scale(0.98);
}

/* FOOTER STYLES */
#footer {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.9) 0%,
    rgba(22, 33, 62, 0.9) 100%
  );
  border-top: 3px solid #00d4ff;
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

#footer h2 {
  font-size: clamp(1.5rem, 4vw, 2.5em);
  margin-bottom: 1rem;
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

#footer p {
  font-size: clamp(0.9rem, 2vw, 1.2em);
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.2em);
  transition: all 0.3s ease;
  border: 2px solid #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  border-color: #20ba5a;
  transform: scale(1.05);
}

.whatsapp-btn:active {
  transform: scale(0.98);
}

#footer p:last-child {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #999;
  font-size: 0.85em;
}

/* ===== HOMEPAGE STYLES ===== */

/* Featured Highlights Section */
#featured-highlights {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.highlight-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.highlight-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.highlight-card p {
  color: #e0e0e0;
  line-height: 1.6;
}

/* Quick Stats Section */
#quick-stats {
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
  text-align: center;
}

.stat-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6b6b;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.stat-label {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 500;
}

/* Latest Updates Section */
#latest-updates {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.update-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.update-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.update-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.update-card p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.update-link {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.update-link:hover {
  color: #ff8a8a;
  text-decoration: underline;
}

/* ===== ANIME PAGE STYLES ===== */

/* Genre Details Section */
#genre-details {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

.genre-details-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.genre-detail-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.genre-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.genre-detail-card h3 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.genre-detail-card p {
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.genre-detail-card strong {
  color: #ff6b6b;
}

/* Getting Started Section */
#getting-started {
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

.getting-started-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.getting-started-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
}

.getting-started-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.getting-started-item h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.getting-started-item p,
.getting-started-item ul {
  color: #e0e0e0;
  line-height: 1.6;
}

.getting-started-item li {
  margin-bottom: 0.5rem;
}

.getting-started-item strong {
  color: #00d4ff;
}

/* Must Watch Section */
#must-watch {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

#must-watch h3 {
  color: #00d4ff;
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  text-align: center;
}

.must-watch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.must-watch-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1.2rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.must-watch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.2);
}

.must-watch-card h4 {
  color: #ff6b6b;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.must-watch-card p {
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Anime Culture Section */
#anime-culture {
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.culture-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 107, 107, 0.2);
  transition: all 0.3s ease;
}

.culture-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.culture-item h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.culture-item p {
  color: #e0e0e0;
  line-height: 1.6;
}

/* Anime Etiquette Section */
#anime-etiquette {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 2rem;
  margin: 2rem 0;
}

.etiquette-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.etiquette-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.etiquette-item h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
}

.etiquette-item ul {
  color: #e0e0e0;
  line-height: 1.8;
}

.etiquette-item li {
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  position: relative;
}

.etiquette-item li::before {
  content: "•";
  color: #ff6b6b;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ===== ANNOUNCEMENTS PAGE STYLES ===== */

/* Announcements Hero Section */
#announcements-hero {
  display: flexbox;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

#announcements-hero h1 {
  font-size: clamp(2rem, 8vw, 5em);
  background: linear-gradient(45deg, #ff6b6b 0%, #00d4ff 50%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
  margin-bottom: 1rem;
}

#announcements-hero p,
pre {
  font-size: clamp(1rem, 4vw, 1.6em);
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Latest Announcements Section */
#latest-announcements {
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
}

#latest-announcements h2 {
  font-size: clamp(1.5rem, 5vw, 2.5em);
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  margin-bottom: 2rem;
}

.announcement-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  text-align: left;
}

.announcement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.6);
}

.announcement-card.featured {
  border: 2px solid #ff6b6b;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.announcement-card.featured:hover {
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.announcement-header h3 {
  color: #00d4ff;
  font-size: 1.5rem;
  margin: 0;
  flex: 1;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.announcement-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: bold;
  white-space: nowrap;
  margin-left: 1rem;
}

.announcement-content {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.announcement-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.announcement-content li {
  margin-bottom: 0.5rem;
  color: #e0e0e0;
}

.announcement-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.announcement-author {
  color: #ff6b6b;
  font-weight: bold;
  font-size: 0.9rem;
}

.announcement-priority {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Announcement Categories */
#announcement-categories {
  background: linear-gradient(
    135deg,
    rgba(22, 33, 62, 0.8) 0%,
    rgba(26, 26, 46, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
}

#announcement-categories h2 {
  font-size: clamp(1.5rem, 5vw, 2.5em);
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  margin-bottom: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.6);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.category-card h3 {
  color: #00d4ff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.category-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Stay Updated Section */
#stay-updated {
  background: linear-gradient(
    135deg,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 107, 107, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
}

#stay-updated h2 {
  font-size: clamp(1.5rem, 5vw, 2.5em);
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
  margin-bottom: 1rem;
}

#stay-updated > p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.update-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.update-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.update-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.6);
}

.update-card h3 {
  color: #00d4ff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.update-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.update-btn {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #1a73e8 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid #00d4ff;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  cursor: pointer;
}

.update-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.bookmark-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
  border-color: #ff6b6b;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.bookmark-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.coming-soon {
  color: #ff6b6b;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 0;
}

/* Active nav link styling */
.nav-link.active {
  color: #ff6b6b !important;
  text-shadow: 0 0 8px rgba(255, 107, 107, 0.6) !important;
}

.nav-link.active::after {
  background: linear-gradient(90deg, #ff6b6b 0%, #ff4757 100%) !important;
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
  #footer {
    margin-top: 2rem;
    padding: 1.5rem;
    margin-left: -10%;
    margin-right: -10%;
    margin-bottom: 0;
    border-radius: 0;
  }

  #footer h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  #footer p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .whatsapp-btn {
    padding: 10px 25px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  #footer p:last-child {
    margin-top: 1.5rem;
    padding-top: 0.8rem;
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {
  #footer {
    padding: 1rem;
  }

  #footer h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }

  #footer p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .whatsapp-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    width: 100%;
  }

  #footer p:last-child {
    font-size: 0.75em;
    margin-top: 1rem;
    padding-top: 0.6rem;
  }
}

/* ABOUT PAGE SPECIFIC STYLES */
#our-history {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#our-history h2 {
  text-align: center;
  color: #00d4ff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #00d4ff, #ff6b6b);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
  width: 50%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:nth-child(even) {
  left: 50%;
  margin-left: 2px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  margin-right: 2px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #00d4ff;
  border-radius: 50%;
  border: 4px solid #1a1a2e;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.timeline-item:nth-child(even)::before {
  right: -12px;
}

.timeline-item:nth-child(odd)::before {
  left: -12px;
}

.timeline-item h3 {
  color: #ff6b6b;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-item p {
  color: #e0e0e0;
  line-height: 1.6;
}

#member-benefits {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#member-benefits h2 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.benefit-card h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: #e0e0e0;
  line-height: 1.6;
}

#our-activities {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#our-activities h2 {
  text-align: center;
  color: #ff6b6b;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.activity-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.activity-card h3 {
  color: #ff6b6b;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.activity-card p {
  color: #e0e0e0;
  line-height: 1.6;
}

#leadership {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#leadership h2 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.leadership-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.philosophy-quote {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-quote blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.philosophy-quote cite {
  color: #ffd700;
  font-weight: bold;
}

.leadership-values h3 {
  color: #ff6b6b;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.leadership-values ul {
  list-style: none;
  padding: 0;
}

.leadership-values li {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #00d4ff;
}

.leadership-values li strong {
  color: #00d4ff;
}

.leadership-values li {
  color: #e0e0e0;
  line-height: 1.6;
}

/* ABOUT PAGE RESPONSIVE */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: calc(100% - 40px);
    left: 40px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .timeline-item::before {
    left: -12px !important;
    right: auto !important;
  }

  .benefits-grid,
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .leadership-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #our-history h2,
  #member-benefits h2,
  #our-activities h2,
  #leadership h2 {
    font-size: 2rem;
  }
}

/* BOARD PAGE SPECIFIC STYLES */
#BOD > div {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  max-width: 300px;
}

#BOD > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.director-details {
  margin-top: 1rem;
  text-align: left;
}

.director-details h4 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.director-details p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.achievements {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievements li {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  padding: 0.25rem 0;
}

#board-committees {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#board-committees h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.committee-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.committee-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.committee-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.committee-card p {
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.committee-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.committee-card li {
  color: #ffeaa7;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.committee-card li::before {
  content: "▶";
  color: #ff6b6b;
  position: absolute;
  left: 0;
}

#board-achievements {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#board-achievements h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.achievements-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.achievement-item h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.achievement-item p {
  color: #f0f0f0;
  line-height: 1.6;
}

/* BOARD PAGE RESPONSIVE */
@media (max-width: 768px) {
  #BOD > div {
    max-width: 100%;
    margin: 0 1rem;
  }

  .committees-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .achievements-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #board-committees h2,
  #board-achievements h2 {
    font-size: 2rem;
  }
}

/* FORMS PAGE SPECIFIC STYLES */
#power-progression {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#power-progression h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.progression-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.path-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.path-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.path-card p {
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.path-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.path-card li {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.path-card li::before {
  content: "⭐";
  color: #ffd700;
  position: absolute;
  left: 0;
}

#special-abilities {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#special-abilities h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.abilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ability-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.ability-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.ability-card p {
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.ability-requirements {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
  border-radius: 5px;
  border-left: 3px solid #ff6b6b;
}

.ability-requirements strong {
  color: #ffd700;
}

#current-rankings {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#current-rankings h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.rank-category {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-category h3 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

.rank-holder {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.rank-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00d4ff;
}

.rank-info h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.rank-info p {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.rank-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.rank-badge.absolute {
  background: linear-gradient(45deg, #ffd700, #ff6b6b);
  color: #000;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rank-badge.god {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  color: #fff;
}

.rank-badge.master {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
}

#advancement-guide {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#advancement-guide h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.advancement-steps {
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  background: #00d4ff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.step h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step p {
  color: #f0f0f0;
  line-height: 1.6;
}

.advancement-steps {
  counter-reset: step-counter;
}

/* FORMS PAGE RESPONSIVE */
@media (max-width: 768px) {
  .progression-paths,
  .abilities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rank-holder {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .step::before {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }

  #power-progression h2,
  #special-abilities h2,
  #current-rankings h2,
  #advancement-guide h2 {
    font-size: 2rem;
  }
}

/* QUOTES PAGE SPECIFIC STYLES */
#quote-of-day {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#quote-of-day h2 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.daily-quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.daily-quote blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.daily-quote cite {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.1rem;
}

.quote-date {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-top: 1rem;
}

#quotes-by-category {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#quotes-by-category h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.tab-btn:hover,
.tab-btn.active {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.quote-category {
  display: none;
}

.quote-category.active {
  display: block;
}

#member-quotes {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#member-quotes h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.member-quotes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.member-quote-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.member-quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.member-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.member-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffd700;
}

.member-details h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.member-rank {
  background: linear-gradient(45deg, #ffd700, #ff6b6b);
  color: #000;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: bold;
}

.member-quote-card blockquote {
  color: #f0f0f0;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

#quote-submission {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#quote-submission h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.submission-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.submission-form p {
  color: #f0f0f0;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: linear-gradient(45deg, #ffd700, #ff6b6b);
  color: #000;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* QUOTES PAGE RESPONSIVE */
@media (max-width: 768px) {
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 200px;
    margin-bottom: 0.5rem;
  }

  .member-quotes-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .member-info {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .submission-form {
    padding: 0 1rem;
  }

  #quote-of-day h2,
  #quotes-by-category h2,
  #member-quotes h2,
  #quote-submission h2 {
    font-size: 2rem;
  }
}

/* COMMENTS PAGE SPECIFIC STYLES */
#community-guidelines {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#community-guidelines h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.guidelines-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.guideline-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.guideline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.guideline-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.guideline-card p {
  color: #f0f0f0;
  line-height: 1.6;
}

#discussion-topics {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#discussion-topics h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.topic-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.topic-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.topic-card p {
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.topic-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.topic-stats span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
}

#featured-comments {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#featured-comments h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.featured-comments-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-comment {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.featured-comment:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffd700;
}

.author-info h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-rank {
  background: linear-gradient(45deg, #ffd700, #ff6b6b);
  color: #000;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: bold;
}

.featured-comment blockquote {
  color: #f0f0f0;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.comment-reactions {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #e0e0e0;
}

#engagement-features {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#engagement-features h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.engagement-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.engagement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.engagement-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.engagement-card p {
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.engagement-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engagement-card li {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.engagement-card li::before {
  content: "🏆";
  position: absolute;
  left: 0;
}

.challenge-status,
.spotlight-preview,
.suggestion-stats {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem;
  border-radius: 5px;
  margin-top: 1rem;
}

.challenge-status,
.suggestion-stats {
  display: flex;
  justify-content: space-between;
}

.challenge-status span,
.spotlight-preview p,
.suggestion-stats span {
  font-size: 0.9rem;
  color: #e0e0e0;
}

/* COMMENTS PAGE RESPONSIVE */
@media (max-width: 768px) {
  .guidelines-content,
  .topics-grid,
  .featured-comments-container,
  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comment-author {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .topic-stats,
  .comment-reactions,
  .challenge-status,
  .suggestion-stats {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  #community-guidelines h2,
  #discussion-topics h2,
  #featured-comments h2,
  #engagement-features h2 {
    font-size: 2rem;
  }
}

/* ANNOUNCEMENTS PAGE SPECIFIC STYLES */
#upcoming-events {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#upcoming-events h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.events-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 1rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.event-date {
  text-align: center;
  min-width: 60px;
}

.event-date .day {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 0.9rem;
  color: #ffd700;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.event-details h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.event-details p {
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #e0e0e0;
}

#community-milestones {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#community-milestones h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.milestone-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.milestone-icon {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.milestone-content h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.milestone-content p {
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.milestone-date {
  color: #ffd700;
  font-size: 0.8rem;
  font-weight: bold;
}

#announcement-archive {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#announcement-archive h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.archive-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.archive-list {
  max-width: 800px;
  margin: 0 auto;
}

.archive-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  border-left: 4px solid #00d4ff;
  transition: background-color 0.3s ease;
}

.archive-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.archive-item h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.archive-date {
  color: #e0e0e0;
  font-size: 0.8rem;
}

/* ANNOUNCEMENTS PAGE RESPONSIVE */
@media (max-width: 768px) {
  .events-calendar,
  .milestones-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .milestone-card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .archive-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 150px;
    margin-bottom: 0.5rem;
  }

  #upcoming-events h2,
  #community-milestones h2,
  #announcement-archive h2 {
    font-size: 2rem;
  }
}

/* LOGIN PAGE SPECIFIC STYLES */
#login-hero {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  margin-bottom: 2rem;
}

#login-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

#login-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

#login-form-section {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-card h2 {
  text-align: center;
  color: #00d4ff;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
  color: #ccc;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #00d4ff;
  font-size: 1.2rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  width: auto;
  padding: 0;
}

.forgot-password {
  color: #ff6b6b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #ff9999;
  text-decoration: underline;
}

.login-btn {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
  background: linear-gradient(45deg, #33e0ff, #00ccff);
}

.login-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-footer p {
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}

.signup-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.signup-link:hover {
  color: #ffed4e;
  text-decoration: underline;
}

.login-benefits {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-benefits h3 {
  color: #ffd700;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.login-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.login-benefits li {
  color: #e0e0e0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.login-benefits li::before {
  content: "⭐";
  position: absolute;
  left: 0;
  color: #ffd700;
}

#social-login {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
  margin: 2rem 0;
}

#social-login h2 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: bold;
  backdrop-filter: blur(10px);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #4285f4;
}

.discord-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #5865f2;
}

.github-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #333;
}

.social-icon {
  font-size: 1.2rem;
}

/* FOOTER TEXT STYLES */
.footer-copyright {
  margin-top: 1.5rem;
  font-size: 0.9em;
  color: #e0e0e0;
}

.footer-credit {
  font-size: 0.85em;
  margin-top: 0.5rem;
  color: #b0b0b0;
}

/* LOGIN PAGE RESPONSIVE */
@media (max-width: 768px) {
  .login-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #login-hero h1 {
    font-size: 2rem;
  }

  .login-card {
    padding: 1.5rem;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-btn {
    width: 250px;
    justify-content: center;
  }

  .form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
