/* proConsul - Enterprise Digital Trust & Identity Orchestration Platform */

/* SK Modernist Font - Multiple sources for reliability */
@import url('https://fonts.cdnfonts.com/css/sk-modernist');
@import url('https://db.onlinewebfonts.com/c/0b99b757c88c22461d8f85a3b3150d38?family=SK+Modernist');

:root {
  /* Brand Colors - proConsul specific palette */
  --primary-color: #5e17eb;
  --primary-dark: #4A12BC;
  --primary-light: #7C3EF0;
  --accent-color: #5e17eb;
  --accent-dark: #4A12BC;

  /* Neutral Colors */
  --background: #ffffff;
  --background-alt: #f8f9fa;
  --background-dark: #e9ecef;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-light: #adb5bd;

  /* Semantic Colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;

  /* Spacing - Increased for better breathing room */
  --spacing-xs: 0.75rem;
  --spacing-sm: 1.25rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4.5rem;
  --spacing-xxl: 6rem;

  /* Typography */
  --font-body: 'SK Modernist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: 'SK Modernist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --line-height-body: 1.7;
  --line-height-heading: 1.3;

  /* Borders & Shadows */
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --box-shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --box-shadow-md: 0 4px 8px rgba(0,0,0,0.12);
  --box-shadow-lg: 0 8px 16px rgba(0,0,0,0.16);

  /* Layout */
  --max-width: 1200px;
  --header-max-width: 1400px;
  --header-height: 70px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: var(--line-height-body);
  color: var(--text-primary);
  background-color: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: var(--background);
  box-shadow: var(--box-shadow-sm);
  z-index: 1000;
  height: var(--header-height);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: var(--header-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s ease;
  color: var(--text-primary);
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 80%;
}

.nav a:hover,
.nav a.active {
  background-color: var(--background-alt);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  color: white;
  padding: var(--spacing-xxl) var(--spacing-md);
  text-align: center;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-logo {
  max-width: 180px;
  height: auto;
  margin: 0 auto var(--spacing-lg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: fadeInScale 0.6s ease-out;
}

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

.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(94, 23, 235, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

.btn-secondary:hover {
  background-color: var(--background-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(94, 23, 235, 0.25);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-alt {
  background-color: var(--background-alt);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Cards */
.card {
  background-color: var(--background);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--box-shadow-sm);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(94, 23, 235, 0.15), 0 0 20px rgba(94, 23, 235, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.card-badge {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto var(--spacing-md);
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-badge {
  transform: scale(1.15) translateY(-5px);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-dark);
  text-align: center;
}

.card-text {
  color: var(--text-secondary);
}

/* Diagram Container */
.diagram-container {
  background-color: var(--background);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--box-shadow-sm);
  margin: var(--spacing-xl) 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.diagram-container:hover {
  box-shadow: 0 8px 24px rgba(94, 23, 235, 0.1);
  transform: translateY(-2px);
}

.diagram-container img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.diagram-container:hover img {
  transform: scale(1.01);
}

.diagram-caption {
  margin-top: var(--spacing-md);
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

/* Feature Box */
.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background-color: var(--background);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-sm);
  margin-bottom: var(--spacing-md);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(94, 23, 235, 0.12);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-content h3 {
  margin-bottom: var(--spacing-xs);
}

/* Use Case Card */
.use-case-card {
  background-color: var(--background);
  border-left: 4px solid var(--accent-color);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-sm);
}

.use-case-title {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.use-case-label {
  display: inline-block;
  background-color: var(--primary-light);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

/* Module Card */
.module-card {
  background-color: var(--background);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-sm);
  border-top: 4px solid var(--primary-color);
}

.module-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

/* Compliance Badge */
.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.compliance-badge {
  background-color: var(--primary-light);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Contact Form */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--primary-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--background-dark);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.form-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: var(--spacing-xs);
}

/* Architecture Diagram Section */
.architecture-section {
  margin: var(--spacing-xl) 0;
}

.architecture-layers {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.layer {
  background-color: var(--background);
  border-left: 4px solid var(--accent-color);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
}

.layer h3 {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
  padding: var(--spacing-xxl) var(--spacing-md);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--background);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-sm);
}

.legal-disclaimer {
  background-color: #fff3cd;
  border-left: 4px solid var(--warning);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  border-radius: var(--border-radius);
}

.legal-content h2 {
  margin-top: var(--spacing-xl);
  border-bottom: 2px solid var(--background-dark);
  padding-bottom: var(--spacing-sm);
}

.legal-content h3 {
  margin-top: var(--spacing-lg);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: white;
  padding: var(--spacing-md);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
  z-index: 2000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--spacing-sm);
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--background);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--box-shadow-md);
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: var(--spacing-sm);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .feature-box {
    flex-direction: column;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 30px;
  }

  .hero {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .btn {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }
}

/* Lightbox / Image Zoom */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-caption {
  margin-top: var(--spacing-md);
  color: white;
  text-align: center;
  font-size: 0.95rem;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius);
}

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

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .mobile-menu-toggle,
  .btn,
  .lightbox {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

/* Scroll-triggered Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animations for grid items */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Animated gradient background */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

/* Floating animation for icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Pulse animation for call-to-action elements */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(94, 23, 235, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(94, 23, 235, 0);
  }
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* Enhanced hover effects */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hover-glow {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(94, 23, 235, 0.3), 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Shimmer effect for loading/highlighting */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Rotate animation for icons on hover */
.rotate-on-hover {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-on-hover:hover {
  transform: rotate(5deg) scale(1.1);
}

/* Smooth color transitions */
.smooth-color {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Breathing animation for important elements */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.breathe-animation {
  animation: breathe 4s ease-in-out infinite;
}

/* Notice Box for Developer Access */
.notice-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFF3CD;
    border: 2px solid #FFC107;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
}

.notice-box h3 {
    margin-top: 0;
    color: #856404;
}

.notice-box p {
    color: #856404;
    margin-bottom: 1rem;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.notice-box a {
    color: #856404;
    text-decoration: underline;
    font-weight: 600;
}

.card ul {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: var(--spacing-md);
    text-align: left;
}

.card ul li {
    margin-bottom: var(--spacing-xs);
}

.text-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
