@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

:root {
  /* Color Palette */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --dark-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);

  --bg-primary: #0a0a0f;
  --bg-secondary: #13131a;
  --bg-card: rgba(26, 26, 36, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.05);

  --text-primary: #ffffff;
  --text-secondary: #b4b4c8;
  --text-accent: #667eea;

  --border-glass: rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: 'Noto Sans KR', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100vh;
  position: relative;
}

/* Animated Background */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#starCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Header */
.header {
  padding: var(--spacing-md) var(--spacing-md);
  text-align: center;
  position: relative;
  z-index: 10;
}

.logo-container {
  display: inline-block;
  position: relative;
  margin-bottom: var(--spacing-sm);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  /* 밝은 흰색 */
  text-shadow:
    0 0 20px rgba(102, 126, 234, 0.8),
    0 0 40px rgba(102, 126, 234, 0.6),
    0 0 60px rgba(102, 126, 234, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
  letter-spacing: 2px;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
  }

  to {
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.8));
  }
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin: var(--spacing-sm) 0 var(--spacing-md);
  flex-wrap: wrap;
  padding: 0 var(--spacing-md);
}

.nav-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-icon {
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
}

.nav-label {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left var(--transition-normal);
  z-index: -1;
}

.nav-button:hover::before {
  left: 0;
}

.nav-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
  border-color: rgba(102, 126, 234, 0.6);
}

.nav-button:hover .nav-icon {
  transform: scale(1.15);
}

.nav-button.active {
  background: var(--primary-gradient);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.5);
}

.nav-button.active .nav-icon {
  animation: bounce 2s ease-in-out infinite;
}

/* Main Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-lg) 0;
  height: calc(100vh - 220px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  /* Enable scrolling for content */

  /* Hide scrollbar for cleaner look if preferred */
  /* scrollbar-width: none; */
  /* -ms-overflow-style: none; */
}

/* Custom Scrollbar for Container */
.container::-webkit-scrollbar {
  width: 8px;
}

.container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.container::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.5);
  border-radius: 4px;
}

.container::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 126, 234, 0.8);
}

/* Hero Section */
.hero-section {
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 100px;
}

.hero-text {
  z-index: 10;
  order: 2;
}

.hero-visual {
  order: 1;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
  white-space: nowrap;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.4));
  }

  to {
    filter: drop-shadow(0 0 40px rgba(118, 75, 162, 0.6));
  }
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  font-weight: 300;
}

.hero-features {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.feature-item:nth-child(2) .feature-icon {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) .feature-icon {
  animation-delay: 0.4s;
}

.feature-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--bg-card);
  border: 2px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
  transition: all var(--transition-normal);
}

.card-icon {
  width: 80%;
  height: 80%;
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

.card-1 {
  top: 0;
  left: 35%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  left: 20%;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.2), rgba(0, 242, 254, 0.2));
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-30px) rotate(5deg);
  }

  50% {
    transform: translateY(-20px) rotate(-5deg);
  }

  75% {
    transform: translateY(-40px) rotate(3deg);
  }
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Weather Widget */
.weather-widget {
  position: absolute;
  top: 275px;
  left: -150px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  padding: var(--spacing-sm);
  width: 200px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  z-index: 10;
}

.weather-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.4);
}

.weather-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-glass);
}

.weather-icon-display {
  font-size: 2rem;
  line-height: 1;
  animation: weatherFloat 3s ease-in-out infinite;
}

@keyframes weatherFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

.weather-info {
  flex: 1;
}

.weather-temp {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.weather-location {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.weather-details {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.weather-detail-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  transition: all var(--transition-fast);
}

.weather-detail-item:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
  transform: scale(1.05);
}

.detail-icon {
  font-size: 1rem;
}

.detail-label {
  font-size: 0.55rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-value {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-primary);
}

.weather-description {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-glass);
  font-style: italic;
}

/* Visitor Counter Widget */
.visitor-counter-widget {
  position: absolute;
  top: -140px;
  left: -150px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  padding: var(--spacing-sm);
  width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  z-index: 10;
}

.visitor-counter-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.4);
}

.counter-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-glass);
}

.counter-icon {
  font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
}

.counter-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.counter-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
}

.counter-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.counter-stat-item:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
  transform: scale(1.05);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 50%, #f107a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: counterGlow 2s ease-in-out infinite alternate;
}

@keyframes counterGlow {
  from {
    filter: drop-shadow(0 0 2px rgba(0, 212, 255, 0.3));
  }

  to {
    filter: drop-shadow(0 0 6px rgba(123, 47, 247, 0.5));
  }
}

.counter-stat-divider {
  width: 1px;
  height: 35px;
  background: linear-gradient(180deg, transparent, var(--border-glass), transparent);
}

/* Calendar Widget */
.calendar-widget {
  position: absolute;
  top: 25px;
  left: -150px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  padding: var(--spacing-sm);
  width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  z-index: 5;
}

.calendar-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(102, 126, 234, 0.3);
  border-color: rgba(102, 126, 234, 0.4);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-glass);
}

.calendar-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.calendar-nav-btn {
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: 1rem;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav-btn:hover {
  background: var(--primary-gradient);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.weekday {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.2rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.6rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.calendar-day:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.4);
  transform: scale(1.08);
}

.calendar-day.other-month {
  color: var(--text-secondary);
  opacity: 0.3;
}


/* 일요일 빨간색 */
.calendar-day.sunday,
.calendar-weekdays .weekday:first-child {
  color: #ff4444 !important;
}

/* 토요일 파란색 */
.calendar-day.saturday,
.calendar-weekdays .weekday:last-child {
  color: #4488ff !important;
}

.calendar-day.today {
  background: var(--primary-gradient);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.5);
  animation: todayPulse 2s ease-in-out infinite;
}

@keyframes todayPulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.5);
  }

  50% {
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.8);
  }
}

.calendar-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--secondary-gradient);
}

.calendar-events {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-glass);
  flex-wrap: wrap;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6rem;
  color: var(--text-secondary);
}

.event-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.event-dot-purple {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.event-dot-pink {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.event-text {
  font-weight: 500;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: var(--spacing-sm) var(--spacing-sm);
  border-top: 1px solid var(--border-glass);
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
}

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

/* Calendar Day Selected State */
.calendar-day.selected:not(.today) {
  background: rgba(240, 147, 251, 0.3);
  border-color: rgba(240, 147, 251, 0.6);
  box-shadow: 0 4px 16px rgba(240, 147, 251, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
  .logo {
    font-size: 2.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

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

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

  .hero-visual {
    height: 300px;
  }

  .feature-item {
    padding: var(--spacing-sm);
  }

  .feature-icon {
    font-size: 2rem;
  }

  .floating-card {
    width: 90px;
    height: 90px;
    font-size: 3rem;
  }

  /* Hide widgets on mobile/tablet */
  .weather-widget,
  .visitor-counter-widget,
  .calendar-widget {
    display: none;
  }
}

@media (max-width: 640px) {
  .logo {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .nav {
    gap: var(--spacing-xs);
  }

  .nav-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .container {
    height: calc(100vh - 220px);
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-features {
    gap: var(--spacing-sm);
  }

  .hero-visual {
    height: 200px;
  }

  .floating-card {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Particle Effect */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.5;
  }
}

/* Marquee Notification Bar */
.marquee-wrap {
  display: flex;
  overflow: hidden;
  background: rgba(13, 13, 20, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 1rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 5;
  user-select: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 2rem;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.marquee-wrap:hover .marquee-content {
  animation-play-state: paused;
}

.news-item {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 2rem;
}

.news-item strong {
  color: #fff;
  font-weight: 700;
}

.highlight {
  color: #00ffff;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.divider {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  margin: 0 1rem;
}

/* Mobile responsive for marquee */
@media (max-width: 768px) {
  .marquee-content {
    animation-duration: 20s;
  }

  .news-item {
    font-size: 0.85rem;
  }
}