/*!
 * free.css -http://kodester.com/
 * Version - 2.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2026 Kasanova
 */

/* ===== FREE PAGE BREADCRUMB ===== */
.free-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--tx3);
  margin-bottom: 12px;
}
.free-breadcrumb a {
  color: var(--tx3);
  transition: .15s;
}
.free-breadcrumb a:hover {
  color: var(--grn);
}
.free-breadcrumb .free-sep {
  font-size: .6rem;
}
.free-breadcrumb .free-current {
  color: var(--tx);
  font-weight: 600;
}

/* ===== FREE HERO (gabungan hero + stats + countdown) ===== */
.free-hero {
  position: relative;
  border-radius: var(--r3);
  overflow: hidden;
  padding: 24px 20px 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--grn3) 0%, var(--grn) 50%, var(--grn2) 100%);
}
.free-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .06;
  pointer-events: none;
  z-index: 1;
}
.free-hero::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.free-hero-inner {
  position: relative;
  z-index: 2;
}
.free-hero-content {
  text-align: center;
  margin-bottom: 16px;
}
.free-hero-content h1 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.35;
}
.free-hero-content p {
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Hero bottom: stats + countdown in one row */
.free-hero-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Stats inside hero */
.free-hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}
.free-stat-item {
  text-align: center;
}
.free-stat-item .free-stat-num {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.free-stat-item .free-stat-label {
  font-size: .58rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.free-stat-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.25);
}

/* Countdown inside hero (compact) */
.free-hero-cd {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.2);
  border-radius: var(--r2);
  padding: 6px 12px;
}
.free-hero-cd-label {
  font-size: .65rem;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.free-hero-cd-label i {
  font-size: .72rem;
}

/* Countdown Timer (compact) */
.free-cd {
  display: flex;
  align-items: center;
  gap: 4px;
}
.free-cd-block {
  display: flex;
  align-items: center;
  gap: 2px;
}
.free-cd-num {
  width: 24px;
  height: 24px;
  background: rgba(0,0,0,.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.free-cd-label {
  font-size: .5rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.free-cd-sep {
  font-size: .65rem;
  font-weight: 800;
  color: rgba(255,255,255,.4);
  line-height: 1;
  padding: 0 1px;
}

/* ===== SHARE SECTION (card) ===== */
.free-share {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: var(--r3);
  text-align: center;
  padding: 20px;
  margin-bottom: 16px;
}
.free-share-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 14px;
}
.free-share-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.free-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 18px;
  font-size: .76rem;
  font-weight: 600;
  color: #fff;
  border-radius: var(--r);
  transition: .2s;
  white-space: nowrap;
}
.free-share-btn.fb {
  background: #1877f2;
}
.free-share-btn.fb:hover {
  background: #166fe5;
  transform: translateY(-1px);
}
.free-share-btn.tw {
  background: #1da1f2;
}
.free-share-btn.tw:hover {
  background: #1a8cd8;
  transform: translateY(-1px);
}
.free-share-btn i {
  font-size: .85rem;
}
.free-share-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.free-share-link-label {
  font-size: .76rem;
  color: var(--tx2);
  font-weight: 500;
}
.free-share-input {
  width: 180px;
  height: 30px;
  background: var(--s3);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 0 8px;
  font-size: .72rem;
  color: var(--tx2);
  font-family: inherit;
  outline: none;
  cursor: text;
  transition: .15s;
}
.free-share-input:focus {
  border-color: var(--grn);
  color: var(--tx);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .free-hero {
    padding: 20px 16px 16px;
  }
  .free-hero-content h1 {
    font-size: .95rem;
  }
  .free-hero-content p {
    font-size: .72rem;
  }
  .free-hero-bottom {
    gap: 14px;
  }
  .free-hero-stats {
    gap: 12px;
  }
  .free-stat-item .free-stat-num {
    font-size: .8rem;
  }
}
@media (max-width: 480px) {
  .free-hero {
    padding: 16px 14px 14px;
  }
  .free-hero-content h1 {
    font-size: .85rem;
  }
  .free-hero-content p {
    font-size: .68rem;
  }
  .free-hero-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .free-hero-stats {
    gap: 10px;
  }
  .free-hero-cd {
    padding: 5px 10px;
  }
}
