/* ==========================================
   NOVEMBER BLEU - DEDICATED STYLES
   ========================================== */

/* November Hero Section */
.november-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
}

.november-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

/* Floating Geometric Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00a3ff, transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #0066cc, transparent);
  bottom: -50px;
  right: -50px;
  animation-delay: 2s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #00a3ff, transparent);
  top: 50%;
  right: -100px;
  animation-delay: 4s;
}

@keyframes float-shape {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -20px);
  }
  50% {
    transform: translate(-10px, 20px);
  }
  75% {
    transform: translate(15px, 10px);
  }
}

/* Wave Animation */
.wave-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(0,163,255,0.1)"/></svg>')
    repeat-x;
  background-size: 600px 120px;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 600px 0;
  }
}

/* November Hero Content */
.november-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.november-title {
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 163, 255, 0.2);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(0, 163, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 40px rgba(0, 163, 255, 0.4);
  }
}

.november-subtitle {
  font-size: clamp(16px, 3vw, 22px);
  color: var(--text-secondary);
  line-height: 1.6;
  animation: fade-in-up 1s ease-out 0.3s both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* November Cards Section */
.november-cards {
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 163, 255, 0.03));
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.november-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.november-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a3ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.november-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 163, 255, 0.2);
  border-color: #00a3ff;
}

.november-card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  justify-content: center;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 102, 204, 0.05));
  border: 2px solid rgba(0, 163, 255, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.november-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.2), rgba(0, 102, 204, 0.1));
  border-color: #00a3ff;
  transform: scale(1.1) rotate(5deg);
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
}

.card-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  margin: 0;
  flex-grow: 1;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00a3ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.november-card:hover .card-accent {
  opacity: 1;
}

/* November Footer Strip */
.november-footer-strip {
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 102, 204, 0.05));
  border-top: 2px solid rgba(0, 163, 255, 0.3);
  border-bottom: 2px solid rgba(0, 163, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-strip-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-strip-text {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}

.footer-strip-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.2), transparent);
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .november-hero {
    padding: 100px 16px 60px;
    min-height: auto;
  }

  .november-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .november-subtitle {
    font-size: 16px;
  }

  .november-cards {
    padding: 60px 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .november-card {
    padding: 32px 24px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
  }

  .november-footer-strip {
    padding: 40px 16px;
  }

  .footer-strip-text {
    font-size: 20px;
  }

  .floating-shape {
    opacity: 0.05;
  }
}

@media (max-width: 480px) {
  .november-hero {
    padding: 80px 12px 40px;
  }

  .november-title {
    font-size: 24px;
  }

  .november-subtitle {
    font-size: 14px;
  }

  .november-card {
    padding: 24px 16px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
  }
}

/* 3D Perspective Effect */
@supports (perspective: 1000px) {
  .cards-grid {
    perspective: 1000px;
  }

  .november-card {
    transform-style: preserve-3d;
  }
}

/* Light Mode Support */
body:not(.dark-mode) .november-hero {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.05) 0%, rgba(0, 102, 204, 0.02) 100%);
}

body:not(.dark-mode) .november-cards {
  background: linear-gradient(180deg, transparent, rgba(0, 163, 255, 0.02));
}

body:not(.dark-mode) .november-footer-strip {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.05), rgba(0, 102, 204, 0.02));
}

/* ==========================================
   3D MEMORY FLIP GAME STYLES
   ========================================== */

.memory-game-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, rgba(0, 163, 255, 0.02), rgba(0, 102, 204, 0.02));
  position: relative;
  overflow: hidden;
}

/* Added enhanced background with floating particles and glowing orbs */
.game-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.floating-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float-particle 12s ease-in-out infinite;
}

.particle-1 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #00a3ff, transparent);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.particle-2 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #0066cc, transparent);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.particle-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #00a3ff, transparent);
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

.particle-4 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #0066cc, transparent);
  top: 30%;
  right: 5%;
  animation-delay: 6s;
}

@keyframes float-particle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 40px) scale(0.9);
  }
  75% {
    transform: translate(40px, 20px) scale(1.05);
  }
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse-orb 6s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.3), transparent);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.25), transparent);
  bottom: 10%;
  right: 15%;
  animation-delay: 3s;
}

@keyframes pulse-orb {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.memory-game-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 163, 255, 0.05), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.game-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.game-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  animation: glow-pulse 3s ease-in-out infinite;
}

.game-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
}

.game-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.game-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.1);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: #00a3ff;
  box-shadow: 0 12px 32px rgba(0, 163, 255, 0.2);
  transform: translateY(-4px);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #00a3ff;
}

.game-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  perspective: 1000px;
}

/* Enhanced memory card with better 3D effects and glowing borders -->
.memory-card {
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  height: 120px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.memory-card.flipped {
  transform: rotateY(180deg);
}

.memory-card.matched {
  pointer-events: none;
}

.memory-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.memory-card-front,
.memory-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  font-weight: 700;
  font-size: 48px;
  transition: all 0.3s ease;
}

.memory-card-front {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.15), rgba(0, 102, 204, 0.1));
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.memory-card-front::before {
  content: "?";
  font-size: 48px;
  color: #00a3ff;
  font-weight: 700;
  animation: pulse-question 2s ease-in-out infinite;
  z-index: 2;
}

/* Added glowing effect to card front -->
.memory-card-front::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 163, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes pulse-question {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.memory-card-back {
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  transform: rotateY(180deg);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.3);
  font-size: 56px;
}

.memory-card:hover:not(.flipped):not(.matched) .memory-card-front {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.25), rgba(0, 102, 204, 0.15));
  border-color: #00a3ff;
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.3), inset 0 0 20px rgba(0, 163, 255, 0.1);
}

.memory-card:hover:not(.flipped):not(.matched) .memory-card-front::after {
  opacity: 1;
}

.memory-card.matched .memory-card-back {
  animation: match-pulse 0.6s ease-out;
}

@keyframes match-pulse {
  0% {
    transform: rotateY(180deg) scale(1);
  }
  50% {
    transform: rotateY(180deg) scale(1.1);
  }
  100% {
    transform: rotateY(180deg) scale(1);
  }
}

.memory-card.error .memory-card-front {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  75% {
    transform: translateX(8px);
  }
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-reset,
.btn-hint {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.btn-reset {
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.3);
}

.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 163, 255, 0.4);
}

.btn-reset:active {
  transform: translateY(0);
}

.btn-hint {
  background: var(--bg-card);
  color: #00a3ff;
  border: 2px solid #00a3ff;
}

.btn-hint:hover {
  background: rgba(0, 163, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.2);
}

.btn-hint:active {
  transform: translateY(0);
}

.game-message {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #00a3ff;
  min-height: 24px;
  animation: fade-in 0.3s ease-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .memory-game-section {
    padding: 60px 16px;
  }

  .game-title {
    font-size: 32px;
  }

  .game-subtitle {
    font-size: 16px;
  }

  .game-stats {
    gap: 20px;
  }

  .stat {
    padding: 12px 16px;
  }

  .stat-value {
    font-size: 20px;
  }

  .game-board {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
  }

  .memory-card {
    height: 100px;
  }

  .memory-card-front::before,
  .memory-card-back {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .memory-game-section {
    padding: 40px 12px;
  }

  .game-title {
    font-size: 24px;
  }

  .game-subtitle {
    font-size: 14px;
  }

  .game-stats {
    gap: 12px;
  }

  .stat {
    padding: 10px 12px;
    font-size: 12px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-value {
    font-size: 16px;
  }

  .game-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .memory-card {
    height: 80px;
  }

  .memory-card-front::before,
  .memory-card-back {
    font-size: 28px;
  }

  .btn-reset,
  .btn-hint {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ==========================================
   ILLUSTRATED IMAGES SECTION
   ========================================== */

.illustrations-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, rgba(0, 163, 255, 0.02), rgba(0, 102, 204, 0.02));
  position: relative;
  overflow: hidden;
}

.illustrations-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 163, 255, 0.05), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.illustrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.illustration-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.illustration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 163, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.illustration-card:hover {
  transform: translateY(-16px) scale(1.02);
  border-color: #00a3ff;
  box-shadow: 0 24px 48px rgba(0, 163, 255, 0.25);
}

.illustration-card:hover::before {
  opacity: 1;
}

.illustration-image {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 102, 204, 0.05));
  border-radius: var(--radius-md);
  border: 2px solid rgba(0, 163, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.illustration-card:hover .illustration-image {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.2), rgba(0, 102, 204, 0.1));
  border-color: #00a3ff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(0, 163, 255, 0.2);
}

.illustration-image svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 163, 255, 0.15));
}

.illustration-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  position: relative;
  z-index: 1;
}

.illustration-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Scroll animations */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animate[data-animation="slide-up"] {
  animation: slide-up 0.8s ease-out forwards;
  opacity: 0;
}

/* ==========================================
   AWARENESS FACTS SECTION
   ========================================== */

.awareness-facts-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, rgba(0, 102, 204, 0.02), rgba(0, 163, 255, 0.02));
  position: relative;
  overflow: hidden;
}

.awareness-facts-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 163, 255, 0.05), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a3ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-12px);
  border-color: #00a3ff;
  box-shadow: 0 20px 40px rgba(0, 163, 255, 0.2);
}

.fact-card:hover::before {
  opacity: 1;
}

.fact-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0;
}

.fact-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.fact-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.fact-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00a3ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fact-card:hover .fact-accent {
  opacity: 1;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-animate[data-animation="fade-in"] {
  animation: fade-in 0.8s ease-out forwards;
  opacity: 0;
}

/* ==========================================
   ENHANCED FOOTER WITH FLOATING RIBBONS
   ========================================== */

.november-footer-enhanced {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.15), rgba(0, 102, 204, 0.1));
  border-top: 2px solid rgba(0, 163, 255, 0.3);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.floating-ribbons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.ribbon {
  position: absolute;
  opacity: 0.1;
  animation: float-ribbon 8s ease-in-out infinite;
}

.ribbon-1 {
  width: 200px;
  height: 40px;
  background: linear-gradient(90deg, #00a3ff, transparent);
  top: 20%;
  left: 10%;
  border-radius: 50%;
  animation-delay: 0s;
}

.ribbon-2 {
  width: 180px;
  height: 35px;
  background: linear-gradient(90deg, transparent, #0066cc);
  top: 60%;
  right: 15%;
  border-radius: 50%;
  animation-delay: 2s;
}

.ribbon-3 {
  width: 220px;
  height: 45px;
  background: linear-gradient(90deg, #00a3ff, #0066cc);
  bottom: 20%;
  left: 20%;
  border-radius: 50%;
  animation-delay: 4s;
}

@keyframes float-ribbon {
  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(30px) translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateX(-20px) translateY(30px) rotate(-5deg);
  }
  75% {
    transform: translateX(40px) translateY(10px) rotate(3deg);
  }
}

.footer-content-enhanced {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.footer-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  animation: glow-pulse 3s ease-in-out infinite;
}

.footer-message {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00a3ff, #0066cc);
  margin: 24px auto;
  border-radius: 2px;
}

.footer-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .illustrations-section {
    padding: 60px 16px;
  }

  .illustrations-grid {
    gap: 24px;
  }

  .illustration-card {
    padding: 32px 24px;
  }

  .illustration-image {
    width: 120px;
    height: 120px;
  }

  .awareness-facts-section {
    padding: 60px 16px;
  }

  .facts-grid {
    gap: 24px;
  }

  .fact-card {
    padding: 32px 24px;
  }

  .fact-number {
    font-size: 36px;
  }

  .fact-title {
    font-size: 18px;
  }

  .fact-text {
    font-size: 14px;
  }

  .november-footer-enhanced {
    padding: 60px 16px;
  }

  .footer-title {
    font-size: 32px;
  }

  .footer-message {
    font-size: 18px;
  }

  .footer-tagline {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .illustrations-section {
    padding: 40px 12px;
  }

  .illustrations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .illustration-card {
    padding: 24px 16px;
  }

  .illustration-image {
    width: 100px;
    height: 100px;
  }

  .illustration-title {
    font-size: 18px;
  }

  .illustration-text {
    font-size: 13px;
  }

  .awareness-facts-section {
    padding: 40px 12px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fact-card {
    padding: 24px 16px;
  }

  .fact-number {
    font-size: 32px;
  }

  .fact-title {
    font-size: 16px;
  }

  .fact-text {
    font-size: 13px;
  }

  .november-footer-enhanced {
    padding: 40px 12px;
  }

  .footer-title {
    font-size: 24px;
  }

  .footer-message {
    font-size: 16px;
  }

  .footer-tagline {
    font-size: 13px;
  }
}
/* ==========================================
   NOVEMBER BLEU - DEDICATED STYLES
   ========================================== */

/* November Hero Section */
.november-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
}

.november-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

/* Floating Geometric Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00a3ff, transparent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #0066cc, transparent);
  bottom: -50px;
  right: -50px;
  animation-delay: 2s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #00a3ff, transparent);
  top: 50%;
  right: -100px;
  animation-delay: 4s;
}

@keyframes float-shape {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(20px, -20px);
  }
  50% {
    transform: translate(-10px, 20px);
  }
  75% {
    transform: translate(15px, 10px);
  }
}

/* Wave Animation */
.wave-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(0,163,255,0.1)"/></svg>')
    repeat-x;
  background-size: 600px 120px;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 600px 0;
  }
}

/* November Hero Content */
.november-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.november-title {
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 163, 255, 0.2);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(0, 163, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 40px rgba(0, 163, 255, 0.4);
  }
}

.november-subtitle {
  font-size: clamp(16px, 3vw, 22px);
  color: var(--text-secondary);
  line-height: 1.6;
  animation: fade-in-up 1s ease-out 0.3s both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* November Cards Section */
.november-cards {
  padding: 80px 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 163, 255, 0.03));
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.november-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.november-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00a3ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.november-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 163, 255, 0.2);
  border-color: #00a3ff;
}

.november-card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  justify-content: center;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 102, 204, 0.05));
  border: 2px solid rgba(0, 163, 255, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.november-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.2), rgba(0, 102, 204, 0.1));
  border-color: #00a3ff;
  transform: scale(1.1) rotate(5deg);
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
}

.card-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  margin: 0;
  flex-grow: 1;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00a3ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.november-card:hover .card-accent {
  opacity: 1;
}

/* November Footer Strip */
.november-footer-strip {
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 102, 204, 0.05));
  border-top: 2px solid rgba(0, 163, 255, 0.3);
  border-bottom: 2px solid rgba(0, 163, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-strip-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-strip-text {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  animation: glow-pulse 3s ease-in-out infinite;
}

.footer-strip-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.2), transparent);
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .november-hero {
    padding: 100px 16px 60px;
    min-height: auto;
  }

  .november-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .november-subtitle {
    font-size: 16px;
  }

  .november-cards {
    padding: 60px 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .november-card {
    padding: 32px 24px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
  }

  .november-footer-strip {
    padding: 40px 16px;
  }

  .footer-strip-text {
    font-size: 20px;
  }

  .floating-shape {
    opacity: 0.05;
  }
}

@media (max-width: 480px) {
  .november-hero {
    padding: 80px 12px 40px;
  }

  .november-title {
    font-size: 24px;
  }

  .november-subtitle {
    font-size: 14px;
  }

  .november-card {
    padding: 24px 16px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
  }
}

/* 3D Perspective Effect */
@supports (perspective: 1000px) {
  .cards-grid {
    perspective: 1000px;
  }

  .november-card {
    transform-style: preserve-3d;
  }
}

/* Light Mode Support */
body:not(.dark-mode) .november-hero {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.05) 0%, rgba(0, 102, 204, 0.02) 100%);
}

body:not(.dark-mode) .november-cards {
  background: linear-gradient(180deg, transparent, rgba(0, 163, 255, 0.02));
}

body:not(.dark-mode) .november-footer-strip {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.05), rgba(0, 102, 204, 0.02));
}

/* ==========================================
   3D MEMORY FLIP GAME STYLES
   ========================================== */

.memory-game-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, rgba(0, 163, 255, 0.02), rgba(0, 102, 204, 0.02));
  position: relative;
  overflow: hidden;
}

.memory-game-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 163, 255, 0.05), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.game-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.game-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  animation: glow-pulse 3s ease-in-out infinite;
}

.game-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
}

.game-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.game-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #00a3ff;
}

.game-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  perspective: 1000px;
}

/* Memory Card Styles */
.memory-card {
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  height: 120px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.memory-card.flipped {
  transform: rotateY(180deg);
}

.memory-card.matched {
  pointer-events: none;
}

.memory-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.memory-card-front,
.memory-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  font-weight: 700;
  font-size: 48px;
  transition: all 0.3s ease;
}

.memory-card-front {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.15), rgba(0, 102, 204, 0.1));
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.memory-card-front::before {
  content: "?";
  font-size: 48px;
  color: #00a3ff;
  font-weight: 700;
  animation: pulse-question 2s ease-in-out infinite;
}

@keyframes pulse-question {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.memory-card-back {
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  transform: rotateY(180deg);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.3);
}

.memory-card:hover:not(.flipped):not(.matched) .memory-card-front {
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.25), rgba(0, 102, 204, 0.15));
  border-color: #00a3ff;
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.2);
}

.memory-card.matched .memory-card-back {
  animation: match-pulse 0.6s ease-out;
}

@keyframes match-pulse {
  0% {
    transform: rotateY(180deg) scale(1);
  }
  50% {
    transform: rotateY(180deg) scale(1.1);
  }
  100% {
    transform: rotateY(180deg) scale(1);
  }
}

.memory-card.error .memory-card-front {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  75% {
    transform: translateX(8px);
  }
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-reset,
.btn-hint {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.btn-reset {
  background: linear-gradient(135deg, #00a3ff, #0066cc);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 163, 255, 0.3);
}

.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 163, 255, 0.4);
}

.btn-reset:active {
  transform: translateY(0);
}

.btn-hint {
  background: var(--bg-card);
  color: #00a3ff;
  border: 2px solid #00a3ff;
}

.btn-hint:hover {
  background: rgba(0, 163, 255, 0.1);
  transform: translateY(-2px);
}

.btn-hint:active {
  transform: translateY(0);
}

.game-message {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #00a3ff;
  min-height: 24px;
  animation: fade-in 0.3s ease-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .memory-game-section {
    padding: 60px 16px;
  }

  .game-title {
    font-size: 32px;
  }

  .game-subtitle {
    font-size: 16px;
  }

  .game-stats {
    gap: 20px;
  }

  .stat {
    padding: 12px 16px;
  }

  .stat-value {
    font-size: 20px;
  }

  .game-board {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
  }

  .memory-card {
    height: 100px;
  }

  .memory-card-front::before,
  .memory-card-back {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .memory-game-section {
    padding: 40px 12px;
  }

  .game-title {
    font-size: 24px;
  }

  .game-subtitle {
    font-size: 14px;
  }

  .game-stats {
    gap: 12px;
  }

  .stat {
    padding: 10px 12px;
    font-size: 12px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-value {
    font-size: 16px;
  }

  .game-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .memory-card {
    height: 80px;
  }

  .memory-card-front::before,
  .memory-card-back {
    font-size: 28px;
  }

  .btn-reset,
  .btn-hint {
    padding: 10px 20px;
    font-size: 14px;
  }
}
