/* Simple Trial Call Playground Styles */
.trial-playground-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}

.trial-playground-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border-radius: 20px;
  border: 2px solid #e3f2fd;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trial-playground-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.18);
}


/* Heading */
.playground-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.playground-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Badges Container */
.badges-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Time Badge */
.time-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  margin-bottom: 0;
}

/* No Signin Badge */
.no-signin-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

/* Features */
.playground-features {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #0d6efd;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid #e3f2fd;
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: #e3f2fd;
  border-color: #0d6efd;
  transform: translateY(-2px);
}

.feature-badge i {
  color: #0d6efd;
}

/* CTA Button */
.trial-playground-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trial-playground-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.trial-playground-btn:hover::before {
  left: 100%;
}

.trial-playground-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13, 110, 253, 0.45);
}

.trial-playground-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.35);
}


/* Dark Mode Styles */
@media (prefers-color-scheme: dark) {
  .trial-playground-card {
    background: linear-gradient(135deg, #2b3035 0%, #1a2332 100%);
    border-color: #3a3f47;
  }

  .playground-title {
    color: #ffffff;
  }

  .playground-subtitle {
    color: #adb5bd !important;
  }

  .feature-badge {
    background: #1a1d21;
    color: #4dabf7;
    border-color: #3a3f47;
  }

  .feature-badge:hover {
    background: #2b3035;
    border-color: #4dabf7;
  }

  .feature-badge i {
    color: #4dabf7;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .trial-playground-card {
    padding: 1.5rem;
  }

  .playground-title {
    font-size: 1.5rem;
  }

  .playground-subtitle {
    font-size: 0.9rem;
  }

  .time-badge,
  .no-signin-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .playground-features {
    gap: 0.5rem;
  }

  .feature-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .trial-playground-btn {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .trial-playground-card {
    padding: 1.25rem;
  }

  .playground-title {
    font-size: 1.25rem;
  }

  .playground-subtitle {
    font-size: 0.85rem;
  }

  .time-badge,
  .no-signin-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 0.5rem;
  }

  .feature-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }

  .trial-playground-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.25rem;
  }
}
