/* CSS from style tag at line 10 */
/* CssSortify sayfasına özel stiller */
.feature-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-box h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #ff3e7f;
}

.feature-box h3 i {
  font-size: 1.5rem;
}

.shortcut-tag {
  display: inline-block;
  background: rgba(113, 34, 227, 0.2);
  color: #a67dff;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  border: 1px solid rgba(113, 34, 227, 0.3);
}

.demo-section {
  margin: 5rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 62, 127, 0.05),
    rgba(113, 34, 227, 0.05)
  );
  z-index: -1;
}

.tab-container {
  margin-top: 2rem;
}

.tab-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.tab-nav button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.tab-nav button.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.changelog-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.changelog-item:last-child {
  border-bottom: none;
}

.changelog-version {
  font-size: 1.2rem;
  color: #ff3e7f;
  margin-bottom: 0.5rem;
}

.changelog-date {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.changelog-list {
  list-style-type: none;
}

.changelog-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.changelog-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7122e3;
}

.changelog-tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.tag-feature {
  background: rgba(113, 34, 227, 0.2);
  color: #a67dff;
}

.tag-fix {
  background: rgba(255, 62, 127, 0.2);
  color: #ff7eab;
}

.tag-improvement {
  background: rgba(0, 163, 255, 0.2);
  color: #66c7ff;
}
