/* style.css */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #111827;
  color: #f8fafc;
}

.topbar {
  height: 120px;
  padding: 24px 36px;
  background: #111827;
  border-bottom: 1px solid #223044;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
}

.actions {
  display: flex;
  gap: 16px;
}

a {
    padding: 15px;
    border: 0;
    border-radius: 15px;
    background: #1f2937;
    color: white;
    font-size: 26px;
    text-decoration: none;
}

.container {
  padding: 16px;
}

.app-card {
  max-width: 1120px;
  margin: auto;
  padding: 28px;
  background: #111827;
  border: 1px solid #253044;
  border-radius: 8px;
}

.breadcrumb {
  color: #9ca3af;
  font-size: 26px;
  margin-bottom: 36px;
}

.app-info {
  display: flex;
  gap: 32px;
  align-items: center;
}

.app-icon {
  position: relative;
}

.app-icon img {
  width: 160px;
  height: 160px;
  border-radius: 28px;
  object-fit: cover;
}

.shield {
  position: absolute;
  right: -8px;
  bottom: -8px;
  background: #10b981;
  border: 5px solid #111827;
  border-radius: 50%;
  padding: 8px;
}

h1 {
  margin: 0;
  font-size: 40px;
}

h2 {
  margin: 22px 0;
  font-size: 28px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  color: #d1d5db;
  font-size: 24px;
  flex-direction:column;
}

.download-btn {
  width: 100%;
  margin: 46px 0 32px;
  padding: 38px 42px;
  border: 0;
  border-radius: 16px;
  background: #2ecc71;
  color: white;
  font-size: 34px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.download-btn b {
  margin-left: 20px;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}

.screenshots {
  padding: 32px;
  border: 1px solid #253044;
  border-radius: 16px;
}

.screenshots h3 {
  margin-top: 0;
  font-size: 36px;
}

.shot-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.shot-row img {
  width: 180px;
  height: 360px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}

.details {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.detail-box {
  min-height: 130px;
  padding: 24px;
  border: 1px solid #2b364a;
  border-radius: 12px;
  background: #182132;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 32px;
}

.stat-value, .stat-label {
  display: block;
  margin-top: 12px;
}
.stat-value{
    font-size: 24px;
}
.stat-label{
    font-size: 20px;
    color: #6b7280;
    margin: .25rem 0 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
  .topbar {
    width:auto;
    height: 90px;
    padding: 18px;
  }

  .logo {
    width:auto;
  }
  .logo img{
    width: 180px;
  }
  a {
    width:max-content;
    padding: 15px;
    border: 0;
    border-radius: 15px;
    background: #1f2937;
    color: white;
    font-size: 16px;
    text-decoration: none;
  }
  .stat-value{
    font-size:.7rem;
    text-align:center;
  }
  .stat-label{
    font-size: 10px;
    color: #6b7280;
    margin: .25rem 0 0;
    text-transform: uppercase;
  }
  .app-card {
    padding: 18px;
  }

  .breadcrumb {
    font-size: 18px;
  }

  .app-info {
    gap: 18px;
  }

  .app-icon img {
    width: 120px;
    height: 120px;
  }

  h1 {
    font-size: 30px;
  }

  h2,
  .meta {
    font-size: 20px;
  }

  .download-btn {
    padding: 28px;
    font-size: 26px;
  }

  .screenshots h3 {
    font-size: 28px;
  }

  .details {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-card {
  margin-top: 32px;
  padding: 34px;
  border: 1px solid #253044;
  border-radius: 16px;
  background: #111827;
}

.about-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.about-title span {
  font-size: 34px;
  color: #9ca3af;
}

.about-title h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
}

.about-text {
  margin: 0;
  color: #e5e7eb;
  font-size: 30px;
  line-height: 1.7;
  transition: 0.3s ease;
}

.about-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  margin-top: 26px;
  border: 0;
  background: transparent;
  color: #10b981;
  font-size: 28px;
  font-weight: 800;
  cursor: pointer;
}

.read-more span {
  margin-left: 8px;
}

@media (max-width: 768px) {
  .about-card {
    padding: 32px;
    border: 1px solid #253044;
    border-radius: 16px;
    margin-top: 32px;
  }

  .about-title h3 {
    font-size: 28px;
  }

  .about-text {
    font-size: 22px;
  }

  .read-more {
    font-size: 22px;
  }
}
.faq-card {
  margin-top: 32px;
  padding: 34px;
  border: 1px solid #253044;
  border-radius: 16px;
  background: #111827;
}

.faq-title {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 34px;
}

.faq-title span {
  width: 38px;
  height: 38px;
  border: 3px solid #9ca3af;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #9ca3af;
  font-size: 24px;
  font-weight: 800;
}

.faq-title h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

.faq-item {
  margin-left: 38px;
  margin-bottom: 18px;
  border: 1px solid #253044;
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
}

.faq-section{
    padding: 32px;
    border: 1px solid #253044;
    border-radius: 16px;
    margin-top: 32px;
}

.faq-header{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.faq-header h2{
    color:#fff;
    font-size:36px;
    line-height:1.15;
    margin:0;
    font-weight:800;
}

.faq-item{
    margin-bottom:18px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    background:#0b1730;
}

.faq-question{
    padding:32px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:30px;
    font-weight:700;
    color:#fff;
}

.arrow{
    font-style:normal;
    font-size:30px;
    transition:.3s ease;
    color:#a3aec2;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    margin:0;
    padding:0 32px 32px;
    color:#d6dceb;
    font-size:30px;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .arrow{
    transform:rotate(180deg);
}

@media(max-width:768px){

    .faq-section{
        padding:20px;
    }

    .faq-header h2{
        font-size:30px;
    }

    .faq-question{
        font-size:22px;
        padding:20px;
    }

    .faq-answer p{
        font-size:18px;
        padding:0 20px 20px;
    }
}