/* CSS VARIABLES FOR THEMES */
:root {
  /* Light theme variables */
  --bg-primary: #f5f7fa;
  --bg-secondary: #ffffff;
  --bg-navbar: rgba(255, 255, 255, 0.95);
  --bg-navbar-scrolled: rgba(255, 255, 255, 0.98);
  --text-primary: #333333;
  --text-secondary: #666666;
  --accent-color: #00aaff;
  --border-color: rgba(0, 0, 0, 0.1);
  --card-bg: #ffffff;
  --input-bg: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --nav-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  --activity-icon-color: #ffffff;

  /* Footer Light Theme Variables */
  --footer-bg: #fcfcff;
  --footer-bg-secondary: #16213e;
  --footer-text: #e6e6e6;
  --footer-text-secondary: #a0aec0;
  --footer-heading: #ffffff;
  --footer-link: #cbd5e0;
  --footer-link-hover: #ffffff;
  --footer-border: #2d3748;
  --social-bg: #2d3748;
  --social-bg-hover: #4a5568;
  --social-icon: #cbd5e0;
  --social-icon-hover: #ffffff;
  --social-border: #4a5568;
  --footer-input-bg: #2d3748;
  --input-border: #4a5568;
  --input-text: #e2e8f0;
  --input-placeholder: #cbd5e1;
  --accent-primary: #667eea;
  --accent-secondary: #764ba2;

  /* Font Variables for Consistency */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-mono: 'Courier New', monospace;
  --font-hud: 'JetBrains Mono', monospace;

  /* Shared UI Tokens for Consistency */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;

  --shadow-hover: 0 8px 25px rgba(0, 170, 255, 0.2);
  --shadow-hover-strong: 0 12px 30px rgba(0, 170, 255, 0.3);

  --hover-transform: translateY(-5px);
  --hover-transform-strong: translateY(-8px) scale(1.02);

  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
}

:root .hack-main-card h3 {
  --text-primary: rgb(255, 250, 250);
}

.hack-main-card h3,
#home-event-desc {
  background: rgba(0, 0, 0, 0.248);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 10px;
  padding-left: 20px;
  padding-right: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

:root .btn-hollow {
  --text-primary: white;
}

:root .btn-hollow:hover {
  --text-primary: #00aaff;
}

:root .cyber-card p,
.stat small,
.toggle-label {
  --text-secondary: white;
}

[data-theme='dark'] {
  /* Dark theme variables */
  --bg-primary: #0d0f14;
  --bg-secondary: #13161d;
  --bg-navbar: rgba(19, 22, 29, 0.95);
  --bg-navbar-scrolled: rgba(19, 22, 29, 0.98);
  --text-primary: #ffffff;
  --text-secondary: #bbbbbb;
  --accent-color: #00aaff;
  --border-color: rgba(255, 255, 255, 0.1);
  --card-bg: #1a1d25;
  --input-bg: #1a1d25;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --nav-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  --activity-icon-color: #00aaff;

  /* Footer Dark Theme Variables */
  --footer-bg: #0f1419;
  --footer-bg-secondary: #1a202c;
  --footer-text: #e2e8f0;
  --footer-text-secondary: #a0aec0;
  --footer-heading: #ffffff;
  --footer-link: #cbd5e0;
  --footer-link-hover: #ffffff;
  --footer-border: #2d3748;
  --social-bg: #2d3748;
  --social-bg-hover: #4a5568;
  --social-icon: #cbd5e0;
  --social-icon-hover: #ffffff;
  --social-border: #4a5568;
  --footer-input-bg: #2d3748;
  --input-border: #4a5568;
  --input-text: #e2e8f0;
  --input-placeholder: #cbd5e1;
  --accent-primary: #00aaff;
  --accent-secondary: #0088cc;

  /* Neon colors for dark theme */
  --neon-green: #0aff9d;
  --neon-cyan: #00aaff;
  --neon-purple: #bc13fe;
  --neon-red: #ff003c;

  /* Stats Widget Variables for Dark Theme */
  --panel-bg: rgba(26, 29, 37, 0.85);
  --panel-border: 1px solid rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-dim: #bbbbbb;
  --font-hud: 'JetBrains Mono', monospace;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shared UI Tokens for Consistency */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;

  --shadow-hover: 0 8px 25px rgba(0, 170, 255, 0.2);
  --shadow-hover-strong: 0 12px 30px rgba(0, 170, 255, 0.3);

  --hover-transform: translateY(-5px);
  --hover-transform-strong: translateY(-8px) scale(1.02);

  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 20px;
}

[data-theme='dark'] .hack-main-card h3 {
  --text-primary: #ffffff;
}

#home-event-desc {
  --text-primary: rgb(255, 255, 255);
  color: var(--text-primary);
}

[data-theme='dark'] #home-event-desc {
  --text-primary: #ffffff;
}

/*========================*/
/* GENERAL */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
}

body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.main-content {
  flex: 1;
  padding-top: 80px;
}

/* NAVBAR - UPDATED WITH CURVED DESIGN AND ANIMATIONS */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-navbar);
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: var(--nav-shadow);
  border: 1px solid var(--border-color);
  margin: 0 20px;
  width: calc(100% - 40px);
  box-sizing: border-box;
  transform: translateY(0);
}

.navbar.scrolled {
  background: var(--bg-navbar-scrolled);
  padding: 12px 40px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  padding: 5px 0;
  order: 1;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), #0088cc);
  transition: width 0.3s ease;
}

.logo:hover::before {
  width: 100%;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(0, 170, 255, 0.3));
}

.logo span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent-color), #0088cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.2s ease;
  font-family: var(--font-heading);
}

.logo:hover span {
  letter-spacing: 1.2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  order: 2;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  padding: 12px 20px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 170, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.nav-links a:hover::before {
  left: 100%;
}

@keyframes hoverBounce {
  0%,
  100% {
    transform: translateY(-2px) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.08);
  }
}

.nav-links a:hover {
  color: var(--accent-color);
  background: rgba(0, 170, 255, 0.08);
  animation: hoverBounce 0.6s ease-in-out infinite;
  box-shadow: 0 6px 15px rgba(0, 170, 255, 0.2);
}

.nav-links .active {
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.15), rgba(0, 136, 204, 0.1));
  border: 1px solid rgba(0, 170, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 170, 255, 0.2);
}

.nav-icon {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.nav-links a:hover .nav-icon {
  transform: scale(1.2) rotate(10deg);
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  padding: 8px;
  box-shadow: var(--shadow);
  order: 3;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(0, 170, 255, 0.1);
  border-color: var(--accent-color);
}

.hamburger .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-secondary);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--accent-color);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 18px;
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    order: 1;
  }

  .hamburger {
    display: flex;
    order: 3;
  }

  .nav-links {
    order: 2;
    position: fixed;
    top: 75px;
    left: 15px;
    right: 15px;
    background: var(--bg-navbar);
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform-origin: top center;
    transform: translateY(-10px) scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: 0;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    overflow: hidden;
  }

  .nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open::before {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links.open {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
    animation: slideDownFade 0.3s ease-out forwards;
  }

  @keyframes slideDownFade {
    from {
      opacity: 0;
      transform: translateY(-20px) scaleY(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scaleY(1);
    }
  }

  .nav-links::-webkit-scrollbar {
    width: 6px;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
  }

  .nav-links::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 12px;
    font-family: var(--font-primary);
    width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(0, 170, 255, 0.15);
    border-color: rgba(0, 170, 255, 0.3);
    transform: translateX(5px);
    animation: none;
  }

  .nav-links .active {
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.2), rgba(0, 136, 204, 0.15));
    border-color: rgba(0, 170, 255, 0.4);
    transform: translateY(0);
  }

  .theme-toggle {
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
    padding: 10px 18px;
  }

  .theme-label {
    width: 60px;
    height: 30px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo span {
    font-size: 18px;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }
}

/* THEME TOGGLE - UPDATED FROM FIRST CODE BLOCK */
.theme-toggle {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.theme-switch {
  display: none;
}

.theme-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 65px;
  height: 32px;
  background: var(--card-bg);
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
  padding: 0 5px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.theme-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), #08c);
  opacity: 0;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
}

.theme-label:hover::before {
  opacity: 0.1;
}

.moon-icon,
.sun-icon,
.toggle-thumb {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.toggle-thumb {
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--accent-color);
  border-radius: 50%;
  left: 3px;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -webkit-transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -moz-transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  -o-transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 170, 255, 0.3);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-perspective: 1000;
  perspective: 1000;
}

.moon-icon,
.sun-icon {
  position: relative;
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  z-index: 1;
}

.sun-icon {
  color: orange;
  opacity: 0;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
}

.moon-icon {
  color: #e2e8f0;
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
}

.theme-switch:checked + .theme-label .toggle-thumb {
  transform: translateX(33px);
  -webkit-transform: translateX(33px);
  -moz-transform: translateX(33px);
  -ms-transform: translateX(33px);
}

.theme-switch:checked + .theme-label .sun-icon {
  opacity: 1;
  transform: scale(1) rotate(360deg);
  -webkit-transform: scale(1) rotate(360deg);
  -moz-transform: scale(1) rotate(360deg);
  -ms-transform: scale(1) rotate(360deg);
}

.theme-switch:checked + .theme-label .moon-icon {
  opacity: 0;
  transform: scale(0.8) rotate(-360deg);
  -webkit-transform: scale(0.8) rotate(-360deg);
  -moz-transform: scale(0.8) rotate(-360deg);
  -ms-transform: scale(0.8) rotate(-360deg);
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .toggle-thumb {
      -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .theme-label {
      -webkit-transition-property: background, border-color, box-shadow;
      transition-property: background, border-color, box-shadow;
    }
  }
}

@supports (-webkit-touch-callout: none) {
  .theme-label {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }

  .toggle-thumb {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 180px 20px 120px;
  background: var(--bg-primary);
  margin-top: 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), #0088cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin: 0;
  font-family: var(--font-primary);
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
}

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

/* CONTENT SECTION */
.content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-primary);
  position: relative;
  font-family: var(--font-heading);
}

.content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: var(--font-primary);
}

/* =========================================
   FOCUS AREAS SECTION - FIXED STYLING
   ========================================= */

.focus-areas {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Fixed header formatting */
.focus-areas .section-header-terminal h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
}

.focus-areas .section-header-terminal h2 i {
  color: var(--accent-color);
  font-size: 1.8rem;
}

.focus-areas .section-sub {
  color: var(--accent-color);
  margin-bottom: 50px;
  font-size: 1.1rem;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Fixed grid layout with better spacing */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

/* Enhanced focus cards with better visual hierarchy */
.focus-card {
  background: var(--card-bg);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  text-align: center;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Add subtle gradient background effect */
.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #0088cc);
  z-index: 2;
}

/* Hover effect with smooth animation */
.focus-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 170, 255, 0.15);
  border-color: var(--accent-color);
  z-index: 10;
}

/* Icon styling */
.focus-icon {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  margin: 0 auto 25px;
  background: rgba(0, 170, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
  background: rgba(0, 170, 255, 0.2);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.3);
}

.focus-card i {
  font-size: 2.2rem;
}

/* Category titles */
.focus-card h3 {
  margin: 0 0 18px 0;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Category descriptions */
.focus-card p {
  margin: 0 0 25px 0;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--font-primary);
}

/* Category links */
.focus-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(0, 170, 255, 0.08);
  border: 1px solid transparent;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.focus-link:hover {
  color: var(--text-primary);
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.2);
}

/* Arrow animation on hover */
.focus-link::after {
  content: '→';
  transition: transform 0.3s ease;
  display: inline-block;
}

.focus-link:hover::after {
  transform: translateX(5px);
}

/* Category-specific colors for visual separation */
.focus-card:nth-child(1) {
  /* Web Development */
  border-top-color: #00aaff;
}

.focus-card:nth-child(2) {
  /* Embedded Systems */
  border-top-color: #0aff9d;
}

.focus-card:nth-child(3) {
  /* Programming */
  border-top-color: #ff0055;
}

.focus-card:nth-child(4) {
  /* Design */
  border-top-color: #bc13fe;
}

.focus-card:nth-child(5) {
  /* Open Source */
  border-top-color: #333;
}

.focus-card:nth-child(6) {
  /* Community Learning */
  border-top-color: #ffbd2e;
}

/* Footer text */
.focus-footer {
  text-align: center;
  margin-top: 60px;
  color: var(--text-secondary);
  font-size: 1rem;
  font-family: var(--font-mono);
  padding: 20px;
  border-top: 1px solid var(--border-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.focus-footer .cyber-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
}

.focus-footer .cyber-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.focus-footer .cyber-link:hover {
  color: var(--accent-color);
  text-decoration: none;
  background: rgba(0, 170, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.focus-footer .cyber-link:hover::after {
  width: 100%;
}

/* Dark theme specific adjustments */
[data-theme='dark'] .focus-card {
  background: rgba(26, 29, 37, 0.8);
  backdrop-filter: blur(10px);
}

[data-theme='dark'] .focus-card:hover {
  background: rgba(26, 29, 37, 0.95);
  box-shadow: 0 20px 40px rgba(0, 170, 255, 0.25);
}

[data-theme='dark'] .focus-link:hover {
  color: #000;
  background: var(--accent-color);
}

/* Light theme specific adjustments */
[data-theme='light'] .focus-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme='light'] .focus-card:hover {
  box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1);
  border-color: var(--accent-color);
}

[data-theme='light'] .focus-link {
  background: rgba(0, 170, 255, 0.05);
}

[data-thema='light'] .focus-link:hover {
  color: #ffffff;
}

/* Accessibility improvements */
.focus-card:focus-within {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.focus-link:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Responsive design improvements */
@media (max-width: 1024px) {
  .focus-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .focus-card {
    padding: 30px 25px;
  }

  .focus-areas .section-header-terminal h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .focus-areas {
    padding: 80px 0;
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .focus-card {
    padding: 25px 20px;
  }

  .focus-icon {
    height: 70px;
    width: 70px;
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .focus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .focus-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .focus-areas .section-header-terminal h2 {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .focus-areas .section-sub {
    font-size: 1rem;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .focus-areas {
    padding: 60px 0;
  }

  .focus-card {
    padding: 20px 15px;
  }

  .focus-icon {
    height: 60px;
    width: 60px;
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .focus-card h3 {
    font-size: 1.2rem;
  }

  .focus-card p {
    font-size: 0.9rem;
  }

  .focus-link {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .focus-areas .section-header-terminal h2 {
    font-size: 1.6rem;
  }

  .focus-areas .section-sub {
    font-size: 0.9rem;
  }

  .focus-footer {
    font-size: 0.9rem;
    padding: 15px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .focus-card,
  .focus-card:hover,
  .focus-icon,
  .focus-link,
  .focus-link:hover {
    transition: none;
    transform: none;
  }

  .focus-link::after {
    transition: none;
  }
}

/* CONTACT FORM */
.contact-box {
  background: var(--card-bg);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  height: auto;
  min-height: 400px;
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.contact-box label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-size: 1rem;
  font-family: var(--font-primary);
}

.contact-box input,
.contact-box textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--input-bg);
  color: var(--text-primary);
  transition: all 0.2s ease;
  font-size: 1rem;
  font-family: var(--font-primary);
  width: 100%;
  box-sizing: border-box;
}

.contact-box input:focus,
.contact-box textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.1);
  transform: translateY(-2px);
}

.contact-box textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-box button {
  padding: 14px 32px;
  background: var(--accent-color);
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
  width: 100%;
  font-family: var(--font-primary);
}

.contact-box button:hover {
  background: #0088cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 170, 255, 0.3);
}

/* COMMITTEE GRID */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  margin-top: 40px;
}

.member-card {
  background: var(--card-bg);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #0088cc);
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.member-card h3 {
  margin: 0 0 8px 0;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.member-card p {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
  font-family: var(--font-primary);
}

/* PROJECT LEAD CARD */
.project-lead-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
}

.project-lead-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 170, 255, 0.22);
  border-color: var(--accent-color);
}

.project-lead-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: transform 0.35s ease;
}

.project-lead-card:hover img {
  transform: scale(1.08);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* HACKATHON LAYOUT */
.hackathon-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Lift-up hover effect for seminar cards */
.seminar-card.reveal-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.seminar-card.reveal-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 170, 255, 0.25);
  border-color: var(--accent-color);
}

.seminar-card.reveal-card img {
  transition: transform 0.2s ease;
}

.seminar-card.reveal-card:hover img {
  transform: scale(1.05);
}

.btn-sm.reminder-active {
  background-color: #00ff88;
  color: #000;
  cursor: default;
}

/* LEADERBOARD PREVIEW */
.leaderboard-preview {
  padding: 100px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.leaderboard-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.03) 0%, transparent 60%);
  animation: rotateHero 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.lb-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.lb-main {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.lb-header {
  display: grid;
  grid-template-columns: 0.5fr 2fr 1fr;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-primary);
}

.text-right {
  text-align: right;
}

.lb-row {
  display: grid;
  grid-template-columns: 0.5fr 2fr 1fr;
  padding: 25px 30px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  cursor: pointer;
  min-height: 60px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.lb-row:hover {
  background: rgba(0, 170, 255, 0.05);
  transform: scale(1.01);
  z-index: 5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.lb-row:active {
  background: rgba(0, 170, 255, 0.08);
  transform: scale(0.99);
  transition:
    transform 0.1s ease,
    background 0.1s ease;
}

@media (hover: hover) and (pointer: fine) {
  .lb-row:hover {
    background: rgba(0, 170, 255, 0.05);
    transform: scale(1.01);
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
}

@media (hover: none) and (pointer: coarse) {
  .lb-row {
    padding: 20px 30px;
    min-height: 70px;
  }

  .lb-row:active {
    background: rgba(0, 170, 255, 0.1);
    transform: scale(0.98);
  }

  .lb-row.touch-active {
    background: rgba(0, 170, 255, 0.12);
    box-shadow: inset 0 0 0 2px rgba(0, 170, 255, 0.2);
  }
}

.lb-rank-badge {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
}

.rank-1 .lb-rank-badge {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.rank-2 .lb-rank-badge {
  color: #c0c0c0;
  background: rgba(192, 192, 192, 0.1);
  box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.rank-3 .lb-rank-badge {
  color: #cd7f32;
  background: rgba(205, 127, 50, 0.1);
  box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

.lb-user-info {
  display: flex;
  flex-direction: column;
}

.lb-username {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.lb-stats {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
  font-family: var(--font-primary);
}

.lb-league-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
  display: inline-block;
  font-family: var(--font-primary);
}

.lb-xp-val {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--accent-color);
}

.lb-loader {
  padding: 40px;
  text-align: center;
  color: var(--text-secondary);
  animation: blink 1.5s infinite;
  font-family: var(--font-primary);
}

.lb-footer-enhanced {
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--border-color);
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: var(--font-primary);
}

.lb-scoring-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.scoring-item {
  background: rgba(0, 170, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 170, 255, 0.2);
  font-family: var(--font-primary);
}

.league-system {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sys-header {
  margin: 0 0 15px;
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  font-family: var(--font-primary);
}

.league-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.league-card:active {
  transform: translateX(5px);
  background: var(--bg-secondary);
  transition:
    transform 0.1s ease,
    background 0.1s ease;
}

@media (hover: hover) and (pointer: fine) {
  .league-card:hover {
    transform: translateX(10px);
  }
}

@media (hover: none) and (pointer: coarse) {
  .league-card {
    padding: 18px;
    min-height: 70px;
  }

  .league-card:active {
    transform: translateX(8px) scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

.league-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--bg-primary);
  flex-shrink: 0;
}

.league-info h4 {
  margin: 0 0 5px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-heading);
}

.league-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-family: var(--font-primary);
}

.xp-req {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-left: 10px;
  border: 1px solid var(--border-color);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-primary);
}

.gold {
  border-left: 4px solid #ffd700;
}

.gold .league-icon {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.silver {
  border-left: 4px solid #c0c0c0;
}

.silver .league-icon {
  color: #c0c0c0;
  background: rgba(192, 192, 192, 0.1);
}

.bronze {
  border-left: 4px solid #cd7f32;
}

.bronze .league-icon {
  color: #cd7f32;
  background: rgba(205, 127, 50, 0.1);
}

.rookie {
  border-left: 4px solid #00aaff;
}

.rookie .league-icon {
  color: #00aaff;
  background: rgba(0, 170, 255, 0.1);
}

.lb-footer {
  margin-top: 30px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  opacity: 0.7;
  font-family: var(--font-primary);
}

/* NEW COMPREHENSIVE FOOTER STYLES - FIXED WIDTH */
.site-footer {
  background: linear-gradient(135deg, var(--footer-bg) 0%, var(--footer-bg-secondary) 100%);
  color: var(--footer-text);
  padding: 4rem 0 0;
  margin-top: auto;
  border-top: 1px solid var(--footer-border);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  animation: shimmer 3s ease-in-out infinite;
}

.footer-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  animation: slideUpFade 0.8s ease-out;
  box-sizing: border-box;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  margin-top: 15px;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.footer-logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: colorShift 4s ease-in-out infinite;
  font-family: var(--font-heading);
}

.footer-description {
  line-height: 1.6;
  color: var(--footer-text-secondary);
  margin: 0;
  font-size: 0.95rem;
  font-family: var(--font-primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--social-bg);
  border-radius: 12px;
  color: var(--social-icon);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--social-border);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: var(--social-bg-hover);
  color: var(--social-icon-hover);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: slideUpFade 0.8s ease-out 0.4s both;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation: slideUpFade 0.8s ease-out 0.4s both;
}

.link-group-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--footer-heading);
  position: relative;
  padding-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.link-group-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.2s ease;
}

.link-group:hover .link-group-title::after {
  width: 50px;
}

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

.link-list li {
  margin-bottom: 0.4rem;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.link-list li:hover {
  transform: translateX(5px);
}

.link-list a {
  color: var(--footer-link);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  display: block;
  padding: 0.15rem 0;
  position: relative;
  font-family: var(--font-primary);
}

.link-list a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.2s ease;
}

.link-list a:hover {
  color: var(--footer-link-hover);
  padding-left: 0.5rem;
}

.link-list a:hover::before {
  width: 100%;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideInRight 0.8s ease-out 0.6s both;
}

.newsletter-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--footer-heading);
  font-family: var(--font-heading);
}

.newsletter-description {
  font-size: 0.85rem;
  color: var(--footer-text-secondary);
  line-height: 1.4;
  margin: 0;
  font-family: var(--font-primary);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.input-group {
  display: flex;
  background: var(--input-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--input-border);
  transition: all 0.2s ease;
  position: relative;
}

.input-group:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.newsletter-input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  color: var(--input-text);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
  font-family: var(--font-primary);
}

.newsletter-input::placeholder {
  color: var(--input-placeholder);
  transition: color 0.2s ease;
}

.newsletter-input:focus::placeholder {
  color: transparent;
}

.newsletter-btn {
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}

.newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.newsletter-btn:hover::before {
  left: 100%;
}

.newsletter-btn:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--footer-text-secondary);
  margin: 0;
  line-height: 1.4;
  font-family: var(--font-primary);
}

.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding: 1.5rem 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.8s ease-out 0.8s both;
  box-sizing: border-box;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0 2rem;
  box-sizing: border-box;
}

.copyright {
  font-size: 0.9rem;
  color: var(--footer-text-secondary);
  margin: 0;
  font-family: var(--font-primary);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bottom-link {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
  padding: 0.3rem 0;
  font-family: var(--font-primary);
}

.bottom-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.2s ease;
}

.bottom-link:hover {
  color: var(--footer-link-hover);
}

.bottom-link:hover::after {
  width: 100%;
}

.separator {
  color: var(--footer-text-secondary);
  font-size: 0.9rem;
  font-family: var(--font-primary);
}

@media (hover: none) and (pointer: coarse) {
  .btn-cyber,
  .btn-primary,
  .btn-secondary,
  .btn-hollow,
  .social-link,
  .link-list a,
  .bottom-link {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seminar-card.reveal-card:hover,
  .project-lead-card:hover,
  .feature-card:hover,
  .member-card:hover {
    transform: none !important;
  }

  .seminar-card.reveal-card:active,
  .project-lead-card:active,
  .feature-card:active,
  .member-card:active {
    transform: scale(0.98) !important;
    opacity: 0.9;
    transition:
      transform 0.1s ease,
      opacity 0.1s ease;
  }

  .nav-links a {
    padding: 14px 20px;
    min-height: 44px;
  }

  .link-list a,
  .bottom-link {
    padding: 8px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

.lb-row,
.seminar-card,
.btn-primary,
.btn-secondary,
.nav-links a,
.hamburger,
.theme-label,
.social-link {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.lb-row:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-links a:focus-visible,
.theme-label:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

@keyframes touch-ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.touch-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.3);
  transform: scale(0);
  animation: touch-ripple 0.6s linear;
  pointer-events: none;
}

@keyframes touch-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

.lb-row.touch-feedback {
  animation: touch-pulse 0.3s ease;
}

/* ANIMATIONS */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes colorShift {
  0%,
  100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(10deg);
  }
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.footer-brand:hover,
.footer-links:hover,
.footer-newsletter:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

@media (max-width: 1200px) {
  .committee-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 2rem 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0 2rem;
    margin-bottom: 1.2rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .committee-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, auto);
  }

  .contact-box {
    max-width: 700px;
    padding: 25px 35px;
  }

  .navbar {
    padding: 15px 30px;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .lb-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
    padding: 12px 18px;
    margin: 0 10px;
    width: calc(100% - 20px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .navbar.scrolled {
    padding: 10px 18px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .hero {
    padding: 160px 20px 100px;
  }

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

  .hero p {
    font-size: 1.2rem;
  }

  .content h2 {
    font-size: 2rem;
  }

  .contact-box {
    max-width: 600px;
    padding: 20px 30px;
    margin: 0 20px;
  }

  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, auto);
    gap: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .lb-header {
    grid-template-columns: 40px 1fr 100px;
    font-size: 0.7rem;
    padding: 15px 20px;
  }

  .lb-row {
    grid-template-columns: 40px 1fr 100px;
    padding: 15px 20px;
  }

  .lb-username {
    font-size: 1rem;
  }

  .lb-xp-val {
    font-size: 1rem;
  }

  .site-footer {
    padding: 1.5rem 0 0;
  }

  .focus-areas {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
  }

  .focus-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    text-align: center;
    z-index: 1;
    transition: all 0.3s ease;
  }

  .focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
    z-index: 10;
  }

  .focus-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 170, 255, 0.1);
    border-radius: 50%;
  }

  .focus-card i {
    font-size: 1.8rem;
  }

  .focus-card h3 {
    margin: 0 0 15px 0;
    color: var(--text-primary);
    font-size: 1.4rem;
    font-family: var(--font-heading);
  }

  .focus-card p {
    margin: 15px 0;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    font-family: var(--font-primary);
  }

  .focus-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
  }

  .focus-link:hover {
    color: #0088cc;
    margin-left: 5px;
  }

  .focus-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 1rem;
  }

  .focus-footer .cyber-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
  }

  .focus-footer .cyber-link:hover {
    text-decoration: underline;
  }

  footer {
    all: unset;
    display: block;
  }

  .seminar-card.reveal-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 170, 255, 0.25);
    border-color: var(--accent-color);
  }

  .link-group-title {
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }
}

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

  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 2rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    padding: 0 1rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .copyright,
  .bottom-link {
    font-size: 0.8rem;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .footer-description {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .social-links {
    justify-content: center;
    gap: 0.75rem;
  }

  .social-link {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .input-group {
    flex-direction: column;
  }

  .newsletter-btn {
    border-radius: 0 0 10px 10px;
    padding: 0.75rem 0.85rem;
  }

  .hero {
    padding: 140px 20px 80px;
  }

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

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

  .committee-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(15, auto);
  }

  .member-card {
    padding: 20px 15px;
    min-height: 100px;
  }

  .contact-box {
    padding: 20px;
    margin: 0 15px;
  }

  .contact-box input,
  .contact-box textarea {
    padding: 10px 14px;
  }

  .contact-box button {
    padding: 12px 24px;
  }

  .navbar {
    padding: 10px 15px;
    margin: 0 5px;
    width: calc(100% - 10px);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo span {
    font-size: 18px;
  }

  .theme-label {
    width: 55px;
    height: 28px;
  }

  .toggle-thumb {
    width: 22px;
    height: 22px;
  }

  .nav-links {
    top: 70px;
    left: 8px;
    right: 8px;
    max-height: calc(100vh - 120px);
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 8px;
    margin: 10px auto;
    width: calc(100% - 20px);
    max-width: 380px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.3),
      0 0 1px rgba(255, 255, 255, 0.5) inset;
  }

  .navbar.scrolled {
    padding: 6px;
    border-radius: 35px;
    box-shadow:
      0 25px 70px rgba(0, 0, 0, 0.4),
      0 0 1px rgba(255, 255, 255, 0.5) inset;
  }

  .logo {
    padding: 4px 8px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-links a:hover,
  .nav-links .active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .theme-label,
  .toggle-thumb,
  .sun-icon,
  .moon-icon {
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    animation: none !important;
  }

  .theme-switch:checked + .theme-label .toggle-thumb {
    transition: none !important;
    -webkit-transition: none !important;
  }

  .leaderboard-preview::before {
    animation: none !important;
  }

  .footer-logo img {
    animation: none !important;
  }

  .brand-name {
    animation: none !important;
  }
}

.focus-footer {
  text-align: center;
  margin-top: 40px;
  color: var(--text-secondary);
  font-size: 1rem;
  font-family: var(--font-primary);
}

.focus-footer .cyber-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
}

.focus-footer .cyber-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.focus-footer .cyber-link:hover {
  color: var(--accent-color);
  text-decoration: none;
  background: rgba(0, 170, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.focus-footer .cyber-link:hover::after {
  width: 100%;
}

[data-theme='dark'] .focus-footer .cyber-link {
  color: var(--neon-cyan);
}

[data-theme='dark'] .focus-footer .cyber-link:hover {
  background: rgba(0, 170, 255, 0.15);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
}

/* ACCESSIBILITY: SKIP TO CONTENT LINK */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1001;
  transition:
    top 0.3s ease-in-out,
    background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  border: none;
  outline: none;
  font-family: var(--font-primary);
}

.skip-to-content:focus {
  top: 80px;
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

.skip-to-content:hover {
  background: #0088cc;
}

*:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

main:focus {
  outline: none;
}

.skip-to-content.visible {
  top: 80px !important;
  opacity: 1 !important;
  transform: translateX(-50%) scale(1.05) !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-contrast: high) {
  .skip-to-content {
    border: 3px solid #000;
    background: #fff;
    color: #000;
  }

  .skip-to-content:focus {
    outline: 3px solid #000;
    outline-offset: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .skip-to-content {
    transition: none;
  }

  main {
    scroll-behavior: auto;
  }
}

/* FEEDBACK WIDGET */
#feedback-widget {
  position: fixed !important;
  bottom: 120px !important;
  right: 28px !important;
  z-index: 1005 !important;
  transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#feedback-widget.scrolled {
  bottom: 150px !important;
}

#feedback-toggle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(180deg, #007bff, #0056b3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1002;
}

#feedback-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

#feedback-toggle:focus {
  outline: 3px solid rgba(0, 170, 255, 0.18);
  transform: scale(1.1);
}

#feedback-toggle:active {
  transform: scale(0.98);
}

#feedback-panel {
  width: 360px;
  max-width: calc(100vw - 40px);
  max-height: 60vh;
  overflow-y: auto;
  background: var(--card-bg);
  color: var(--text-primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  padding: 12px;
  transform-origin: bottom right !important;
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  border: 1px solid var(--border-color);
  position: absolute !important;
  bottom: 70px !important;
  right: 0 !important;
  z-index: 1004 !important;
}

#feedback-widget.open #feedback-panel {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.btn-sm {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-sm:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
}

.btn-sm:disabled,
.btn-sm.reminder-active {
  background-color: #00ff88;
  color: #000;
  cursor: default;
}

.ff-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ff-header h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: var(--accent-color);
  font-family: var(--font-heading);
}

.ff-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.ff-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

#feedback-form label {
  display: block;
  font-size: 12px;
  margin: 8px 0 4px;
  color: var(--text-secondary);
  font-family: var(--font-primary);
}

#feedback-form input,
#feedback-form textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--input-text);
  font-size: 13px;
  box-sizing: border-box;
  transition: all 0.2s ease;
  font-family: var(--font-primary);
}

#feedback-form input:focus,
#feedback-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.1);
}

#feedback-form textarea {
  resize: vertical;
  min-height: 84px;
}

.ff-rating {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: var(--font-primary);
}

#star-rating {
  display: flex;
  gap: 5px;
}

#star-rating .star {
  background: transparent;
  border: none;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

#star-rating .star:hover,
#star-rating .star.selected {
  color: #ffd166;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  transform: scale(1.2);
}

.ff-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.btn-cyber.small {
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 8px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-primary);
}

.btn-cyber.small:hover {
  background: #0088cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 170, 255, 0.3);
}

.btn-cyber.small:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-link {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-primary);
}

.btn-link:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.05);
}

.ff-status {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-family: var(--font-primary);
}

.scroll-to-top,
#back-to-top {
  bottom: 90px !important;
}

@media (max-width: 420px) {
  #feedback-widget {
    left: 12px !important;
    bottom: 12px !important;
    right: auto !important;
  }

  #feedback-panel {
    bottom: 84px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
  }

  .scroll-to-top,
  #back-to-top {
    bottom: 120px !important;
  }

  #feedback-panel {
    bottom: 84px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #feedback-panel,
  #feedback-toggle,
  #star-rating .star,
  .btn-cyber.small,
  .ff-close {
    transition: none !important;
    animation: none !important;
  }
}

/* Ensure all text elements use consistent fonts */
p,
li,
span,
a,
button,
input,
textarea,
label,
div,
section,
article,
aside {
  font-family: var(--font-primary);
}

.about-content,
.event-content,
.team-content,
.contact-content {
  font-family: var(--font-primary) !important;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6,
.event-content h1,
.event-content h2,
.event-content h3,
.event-content h4,
.event-content h5,
.event-content h6,
.team-content h1,
.team-content h2,
.team-content h3,
.team-content h4,
.team-content h5,
.team-content h6,
.contact-content h1,
.contact-content h2,
.contact-content h3,
.contact-content h4,
.contact-content h5,
.contact-content h6 {
  font-family: var(--font-heading) !important;
}

.terminal-header,
.code-snippet,
pre,
code,
.lb-xp-val,
.font-mono {
  font-family: var(--font-mono) !important;
}

/* Electronic Signal Background */
.signal-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bolt-emitter {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
  opacity: 0;
}

.bolt-emitter.left {
  left: 10%;
  animation: boltRise 4s infinite ease-in;
}

.bolt-emitter.right {
  right: 10%;
  animation: boltRise 4s infinite ease-in 2s;
}

@keyframes boltRise {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
    filter: brightness(2);
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.signal-line.horizontal {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  animation: signalMove 3s infinite linear;
}

@keyframes signalMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.neon-text {
  color: var(--text-primary);
  text-shadow:
    0 0 5px var(--accent-color),
    0 0 10px var(--accent-color);
  font-family: var(--font-primary);
}

.terminal-header {
  font-family: var(--font-hud);
  border-left: 3px solid var(--accent-color);
  padding-left: 10px;
  text-transform: uppercase;
}

.input-group-cyber {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--social-bg);
  border-radius: 12px;
  color: var(--social-icon);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--social-border);
  position: relative;
  overflow: hidden;
}

.input-group-cyber {
  display: flex;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
  padding: 5px;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  font-family: var(--font-primary);
}

.input-group-cyber:focus-within {
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
  border-color: var(--accent-color);
}

:root:not([data-theme='dark']) .project-mainframe {
  background: #f8fafc;
}

:root:not([data-theme='dark']) .section-header-glitch {
  color: #0f172a;
  text-shadow: none;
}

:root:not([data-theme='dark']) .section-header-glitch::before,
:root:not([data-theme='dark']) .section-header-glitch::after {
  display: none;
}

:root:not([data-theme='dark']) .project-matrix {
  gap: 20px;
}

:root:not([data-theme='dark']) .proj-card {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

:root:not([data-theme='dark']) .proj-content {
  background: #ffffff;
  padding: 14px 16px;
  border-top: 1px solid #e5e7eb;
}

:root:not([data-theme='dark']) .proj-content h3 {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

:root:not([data-theme='dark']) .proj-content p {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  :root:not([data-theme='dark']) .proj-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  }
}

.newsletter-feedback {
  margin-top: 10px;
  min-height: 22px;
}

.feedback-message {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
  display: none;
}

.feedback-message.success {
  display: block;
  color: #4ade80;
}

.feedback-message.error {
  display: block;
  color: #f97373;
}

:root:not([data-theme='dark']) .quick-stats-widget {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  font-family: 'Inter', sans-serif;
}

:root:not([data-theme='dark']) .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

:root:not([data-theme='dark']) .widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

:root:not([data-theme='dark']) .widget-title i {
  margin-right: 8px;
  color: #3b82f6;
}

:root:not([data-theme='dark']) .widget-refresh {
  background: #ffffff;
  border: 1px solid #d1d5db;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  color: #0f172a;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

:root:not([data-theme='dark']) .widget-refresh:hover {
  background: #f1f5f9;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

:root:not([data-theme='dark']) .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

:root:not([data-theme='dark']) .stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

:root:not([data-theme='dark']) .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

:root:not([data-theme='dark']) .stat-icon {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-bottom: 8px;
}

:root:not([data-theme='dark']) .stat-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

:root:not([data-theme='dark']) .stat-label {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 6px;
}

:root:not([data-theme='dark']) .stat-trend {
  font-size: 0.75rem;
  color: #64748b;
}

:root:not([data-theme='dark']) .trend-up {
  color: #16a34a;
}

:root:not([data-theme='dark']) .trend-down {
  color: #dc2626;
}

:root:not([data-theme='dark']) .trend-neutral {
  color: #64748b;
}

:root:not([data-theme='dark']) .recent-activity {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}

:root:not([data-theme='dark']) .activity-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}

:root:not([data-theme='dark']) .activity-title i {
  margin-right: 6px;
  color: #3b82f6;
}

:root:not([data-theme='dark']) .activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

:root:not([data-theme='dark']) .activity-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

:root:not([data-theme='dark']) .activity-item:last-child {
  border-bottom: none;
}

:root:not([data-theme='dark']) .activity-icon {
  font-size: 1.2rem;
  color: #3b82f6;
  flex-shrink: 0;
}

:root:not([data-theme='dark']) .activity-content p {
  font-size: 0.85rem;
  color: #0f172a;
  margin: 0;
}

:root:not([data-theme='dark']) .activity-time {
  font-size: 0.75rem;
  color: #64748b;
}

@media (max-width: 320px) {
  .site-footer {
    padding: 0.75rem 0 0;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-description {
    font-size: 0.8rem;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }
}

/* Compatibility adjustments for share button */
.scroll-to-top {
  bottom: 90px !important;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 80px !important;
  }
}

.modal-overlay {
  z-index: 2000;
}

.leaderboard-preview .share-button-container {
  bottom: 100px;
}

.footer-container,
.footer-content,
.social-links,
.social-link {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* PRINT-FRIENDLY STYLES */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt !important;
    line-height: 1.4 !important;
  }

  .navbar,
  .hud-sidebar,
  .hero-buttons,
  .btn-primary,
  .btn-secondary,
  .btn-cyber,
  .btn-hollow,
  .theme-toggle,
  .hamburger,
  .footer-newsletter,
  .newsletter-form,
  .input-group,
  .search-box,
  .export-btn,
  .btn-sm,
  .btn-terminal,
  .icon-link,
  .btn-glitch-filter,
  .switch,
  .toggle-wrapper,
  .blink-dot,
  .live-indicator,
  .card-actions,
  .action-buttons,
  .feedback-widget,
  .feedback-panel,
  .feedback-toggle,
  .nav-links,
  .theme-label,
  .skip-to-content,
  .back-to-top,
  .btn-refresh,
  .btn-wobble,
  .filter-container,
  .filter-tag,
  .reset-filters,
  .filter-results,
  .filter-dropdown,
  .filter-mobile-toggle,
  .panel-header,
  .panel-line,
  .quick-filter-tags,
  .control-panel-section,
  .featured-actions,
  .scanner-line,
  .grid-overlay,
  .scene-3d,
  .cube-wrapper,
  .inner-core,
  .chart-bars,
  .chart-bar,
  .bar-container,
  .bar-fill,
  .v-bar-bg,
  .v-bar-fill,
  .graph-panel,
  .stage-3d-panel,
  .physics-panel,
  .control-text,
  .leaderboard-preview::before,
  .site-footer::before,
  #cursor-highlight,
  .typing-indicator,
  .blink,
  .wobbling,
  .glitch-overlay,
  .scan-line,
  .card-border-top,
  .glitch-img,
  .glitch-text::before,
  .glitch-text::after,
  .hero-glitch::before,
  .hero-glitch::after,
  .section-header-glitch::before,
  .section-header-glitch::after {
    display: none !important;
  }

  .main-content,
  .dashboard-container,
  .hud-main {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    display: block !important;
  }

  .dashboard-container {
    display: block !important;
    min-height: auto !important;
  }

  .hud-main {
    padding: 20px !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid !important;
    page-break-inside: avoid !important;
    color: #000 !important;
  }

  p,
  li {
    page-break-inside: avoid !important;
  }

  a {
    text-decoration: underline !important;
    color: #000 !important;
  }

  a[href^='http']::after {
    content: ' (' attr(href) ')';
    font-size: 90%;
    color: #666;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid !important;
    filter: grayscale(100%) !important;
  }

  ul,
  ol {
    page-break-before: avoid !important;
    page-break-inside: avoid !important;
  }

  table {
    page-break-inside: auto !important;
    border-collapse: collapse !important;
    width: 100% !important;
    border: 1px solid #000 !important;
  }

  tr {
    page-break-inside: avoid !important;
    page-break-after: auto !important;
  }

  td,
  th {
    border: 1px solid #000 !important;
    padding: 8px !important;
    background: #fff !important;
    color: #000 !important;
  }

  th {
    background-color: #f0f0f0 !important;
    font-weight: bold !important;
  }

  .leaderboard-preview {
    border: 1px solid #000 !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    break-inside: avoid !important;
  }

  .lb-main {
    box-shadow: none !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
  }

  .lb-header {
    background: #f0f0f0 !important;
    color: #000 !important;
    border-bottom: 2px solid #000 !important;
  }

  .lb-row {
    border-bottom: 1px solid #ccc !important;
    page-break-inside: avoid !important;
  }

  .lb-rank-badge {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    box-shadow: none !important;
  }

  .rank-1 .lb-rank-badge {
    border: 2px solid #000 !important;
    font-weight: bold !important;
  }

  .lb-username {
    font-weight: bold !important;
  }

  .lb-xp-val {
    font-weight: bold !important;
  }

  .league-system {
    border: 1px solid #000 !important;
    padding: 15px !important;
    margin: 20px 0 !important;
    break-inside: avoid !important;
  }

  .league-card {
    border-left: 4px solid #000 !important;
    border: 1px solid #ccc !important;
    margin-bottom: 10px !important;
  }

  .league-icon {
    background: #f0f0f0 !important;
    color: #000 !important;
    border: 1px solid #000 !important;
  }

  .project-matrix-section {
    break-inside: avoid !important;
  }

  .projects-grid {
    display: block !important;
  }

  .cyber-card {
    border: 1px solid #000 !important;
    margin-bottom: 20px !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    box-shadow: none !important;
  }

  .card-content {
    padding: 15px !important;
  }

  .card-header {
    border-bottom: 1px solid #ccc !important;
    margin-bottom: 10px !important;
  }

  .status-dot {
    display: inline-block !important;
    border: 1px solid #000 !important;
    background: #fff !important;
    width: 10px !important;
    height: 10px !important;
  }

  .tech-stack-terminal span {
    border: 1px solid #000 !important;
    background: #f0f0f0 !important;
    color: #000 !important;
  }

  .table-panel {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }

  .hud-table {
    border: 1px solid #000 !important;
  }

  .hud-table th {
    background: #f0f0f0 !important;
    border-bottom: 2px solid #000 !important;
  }

  .hud-table td {
    border-bottom: 1px solid #ccc !important;
  }

  .status-badge {
    border: 1px solid #000 !important;
    background: #fff !important;
    color: #000 !important;
    padding: 2px 6px !important;
  }

  .grid,
  .flex,
  .bento-grid,
  .hackathon-layout,
  .seminar-grid,
  .project-matrix,
  .functional-grid,
  .footer-content,
  .footer-links,
  .committee-grid,
  .features-grid,
  .roster-grid,
  .comparison-charts,
  .comparison-stats,
  .profile-content-grid,
  .discipline-track-container {
    display: block !important;
  }

  .grid > *,
  .flex > *,
  .bento-grid > *,
  .hackathon-layout > *,
  .seminar-grid > *,
  .project-matrix > *,
  .functional-grid > *,
  .footer-content > *,
  .footer-links > *,
  .committee-grid > *,
  .features-grid > *,
  .roster-grid > *,
  .comparison-charts > *,
  .comparison-stats > *,
  .profile-content-grid > *,
  .discipline-track-container > * {
    width: 100% !important;
    margin-bottom: 20px !important;
    page-break-inside: avoid !important;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid !important;
  }

  img {
    page-break-inside: avoid !important;
    page-break-after: avoid !important;
  }

  table,
  figure {
    page-break-inside: avoid !important;
  }

  ul,
  ol,
  dl {
    page-break-before: avoid !important;
  }

  .container,
  .content,
  .hud-main,
  .main-content {
    margin: 0 !important;
    padding: 10px !important;
    max-width: none !important;
  }

  .site-footer {
    border-top: 2px solid #000 !important;
    margin-top: 40px !important;
    padding-top: 20px !important;
  }

  .footer-description {
    font-size: 10pt !important;
  }

  @page {
    margin: 2cm;
    @top-center {
      content: 'Pixel Phantoms';
      font-size: 10pt;
      font-weight: bold;
    }
    @bottom-center {
      content: 'Page ' counter(page);
      font-size: 10pt;
    }
  }

  .hack-main-card,
  .seminar-card,
  .track-card,
  .achievement-card,
  .member-card,
  .feature-card,
  .info-card,
  .profile-card {
    page-break-inside: avoid !important;
  }

  .timestamp,
  .activity-time,
  .sem-date {
    font-style: italic !important;
    color: #666 !important;
  }

  .code-snippet-container {
    border: 1px solid #000 !important;
    page-break-inside: avoid !important;
  }

  .code-content {
    font-family: monospace !important;
    font-size: 10pt !important;
    white-space: pre-wrap !important;
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
    padding: 10px !important;
  }

  .print-only {
    display: block !important;
  }

  .no-print {
    display: none !important;
  }
}

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

@keyframes slideInLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

.theme-status-indicator {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  opacity: 0.9;
  backdrop-filter: blur(10px);
  animation: slideInLeft 0.3s ease;
}

.theme-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.theme-toggle-feedback {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--card-bg);
  color: var(--text-primary);
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  border: 2px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 768px) {
  .theme-status-indicator {
    bottom: 80px;
    left: 10px;
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

:root:not([data-theme='dark']) .activity-time {
  font-size: 0.75rem;
  color: #64748b;
}

/*Global Page Loader Overlay*/

.global-loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  backdrop-filter: blur(3px);
}

.global-loader.hidden {
  display: none;
}

.loader-spinner {
  width: 45px;
  height: 45px;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-text {
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

@media (max-width: 480px) {
  .theme-status-indicator {
    display: none;
  }
}
