/* ==========================================================================
   HMGS OS — AURA & WEBILD PREMIUM HERO LANDING STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Color Palette - Premium Space Slate & Glowing Gradients */
  --bg-color: #0c0c0c;
  --color-blue: #3d81e3;
  --color-purple: #c959dd;
  --color-pink: #ff2e54;
  --color-orange: #ff9004;
  --color-accent: #a4f4fd;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.015);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-hover-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --glass-inner-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background-color: var(--bg-color);
  color: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background video */
.aura-bg-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.aura-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.aura-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12, 12, 12, 0.25) 0%, rgba(12, 12, 12, 0.88) 85%);
}

/* Two fixed vertical guide lines at 36rem container edges (Aura Style) */
.aura-guide-line-left {
  position: fixed;
  inset-y: 0;
  left: 50%;
  transform: translateX(-36rem);
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 5;
}

.aura-guide-line-right {
  position: fixed;
  inset-y: 0;
  left: 50%;
  transform: translateX(36rem);
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 5;
}

/* Hide SVG filters */
.aura-svg-filter {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Sticky macOS Menubar (Aura style) */
.aura-menubar {
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.menubar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menubar-logo {
  color: var(--color-blue);
  width: 14px;
  height: 14px;
}

.menubar-brand {
  font-weight: 700;
  color: #ffffff;
}

.menubar-item {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s ease;
}

.menubar-item:hover {
  color: #ffffff;
}

.menubar-right {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Page content wrapper */
.aura-page-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 1. HERO SECTION */
.aura-hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 120px;
}

.aura-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--color-accent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-blue);
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--color-blue); }
}

.aura-hero-title {
  font-size: 4.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
}

.aura-hero-title span {
  background-image: linear-gradient(to right, #ffffff 0%, #a4f4fd 25%, #3d81e3 50%, #a4f4fd 75%, #ffffff 100%);
  background-size: 200% auto;
  WebkitBackgroundClip: text;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: url(#c3-noise);
  animation: shiny 6s linear infinite;
}

@keyframes shiny {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.aura-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 680px;
  line-height: 1.55;
  margin-bottom: 48px;
}

/* Countdown Card */
.aura-countdown-card {
  width: 100%;
  max-width: 680px;
  margin-bottom: 48px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px 10px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.countdown-number {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.01em;
  background-image: linear-gradient(to right, #ffffff 40%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* Hero Action buttons */
.aura-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.aura-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.aura-btn.primary {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.aura-btn.primary:hover {
  background-color: rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.aura-btn.secondary {
  background-color: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.aura-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.aura-btn svg {
  width: 16px;
  height: 16px;
}

/* 2. CURRICULUM SECTION */
.aura-section {
  padding-top: 100px;
  padding-bottom: 60px;
}

.aura-section-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aura-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.aura-section-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 580px;
  line-height: 1.5;
}

/* Liquid-Glass Utility Class (Aura Specs) */
.liquid-glass {
  background: rgba(255, 255, 255, 0.012);
  background-blend-mode: luminosity;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.aura-mufredat-container {
  padding: 40px;
}

.aura-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.progress-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.icon-blue {
  color: var(--color-blue);
  width: 20px;
  height: 20px;
}

.progress-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-accent);
}

.aura-progressbar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9999px;
  margin-bottom: 36px;
  overflow: hidden;
}

.aura-progressbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-accent) 100%);
  border-radius: 9999px;
  transition: width 0.4s ease-out;
  box-shadow: 0 0 10px rgba(61, 129, 227, 0.4);
}

/* Subjects layout in 2 columns grid */
.aura-subjects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .aura-subjects-grid {
    grid-template-columns: 1fr;
  }
  .aura-hero-title {
    font-size: 2.8rem;
  }
  .aura-planner-layout {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .aura-page-wrapper {
    padding: 0 16px;
  }
  .aura-hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

@media (max-width: 600px) {
  #menubar-time {
    display: none; /* Hide macOS clock on mobile to make room for menu links */
  }
  .menubar-left {
    gap: 12px;
    width: 100%;
    justify-content: space-between;
  }
  .aura-menubar {
    padding: 0 16px;
  }
  .aura-widget-container {
    top: 52px;
    right: 16px;
  }
  .aura-widget-panel {
    width: 270px;
    right: 0;
    max-width: calc(100vw - 32px);
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .aura-hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
  }
  .aura-hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  .aura-countdown-card {
    padding: 16px;
    margin-bottom: 32px;
  }
  .countdown-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
  }
  .countdown-box {
    padding: 10px 4px !important;
  }
  .countdown-number {
    font-size: 1.6rem;
  }
  .countdown-label {
    font-size: 0.62rem;
  }
  .aura-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .aura-btn {
    width: 100%;
    justify-content: center;
  }
  .aura-section-title {
    font-size: 1.8rem;
  }
  .aura-section-subtitle {
    font-size: 0.9rem;
  }
}

.aura-subject-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.aura-subject-item:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.07);
}

.aura-subject-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aura-subject-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.2s ease;
}

.aura-subject-checkbox:hover {
  border-color: var(--color-blue);
}

.aura-subject-checkbox.checked {
  background: var(--color-blue);
  border-color: var(--color-blue);
  box-shadow: 0 0 6px rgba(61, 129, 227, 0.4);
}

.aura-subject-checkbox svg {
  width: 10px;
  height: 10px;
  color: white;
  display: none;
}

.aura-subject-checkbox.checked svg {
  display: block;
}

.aura-subject-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.aura-subject-item.completed .aura-subject-name {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.aura-subject-weight {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-blue);
  background: rgba(61, 129, 227, 0.05);
  padding: 3px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(61, 129, 227, 0.12);
}

/* 3. PLANNER SECTION */
.aura-planner-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.aura-planner-card {
  padding: 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aura-glow-blob {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(61, 129, 227, 0.2) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.planner-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.planner-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.planner-card-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-blue);
}

.planner-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.control-select-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.control-select-group label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
}

.aura-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  outline: none;
  font-family: var(--font-display);
  cursor: pointer;
}

.control-counter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.control-counter-group label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-transform: uppercase;
}

.aura-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 4px;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.counter-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.counter-value {
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 48px;
  text-align: center;
}

/* Quote card specific styling */
.quote-card {
  gap: 12px;
}

.quote-icon {
  width: 24px;
  height: 24px;
  color: var(--color-blue);
  opacity: 0.4;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.quote-translation {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.quote-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer style */
.aura-footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* ==========================================================================
   POMODORO & LOFI WIDGET STYLES
   ========================================================================== */

.aura-widget-container {
  position: fixed;
  top: 64px;
  right: 24px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.aura-widget-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.2s ease;
  outline: none;
  border: none;
}

.aura-widget-trigger:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.widget-icon {
  width: 14px;
  height: 14px;
  color: var(--color-blue);
}

.aura-widget-panel {
  display: none; /* Controlled by JS toggle */
  width: 300px;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
}

.aura-widget-panel.show {
  display: flex;
}

.widget-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.widget-mode-badge, .widget-status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-blue);
  background: rgba(61, 129, 227, 0.08);
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(61, 129, 227, 0.15);
}

.widget-status-badge {
  color: var(--color-accent);
  background: rgba(164, 244, 253, 0.08);
  border-color: rgba(164, 244, 253, 0.15);
}

.pomo-display {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 40%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pomo-controls, .lofi-controls {
  display: flex;
  gap: 8px;
}

.pomo-btn, .lofi-play-btn {
  flex: 1;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pomo-btn:hover, .lofi-play-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.pomo-btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pomo-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.widget-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Lofi beats custom controls */
.lofi-play-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.volume-slider-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 12px;
  flex: 1.5;
}

.volume-icon {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.volume-slider-container input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
}

.volume-slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.1s ease;
}

.volume-slider-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Lofi Channels Selector Pills */
.lofi-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.channel-pill-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 8px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  outline: none;
}

.channel-pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.channel-pill-btn.active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(61, 129, 227, 0.35);
}


