/*
Theme Name: Hydro
Theme URI: https://projecthydro.org/
Author: Custom Development
Author URI: https://projecthydro.org/
Description: A custom WordPress theme recreating the visual design of Project Hydro - a dark-mode dashboard UI with glassmorphism effects, crypto ticker, and Web3 aesthetic.
Version: 1.0.3
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hydro
Tags: dark-mode, dashboard, crypto, web3, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --bg-main: #0b1220;
  --bg-card: #121b2f;
  --bg-card-hover: #1a2540;
  --accent-blue: #3f70ee;
  --accent-cyan: #2dd4bf;
  --accent-indigo: #6366f1;
  --text-main: #e5e7eb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --gradient-primary: linear-gradient(135deg, #3f70ee 0%, #2dd4bf 50%, #6366f1 100%);
  --gradient-card: linear-gradient(135deg, rgba(63, 112, 238, 0.1) 0%, rgba(45, 212, 191, 0.1) 50%, rgba(99, 102, 241, 0.1) 100%);
  --drop-color: rgba(63, 112, 238, 0.2);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-blue);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ============================================
   Crypto Ticker Bar
   ============================================ */
.ticker-bar {
  background: var(--bg-card);
  border-bottom: 1px solid rgba(63, 112, 238, 0.2);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.ticker-wrapper {
  display: flex;
  gap: 1.5rem;
  animation: ticker-scroll 60s linear infinite;
  width: fit-content;
}

.ticker-wrapper:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(63, 112, 238, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(63, 112, 238, 0.2);
  white-space: nowrap;
  transition: all 0.3s ease;
  min-width: 200px;
}

.ticker-item:hover {
  background: rgba(63, 112, 238, 0.2);
  border-color: rgba(63, 112, 238, 0.4);
  transform: translateY(-2px);
}

.ticker-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.ticker-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ticker-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-main);
}

.ticker-price {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.ticker-change {
  font-size: 0.75rem;
  font-weight: 600;
}

.ticker-change.positive {
  color: #10b981;
}

.ticker-change.negative {
  color: #ef4444;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid rgba(63, 112, 238, 0.2);
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(10px);
  background: rgba(18, 27, 47, 0.95);
}

@media (max-width: 768px) {
  .site-header {
    z-index: 100;
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* Desktop: Hide burger, show menu */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .nav-menu {
    display: flex !important;
  }
  
  .main-navigation {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    padding: 0 !important;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: var(--text-main);
  background: rgba(63, 112, 238, 0.1);
}

.nav-menu a.active {
  color: var(--accent-cyan);
  background: rgba(45, 212, 191, 0.1);
}

/* Mobile Menu Toggle - styled in mobile section */
.mobile-menu-toggle {
  display: none;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  padding: 4rem 0;
  background: var(--gradient-card);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(63, 112, 238, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img,
.hero-image svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(63, 112, 238, 0.3));
}

.hero-image svg {
  display: block;
  margin: 0 auto;
}

/* ============================================
   Dashboard Cards Section
   ============================================ */
.dashboard-section {
  padding: 4rem 0;
}

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

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 112, 238, 0.4);
  box-shadow: var(--shadow-lg);
}

.dashboard-card:hover::before {
  opacity: 1;
}

.dashboard-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.dashboard-card-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.dashboard-card-unit {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.dashboard-card-change {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.dashboard-card-change.positive {
  color: #10b981;
}

.dashboard-card-change.negative {
  color: #ef4444;
}

/* ============================================
   News Section
   ============================================ */
.news-section {
  padding: 2rem 0 4rem;
}

.news-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.news-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 150px;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 112, 238, 0.4);
  box-shadow: var(--shadow-md);
  background: var(--bg-card-hover);
}

.news-card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card a:hover {
  color: inherit;
}

.news-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  flex: 1;
}

.news-card-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: auto;
}

/* ============================================
   Tech Page Styles
   ============================================ */
.tech-page {
  padding: 2rem 0;
}

.tech-section {
  margin-bottom: 3rem;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.tech-card:hover {
  border-color: rgba(63, 112, 238, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.tech-header {
  margin-bottom: 2rem;
}

.tech-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.tech-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.tech-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(63, 112, 238, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(63, 112, 238, 0.2);
}

.tech-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-stat-value {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-main);
}

.tech-stat-unit {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.tech-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tech-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(63, 112, 238, 0.2);
  border: 1px solid rgba(63, 112, 238, 0.4);
  border-radius: var(--radius-md);
  color: var(--accent-cyan);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tech-button:hover {
  background: rgba(63, 112, 238, 0.3);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 112, 238, 0.3);
}

.tech-button-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.tech-button-primary:hover {
  background: var(--gradient-primary);
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(63, 112, 238, 0.4);
}

.tech-content {
  margin-top: 1.5rem;
}

.tech-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tech-privacy {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

.tech-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.tech-downloads {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.tech-download-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-md);
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

.tech-download-link:hover {
  background: rgba(45, 212, 191, 0.2);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* Tech Page Icons & Visual Elements */
.keres-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.keres-wex-logo {
  width: 80px;
  height: 80px;
  --svg-color: var(--accent-cyan);
}

.keresverse-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  --svg-color: var(--text-main);
}

.keres-play-link {
  text-decoration: none;
  display: inline-block;
}

.tech-play-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.tech-play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(63, 112, 238, 0.4);
}

.tech-commit-badge-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.tech-commit-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(18, 27, 47, 0.8);
  border: 1px solid rgba(63, 112, 238, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-commit-badge-link:hover .tech-commit-badge {
  border-color: rgba(63, 112, 238, 0.5);
  background: rgba(18, 27, 47, 0.9);
  transform: translateY(-2px);
}

.commit-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.commit-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.commit-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.commit-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.commit-avatar svg {
  width: 100%;
  height: 100%;
}

.github-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.commit-username {
  font-size: 0.875rem;
  color: var(--accent-cyan);
  font-weight: 500;
}

.tech-icon-wrapper {
  margin-bottom: 1.5rem;
  text-align: center;
}

.tech-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
}

.token-tool-icon {
  width: 80px;
  height: 80px;
}

.metamask-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
}

.metamask-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.tech-crypto-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.crypto-icon-item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 112, 238, 0.1);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.crypto-icon-item:hover {
  background: rgba(63, 112, 238, 0.2);
  border-color: rgba(63, 112, 238, 0.4);
  transform: translateY(-2px);
}

.crypto-icon {
  width: 32px;
  height: 32px;
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
}

.google-play-link {
  background: #00D9FF !important;
  border-color: #00D9FF !important;
  color: white !important;
}

.google-play-link:hover {
  background: #00B8D4 !important;
  border-color: #00B8D4 !important;
}

.app-store-icon {
  width: 20px;
  height: 18px;
  flex-shrink: 0;
}

.google-play-link .app-store-icon {
  width: 18px;
  height: 20px;
}

.app-store-link .app-store-icon {
  --svg-color: white;
}

.privacy-link {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

.chain-alt {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.aegir-privacy-link {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.aegir-privacy-link:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

.tech-card {
  position: relative;
}

@media (max-width: 768px) {
  .tech-stats {
    grid-template-columns: 1fr;
  }

  .tech-actions {
    flex-direction: column;
  }

  .tech-button {
    width: 100%;
    text-align: center;
  }

  .tech-downloads {
    flex-direction: column;
  }

  .tech-download-link {
    width: 100%;
    text-align: center;
  }

  .tech-commit-badge {
    position: static;
    margin-bottom: 1.5rem;
  }

  .tech-crypto-icons {
    gap: 0.75rem;
  }

  .crypto-icon-item {
    width: 40px;
    height: 40px;
  }

  .crypto-icon {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   Page Content Section (for additional editable content)
   ============================================ */
.page-content-section {
  padding: 4rem 0;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-main);
  line-height: 1.7;
}

.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--text-main);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content h2 {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.page-content a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-content a:hover {
  color: var(--accent-cyan);
}

.page-content ul,
.page-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* ============================================
   Team Page Styles
   ============================================ */
.team-page {
  padding: 2rem 0;
}

.team-header-section {
  padding: 3rem 0 2rem;
  text-align: center;
}

.team-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.team-members-section {
  padding: 2rem 0 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member-card {
  background: var(--bg-card);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.team-member-card:hover {
  border-color: rgba(63, 112, 238, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(63, 112, 238, 0.1);
  border: 2px solid rgba(63, 112, 238, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
}

.team-member-initials {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.team-member-info {
  margin-top: 1rem;
}

.team-member-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.team-member-title {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(63, 112, 238, 0.1);
  border: 1px solid rgba(63, 112, 238, 0.3);
  border-radius: 50%;
  color: var(--accent-cyan);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  text-decoration: none;
}

.team-member-linkedin:hover {
  background: rgba(63, 112, 238, 0.2);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 112, 238, 0.3);
}

.team-member-linkedin svg {
  width: 18px;
  height: 18px;
}

.team-whitepaper-section {
  padding: 4rem 0;
  text-align: center;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.whitepaper-text {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.whitepaper-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.whitepaper-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(63, 112, 238, 0.2);
  border: 1px solid rgba(63, 112, 238, 0.4);
  border-radius: var(--radius-md);
  color: var(--accent-cyan);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whitepaper-link:hover {
  background: rgba(63, 112, 238, 0.3);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 112, 238, 0.3);
  color: var(--accent-blue);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .team-member-card {
    padding: 1rem;
  }

  .team-member-image {
    width: 100px;
    height: 100px;
  }

  .team-member-initials {
    font-size: 2rem;
  }

  .whitepaper-links {
    flex-direction: column;
    align-items: center;
  }

  .whitepaper-link {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* ============================================
   Roadmap Page Styles
   ============================================ */
.roadmap-page {
  padding: 2rem 0;
}

.roadmap-header-section {
  padding: 3rem 0 2rem;
  text-align: center;
}

.roadmap-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roadmap-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-items-section {
  padding: 2rem 0 4rem;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-item {
  background: var(--bg-card);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.roadmap-item:hover {
  border-color: rgba(63, 112, 238, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.roadmap-item-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.roadmap-quarter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(63, 112, 238, 0.3);
}

.roadmap-item-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex: 1;
}

.roadmap-item-content {
  color: var(--text-secondary);
  line-height: 1.7;
}

.roadmap-item-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.roadmap-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.roadmap-item-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.roadmap-item-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
}

.roadmap-item .card-row {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(63, 112, 238, 0.2);
}

.container-prog {
  width: 100%;
}

.progress1 {
  background-color: rgba(63, 112, 238, 0.1);
  border-radius: 20px;
  position: relative;
  height: 8px;
  width: 100%;
  overflow: hidden;
}

.progress-bar1 {
  background: var(--gradient-primary);
  border-radius: 20px;
  height: 100%;
  width: 0%;
  transition: width 0.6s ease;
  position: relative;
}

.progress-bar1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
  animation: progress-bar-stripes 1s linear infinite;
  border-radius: 20px;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1rem 0;
  }
}

.roadmap-footer-section {
  padding: 4rem 0;
  text-align: center;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.roadmap-footer-text {
  font-size: 1.25rem;
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .roadmap-timeline {
    gap: 2rem;
  }

  .roadmap-item {
    padding: 1.5rem;
  }

  .roadmap-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .roadmap-quarter {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .roadmap-item-title {
    width: 100%;
  }

  .roadmap-item-description {
    font-size: 1rem;
  }

  .roadmap-footer-text {
    font-size: 1.125rem;
  }
}

/* ============================================
   FAQ Page Styles
   ============================================ */
.faq-page {
  padding: 2rem 0;
}

.faq-header-section {
  padding: 3rem 0 2rem;
  text-align: center;
}

.faq-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.faq-items-section {
  padding: 2rem 0 4rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(63, 112, 238, 0.4);
  box-shadow: var(--shadow-lg);
}

.faq-item-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(63, 112, 238, 0.3);
}

.faq-question {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 0;
  flex: 1;
  color: var(--text-main);
  line-height: 1.4;
  padding-top: 0.5rem;
}

.faq-item-content {
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.faq-answer p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.faq-link-wrapper {
  margin-top: 1.5rem;
}

.faq-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(63, 112, 238, 0.2);
  border: 1px solid rgba(63, 112, 238, 0.4);
  border-radius: var(--radius-md);
  color: var(--accent-cyan);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-link:hover {
  background: rgba(63, 112, 238, 0.3);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(63, 112, 238, 0.3);
  color: var(--accent-blue);
}

@media (max-width: 768px) {
  .faq-list {
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .faq-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    min-width: 50px;
  }

  .faq-question {
    width: 100%;
    padding-top: 0;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

/* ============================================
   Exchanges Page Styles
   ============================================ */
.exchanges-page {
  padding: 2rem 0;
}

.exchanges-header-section {
  padding: 3rem 0 2rem;
  text-align: center;
}

.exchanges-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exchanges-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.exchanges-stats-section {
  padding: 2rem 0;
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(63, 112, 238, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-value.positive {
  color: #10b981;
  -webkit-text-fill-color: #10b981;
}

.stat-value.negative {
  color: #ef4444;
  -webkit-text-fill-color: #ef4444;
}

.stat-unit {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.stats-source {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
}

.exchanges-logos-section {
  padding: 4rem 0;
}

.exchanges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.exchange-item {
  width: 100%;
  max-width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.exchange-item:hover {
  border-color: rgba(63, 112, 238, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.exchange-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.exchange-link svg,
.exchange-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.exchange-link svg {
  --svg-color: var(--text-secondary);
}

.exchange-item:hover .exchange-link svg,
.exchange-item:hover .exchange-logo {
  filter: grayscale(0%) opacity(1);
}

.exchange-item:hover .exchange-link svg {
  --svg-color: var(--text-main);
}

.exchange-name-placeholder {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* Default Page Template Styles */
.default-page {
  padding: 4rem 0;
  min-height: 60vh;
}

.default-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.default-page .page-content-wrapper {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.default-page .entry-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.default-page .entry-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--text-main);
  line-height: 1.2;
}

.default-page .entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.default-page .entry-meta .meta-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.default-page .entry-author .author-name {
  color: var(--text-main);
  font-weight: 500;
}

.default-page .entry-date time {
  color: var(--text-main);
  font-weight: 500;
}

.default-page .entry-content {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.default-page .entry-content p {
  margin-bottom: 1.5rem;
}

.default-page .entry-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem 0;
  color: var(--text-main);
}

.default-page .entry-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: var(--text-main);
}

.default-page .entry-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--text-main);
}

.default-page .entry-content ul,
.default-page .entry-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.default-page .entry-content li {
  margin-bottom: 0.75rem;
}

.default-page .entry-content a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.default-page .entry-content a:hover {
  opacity: 0.8;
}

.default-page .page-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

@media (max-width: 768px) {
  .default-page {
    padding: 2rem 0;
  }
  
  .default-page .container {
    padding: 0 1rem;
  }
  
  .default-page .page-content-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .default-page .entry-title {
    font-size: 2rem;
  }
  
  .default-page .entry-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .exchanges-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
  }

  .exchange-item {
    height: 80px;
    padding: 1rem;
  }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 4rem 0;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63, 112, 238, 0.4);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(63, 112, 238, 0.2);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(63, 112, 238, 0.1);
  border: 1px solid rgba(63, 112, 238, 0.2);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(63, 112, 238, 0.2);
  border-color: rgba(63, 112, 238, 0.4);
  transform: translateY(-2px);
}

.social-link img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.footer-copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(63, 112, 238, 0.1);
    border: 1px solid rgba(63, 112, 238, 0.3);
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    z-index: 10001;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: rgba(63, 112, 238, 0.2);
    border-color: rgba(63, 112, 238, 0.5);
    outline: none;
  }

  .mobile-menu-toggle .burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 18px;
  }

  .mobile-menu-toggle .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile Navigation Menu */
  .nav-menu {
    display: none;
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: stretch !important;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background: #0b1220;
    z-index: 10000;
    padding: 1rem 1.5rem 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-sizing: border-box;
  }

  .main-navigation.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-navigation.active .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .main-navigation .nav-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .main-navigation .nav-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 1rem 1.25rem !important;
    color: #e5e7eb !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    background: rgba(26, 37, 64, 0.8) !important;
    border: 1px solid rgba(63, 112, 238, 0.4) !important;
    border-radius: var(--radius-md) !important;
    transition: all 0.3s ease !important;
  }

  .main-navigation .nav-menu li a:hover,
  .main-navigation .nav-menu li a:focus,
  .main-navigation.active .nav-menu li a:hover,
  .main-navigation.active .nav-menu li a:focus {
    background: rgba(63, 112, 238, 0.2) !important;
    border-color: rgba(63, 112, 238, 0.6) !important;
    color: #e5e7eb !important;
  }

  .main-navigation .nav-menu li a.active {
    color: #2dd4bf !important;
    background: rgba(45, 212, 191, 0.2) !important;
    border-color: #2dd4bf !important;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

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

  .hero-image {
    order: -1;
  }

  .hero-image img,
  .hero-image svg {
    max-width: 250px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .ticker-item {
    min-width: 180px;
  }
}

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

  .hero-section {
    padding: 2rem 0;
  }

  .dashboard-section,
  .news-section {
    padding: 2rem 0;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* ============================================
   WordPress Core Styles
   ============================================ */
.wp-block-group,
.wp-block-columns,
.wp-block-image {
  margin-bottom: 1.5rem;
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

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

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

