/**
 * 🔧 VISUAL FIXES - CORREÇÕES DE GAPS E OVERLAPS
 * Mapeamento completo de problemas visuais e suas correções
 */

/* ===== PROBLEMA 1: HEADER - Labels Sobrepostas ===== */

/* Dashboard Header */
.dashboard__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  min-height: auto;
  overflow: visible;
}

/* Title Group - Prevenir overlap */
.dashboard__title {
  flex: 1;
  min-width: 0; /* Permite text-overflow funcionar */
  margin-bottom: var(--space-3);
}

.dashboard__title h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: var(--space-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.dashboard__title p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.4;
  margin-top: var(--space-2);
  opacity: 0.9;
}

/* Status Group - Evitar quebra de layout */
.dashboard__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  min-height: 48px;
}

/* Level Badge - Tamanho fixo */
.level-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  min-width: 80px;
  white-space: nowrap;
  flex-shrink: 0;
}

.level-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.level-badge strong {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

/* XP Bar - Responsivo com label */
.xp-bar {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.xp-bar__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary-400), var(--color-primary-600));
  border-radius: inherit;
  transition: width 0.5s var(--ease-out);
  position: relative;
  min-width: 2px;
}

.xp-bar__label {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  font-size: 0.75rem;
  text-align: center;
  margin-top: var(--space-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.8;
}

/* Coins Display - Tamanho adequado */
.coin-display {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 200, 0, 0.15);
  border: 1px solid rgba(255, 200, 0, 0.3);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.coin-display i {
  font-size: 1.1rem;
  color: #ffc800;
}

/* Notifications Button - Posição relativa */
.notifications-trigger {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  padding: var(--space-2);
  flex-shrink: 0;
}

.notifications-trigger__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  background: var(--color-error);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  z-index: 1;
}

/* ===== PROBLEMA 2: PET DISPLAY - Overflow e Centralização ===== */

.pet-stage {
  position: relative;
  width: 100%;
  min-height: 300px;
  max-height: 500px;
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-6);
}

.pet-interactive-area {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#pukito-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pukito-character {
  font-size: clamp(80px, 15vw, 150px);
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s var(--ease-out);
}

/* ===== PROBLEMA 3: STATS PANEL - Barras Cortadas ===== */

.stats-panel {
  width: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
}

.stats-panel h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  min-width: 0; /* Fix para overflow */
}

.stat-item__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-1);
  line-height: 1.2;
}

.stat-item__label span:first-child {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: var(--space-2);
}

.stat-item__label span:last-child {
  flex-shrink: 0;
  font-weight: 700;
  opacity: 0.9;
}

.stat-bar {
  position: relative;
  width: 100%;
  height: 24px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-bar__fill {
  height: 100%;
  border-radius: inherit;
  transition: width 0.6s var(--ease-out), background 0.3s ease;
  background: linear-gradient(90deg, 
    var(--stat-color, var(--color-primary-400)) 0%, 
    var(--stat-color-dark, var(--color-primary-600)) 100%
  );
  position: relative;
  min-width: 2px;
}

/* Cores por tipo de stat */
.stat-item[data-stat="hunger"] .stat-bar__fill {
  --stat-color: #ff6b6b;
  --stat-color-dark: #fa5252;
}

.stat-item[data-stat="hygiene"] .stat-bar__fill {
  --stat-color: #4dabf7;
  --stat-color-dark: #339af0;
}

.stat-item[data-stat="energy"] .stat-bar__fill {
  --stat-color: #ffd43b;
  --stat-color-dark: #fcc419;
}

.stat-item[data-stat="fun"] .stat-bar__fill {
  --stat-color: #f783ac;
  --stat-color-dark: #f06595;
}

.stat-item[data-stat="health"] .stat-bar__fill {
  --stat-color: #69db7c;
  --stat-color-dark: #51cf66;
}

.stat-item[data-stat="cleanliness"] .stat-bar__fill {
  --stat-color: #845ef7;
  --stat-color-dark: #7048e8;
}

/* ===== PROBLEMA 4: ACTION BUTTONS - Espaçamento e Quebra ===== */

.actions-panel {
  width: 100%;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
}

.actions-panel h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-3);
  width: 100%;
}

.btn {
  min-height: 48px;
  padding: var(--space-3) var(--space-5);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: var(--radius-xl);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  word-break: keep-all;
}

.btn i {
  flex-shrink: 0;
  font-size: 1.1em;
}

/* ===== PROBLEMA 5: SHOP - Grid Quebrado ===== */

.shop-section {
  width: 100%;
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.shop-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-4);
  width: 100%;
}

.shop-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  min-width: 0;
  position: relative;
}

.shop-item__icon {
  font-size: clamp(2.5rem, 8vw, 4rem);
  text-align: center;
  line-height: 1;
  margin: var(--space-2) 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.shop-item__name {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.6em;
}

.shop-item__cost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 1rem;
  font-weight: 700;
  margin: var(--space-2) 0;
}

.shop-item__cost i {
  font-size: 1.1em;
  color: #ffc800;
}

.shop-item__buy-btn {
  width: 100%;
  min-height: 40px;
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  margin-top: auto;
}

/* ===== PROBLEMA 6: INVENTORY - Overflow de Items ===== */

.inventory-section {
  width: 100%;
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.inventory-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: var(--space-3);
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  padding-right: var(--space-2);
}

.inventory-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  min-height: 100px;
  cursor: pointer;
  aspect-ratio: 1;
}

.inventory-item__icon {
  font-size: clamp(2rem, 6vw, 2.5rem);
  line-height: 1;
}

.inventory-item__quantity {
  position: absolute;
  top: var(--space-1);
  right: var(--space-1);
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  background: var(--color-primary-500);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.inventory-item__name {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 100%;
}

/* ===== PROBLEMA 7: MINIGAMES - Cards Desalinhados ===== */

.minigames-section {
  width: 100%;
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.minigames-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.minigames-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
  width: 100%;
}

.minigame-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-2xl);
  min-height: 320px;
  min-width: 0;
}

.minigame-card__icon {
  font-size: clamp(3rem, 10vw, 4rem);
  text-align: center;
  line-height: 1;
  margin: var(--space-3) 0;
}

.minigame-card__title {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: var(--space-2);
}

.minigame-card__description {
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-align: center;
  line-height: 1.5;
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: 1;
}

.minigame-card__stats {
  display: flex;
  justify-content: space-around;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  margin: var(--space-3) 0;
}

.minigame-card__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  min-width: 0;
}

.minigame-card__stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.minigame-card__stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.minigame-card__play-btn {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

/* ===== PROBLEMA 8: MISSIONS - Lista Overflow ===== */

.missions-section {
  width: 100%;
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.missions-section h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.missions-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-height: 500px;
  overflow-y: auto;
  padding-right: var(--space-2);
}

.mission-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  min-height: 80px;
  position: relative;
}

.mission-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(122, 131, 255, 0.15);
  border-radius: var(--radius-lg);
}

.mission-item__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mission-item__title {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mission-item__description {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mission-item__progress {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.mission-item__progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.mission-item__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-success-400), var(--color-success-600));
  border-radius: inherit;
  transition: width 0.5s var(--ease-out);
  min-width: 2px;
}

.mission-item__progress-text {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.mission-item__reward {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-1);
}

.mission-item__reward-value {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 1rem;
  font-weight: 700;
  color: #ffc800;
}

/* ===== PROBLEMA 9: OVERLAYS - Z-index e Scroll ===== */

.overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal-backdrop);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  overflow-y: auto;
  animation: overlayFadeIn 0.3s var(--ease-out);
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.overlay__content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--glass-background);
  backdrop-filter: blur(var(--glass-blur-heavy));
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
  border: var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-2xl);
  overflow-y: auto;
  animation: overlaySlideIn 0.4s var(--ease-spring);
  z-index: var(--z-modal);
}

@keyframes overlaySlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.overlay__close {
  position: sticky;
  top: var(--space-2);
  right: var(--space-2);
  float: right;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: white;
  cursor: pointer;
  transition: all var(--transition-base) var(--ease-out);
  z-index: 1;
  margin-bottom: var(--space-4);
}

.overlay__close:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: rotate(90deg) scale(1.1);
}

/* ===== PROBLEMA 10: RESPONSIVIDADE - Media Queries ===== */

@media (max-width: 1024px) {
  .dashboard__header {
    gap: var(--space-3);
    padding: var(--space-4);
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-3);
  }
  
  .minigames-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
  }
}

@media (max-width: 768px) {
  .dashboard__header {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4);
  }
  
  .dashboard__status {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }
  
  .xp-bar {
    min-width: 100%;
    max-width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .actions-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  
  .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-3);
  }
  
  .inventory-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: var(--space-2);
  }
  
  .minigames-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .missions-list {
    max-height: 400px;
  }
  
  .mission-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  
  .mission-item__reward {
    align-items: flex-start;
    width: 100%;
  }
  
  .overlay__content {
    max-height: 85vh;
    padding: var(--space-4);
  }
  
  .pet-stage {
    min-height: 250px;
    padding: var(--space-4);
  }
}

@media (max-width: 480px) {
  .dashboard__header {
    padding: var(--space-3);
  }
  
  .dashboard__title h1 {
    font-size: 1.5rem;
  }
  
  .level-badge {
    min-width: 70px;
    padding: var(--space-2) var(--space-3);
  }
  
  .coin-display {
    font-size: 0.875rem;
    padding: var(--space-2) var(--space-3);
  }
  
  .pet-stage {
    min-height: 200px;
    padding: var(--space-3);
  }
  
  .stats-panel,
  .actions-panel,
  .shop-section,
  .inventory-section,
  .minigames-section,
  .missions-section {
    padding: var(--space-4);
  }
  
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }
  
  .inventory-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: var(--space-2);
  }
  
  .btn {
    min-height: 44px;
    padding: var(--space-2) var(--space-4);
    font-size: 0.875rem;
  }
  
  .overlay__content {
    max-height: 80vh;
    padding: var(--space-3);
    max-width: 95vw;
  }
}

/* ===== PROBLEMA 11: TEXT TRUNCATION - Ellipsis Universal ===== */

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-truncate-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-truncate-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ===== PROBLEMA 12: SCROLL CONTAINER - Prevent Body Scroll ===== */

body.overlay-open {
  overflow: hidden;
}

.scrollable-container {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.scrollable-container::-webkit-scrollbar {
  width: 6px;
}

.scrollable-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-full);
}

.scrollable-container::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, 
    var(--color-primary-400), 
    var(--color-primary-600)
  );
  border-radius: var(--radius-full);
}

/* ===== PROBLEMA 13: LOADING STATES - Prevent Layout Shift ===== */

[data-loading="true"] {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PROBLEMA 14: EMPTY STATES - Mensagens Centralizadas ===== */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8);
  text-align: center;
  min-height: 200px;
}

.empty-state__icon {
  font-size: 4rem;
  opacity: 0.3;
}

.empty-state__title {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.8;
}

.empty-state__description {
  font-size: 0.95rem;
  opacity: 0.6;
  max-width: 400px;
  line-height: 1.5;
}
