/* Scrollbar stili */
.welcome-left::-webkit-scrollbar {
  width: 0.25rem;
}

.welcome-left::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}

.welcome-left::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
}

/* === YENİ RESPONSIVE TASARIM === */

/* Varsayılan (masaüstü) */

.dashboard-welcome-pixel, .dashboard-welcome-pixel * {
  box-sizing: border-box;
}
.welcome-bg-blob {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.welcome-bg-blob img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}


.dashboard-welcome-pixel {
  position: relative;
  width: 100%;
  height: 15rem;
  background: linear-gradient(90deg, #161c24 0%, #212b36 100%);
  border-radius: 1.125rem;
  overflow: hidden;
  box-shadow: 0 0.375rem 1.125rem 0 rgba(22,28,36,0.13);
  display: flex;
  margin: 0 auto;
}

.welcome-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1rem 1.5rem 2rem;
  gap: 1rem;
  overflow: hidden;
}

.welcome-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  height: 100%;
  color: #fff;
  overflow: hidden;
}

.welcome-title {
  font-family: 'Public Sans', 'Inter', Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.03rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: none;
  word-break: break-word;
}

.welcome-desc {
  font-size: 1rem;
  font-weight: 400;
  color: #b0b6be;
  line-height: 1.6;
  opacity: 1;
  margin-bottom: 1.25rem;
  max-width: 95%;
  word-break: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}



.welcome-right {
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  
  flex-shrink: 0;
}

.welcome-right img {
  width: auto;
  height: 220px;
  object-fit: contain;
  transform: translateX(30px);
}


/* Tablet (900px ve altı) */
@media (max-width: 900px) {
  .dashboard-welcome-pixel {
    height: 13rem;
  }
  .welcome-inner {
    padding: 1.5rem 0 1.5rem 1.25rem;
    gap: 1rem;
  }
  .welcome-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .welcome-desc {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .welcome-btn {
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
  }
  .welcome-right {
    flex-basis: 200px;
  }
  .welcome-right img {
    height: 100%;
    transform: translateX(30px);
  }
}

/* Mobil (600px ve altı) */
@media (max-width: 600px) {
  .dashboard-welcome-pixel {
    height: auto;
    min-height: 10rem;
    max-height: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.18rem 0.5rem 0 rgba(22,28,36,0.11);
  }
  .welcome-inner {
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .welcome-left {
    min-width: 0;
    padding: 0;
  }
  .welcome-title {
    font-size: 1.3rem;
  }
  .welcome-desc {
    font-size: 0.85rem;
  }
  .welcome-btn {
    font-size: 0.8rem;
  }
  .welcome-right {
   display: none;
  }
}

/* Küçük mobil (400px ve altı) */
@media (max-width: 400px) {
  .welcome-inner {
    padding: 1rem;
    gap: 0.75rem;
  }
  .welcome-title {
    font-size: 1.1rem;
  }
  
  .welcome-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }
}
