.container-home {
  display: flex;
  min-height: 100vh;
}

.text-second{
  color: var(--second) !important;
}

/* Left Section - Blue */
.hero-section {
  flex: 1.75;
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-secondary) 100%);
  padding: 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-section-login {
  flex: 1.75;
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-secondary) 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 80px;
  height: 100%;
}

/* Animated background shapes */
.bg-shape {
  position: absolute;
  border-radius: 20px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape1 {
  width: 100px;
  height: 100px;
  background: white;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape2 {
  width: 60px;
  height: 60px;
  background: white;
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.shape3 {
  width: 80px;
  height: 80px;
  background: white;
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Floating icons */
.floating-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  font-size: 40px;
  animation: floatIcon 8s ease-in-out infinite;
}

.icon1 {
  top: 25%;
  right: 20%;
  animation-delay: 0s;
}

.icon2 {
  bottom: 30%;
  left: 15%;
  animation-delay: 2s;
}

.icon3 {
  top: 50%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(15deg); }
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 15%;
  margin-bottom: 100px;
  position: relative;
  z-index: 10;
}

.header-login {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 15%;
  margin-bottom: 90px;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

/* Hero Content */
.hero-content {
  max-width: 500px;
  position: relative;
  z-index: 10;
}

.welcome-badge {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 52px;
  color: white;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-button {
  background: var(--second);
  color: #1a1a1a;
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button-cancel {
  background: var(--error);
  color: #1a1a1a;
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Right Section - White */
.cards-section {
  flex: 1;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.auth-buttons {
  position: absolute;
  top: 40px;
  right: 60px;
  display: flex;
  gap: 15px;
}

.btn-login, .btn-signup {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-login {
  background: white;
  border: none;
  color: #333;
  margin-right: 10px;
  margin-left: 10px;
}

.btn-login:hover{
  color: var(--second);
}

.btn-signup:hover{
  color: white;
}

.btn-signup {
  background: var(--second);
  border: none;
  color: white;
}

.btn-signup:hover {
  transform: translateY(-2px);
}

/* Task Cards */
.cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 100px;
}

.task-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 300px;
  animation: slideIn 0.6s ease-out;
  position: relative;
}

.task-card-login {
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 300px;
  animation: slideIn 0.6s ease-out;
  position: relative;
}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

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

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 25px;
}


.avatar-login {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.425); 
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 25px;
  border: 1px solid rgba(255, 255, 255, 0.25); 
}


.avatar-feature {
  width: 80px;
  height: 80px;
}

.avatar.female {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.user-details h4 {
  font-size: 13px;
  color: #666;
  font-weight: 400;
  margin-bottom: 4px;
}

.user-details p {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.status-done {
  background: #10b981;
  color: white;
}

.status-pending {
  background: #f97316;
  color: white;
}

.stars {
  color: #FFD700;
  font-size: 14px;
  margin-top: 8px;
}

.emoji {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 24px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 968px) {
  .container {
      flex-direction: column;
  }

  .cards-section{
    display: none;
  }

  .hero-section, .cards-section {
      padding: 30px;
  }

  .hero-title {
      font-size: 38px;
  }

  .cards-container {
      align-items: center;
  }

  .only-lg{
    display: none;
  }
}

@media (min-width: 969px) {
  .hero-section {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }

  .only-sm{
    display: none;
  }

  .works-container{
    margin-left: 80px;
    margin-right: 80px;
  }
}

@media (min-width: 1500px) {
  .works-container{
    margin-left: 120px;
    margin-right: 120px;
  }
  .hero-section{
    padding-left: 120px;
    padding-right: 120px;
  }
}

.line{
  width: 100px;
  height: 6px;
  border-radius: 10px;
  background-color: var(--second);
  margin-left: 80px;
}

.feat{
  max-width: 380px;
}

.circle {
  position: absolute;
  border: 2px solid rgb(153, 149, 149);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.outer-circle {
  width: 450px;
  height: 450px;
}

.middle-circle {
  width: 320px;
  height: 320px;
}

.inner-circle {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.center-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  animation: pulse 2s ease-in-out infinite;
}

.emoji-item {
  position: absolute;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.emoji-item:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.label {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
  0%, 100% {
      transform: translate(-50%, -50%) scale(1);
  }
  50% {
      transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

.emoji-container {
  position: relative;
  max-width: 500px;
  max-height: 500px;
  width: 500px;
  height: 500px;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

@media (max-width: 700px) {
  .emoji-container {
    width: 250px;
    height: 250px;
  }

  .works-container{
    margin-left: 25px;
    margin-right: 25px;
  }

  .line{
    display: none;
  }

  .outer-circle {
    width: 200px;
    height: 200px;
  }

  .middle-circle {
    width: 150px;
    height: 150px;
  }

  .inner-circle{
    width: 100px;
    height: 100px;
  }

  .emoji-item {
    font-size: 20px;
  }

  .center-emoji {
    font-size: 30px;
  }

  .border-mobile{
    border: 1px solid var(--primary);
  }
}