.nav-placeholder {
  height: 60px;
}

#main-body {
  display: flex;
  height: calc(100% - 60px);
}

.sidebar-placeholder {
  /*width: 280px; */
  max-height: 100%;
}

#main-content {
  /*width: calc(100% - 280px);*/
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

h1,
h2 {
  background: linear-gradient(74deg, #00ff40 0%, #15a5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: 56px;
  margin: 12px 0px;
}

.text-center {
  text-align: center;
  width: -webkit-fill-available;
  margin: auto;
}

.home-hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background-color: transparent;
  border: 1px solid #818cf8;
  color: #a5b4fc;

  padding: 5px 8px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #6366f1;
  border: 0px solid #818cf8;
  border-radius: 50%;
  display: inline-block;
  animation: pulseBorder 1.5s ease-in-out infinite;
}

@keyframes pulseBorder {
  0% {
    border-width: 0px;
  }
  50% {
    border-width: 2px;
  }
  100% {
    border-width: 0px;
  }
}

#create-channel-button {
  background: white;
  color: #020617;
  border: none;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  box-shadow: -6px 2px 30px -10px #00ff40, 6px -2px 30px -10px #15a5ff;
  margin-top: 40px;
}

.section-timeline {
  margin-top: 150px;
  margin-bottom: 100px;
}

.timeline-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  font-family: "Inter", sans-serif;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #384047;
  z-index: 0;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 30%;
  z-index: 1;
}

.circle-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(180deg, #00ff40 0%, #15a5ff 100%);
  padding: 5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 176, 255, 0.2);
}

.circle-content {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.step-text {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
  max-width: 250px;
}

@media (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  .timeline-container::before {
    top: 0;
    left: 60px;
    width: 2px;
    height: 100%;
  }

  .step {
    flex-direction: row;
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
    align-items: flex-start;
  }

  .circle-wrapper {
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .step-text {
    max-width: 100%;
    padding-top: 10px;
  }

  .timeline-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 60px;
    width: 2px;
    height: 50px;
    background: white;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  width: calc(100% - 48px);
  margin: 24px;
}

.card {
  background-color: #fff;
  border: 1px solid rgba(53, 53, 53, 0.6);
  border-radius: 24px;
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: auto;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #d1d5db;
}

.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid;
}

.icon-pink {
  border-color: #ec4899;
  color: #ec4899;
}
.icon-purple {
  border-color: #8b5cf6;
  color: #8b5cf6;
}
.icon-green {
  border-color: #10b981;
  color: #10b981;
}
.icon-orange {
  border-color: #f97316;
  color: #f97316;
}
.icon-blue {
  border-color: #3b82f6;
  color: #3b82f6;
}
.icon-yellow {
  border-color: #eab308;
  color: #eab308;
}
.icon-indigo {
  color: #818cf8;
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #353535;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}

.card p {
  font-size: 12px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0px;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.section-adv {
  margin-top: 150px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
