/* Additional styles for CapCut Pro page */
.app-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background: var(--dark-bg);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-info h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--light);
}

.app-info .version {
  color: var(--pink-accent);
  font-weight: bold;
  margin: 5px 0;
}

.app-info .developer {
  color: var(--light-gray);
  margin-bottom: 10px;
}

.download-btn {
  display: inline-block;
  background: var(--pink-accent);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.download-btn:hover {
  background: var(--pink-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.app-details {
  background: var(--dark-bg);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.details-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.details-table th {
  text-align: left;
  padding: 15px;
  background: var(--darker-bg);
  color: var(--pink-accent);
  border-bottom: 2px solid var(--pink-accent);
}

.details-table td {
  padding: 15px;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.details-table td:first-child {
  font-weight: bold;
  color: var(--light);
  width: 30%;
}

.screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.screenshot {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.screenshot:hover {
  transform: scale(1.05);
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.whats-new {
  background: var(--darker-bg);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.whats-new h3 {
  color: var(--pink-accent);
  margin-top: 0;
}

.whats-new ul {
  padding-left: 20px;
}

.whats-new li {
  margin-bottom: 8px;
  color: var(--light-gray);
}

@media (max-width: 768px) {
  .app-header {
    flex-direction: column;
    text-align: center;
  }

  .details-table td:first-child {
    width: 40%;
  }
}

.capcut-card {
  background: rgba(20, 20, 20, 0.75);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.capcut-card-icon {
  width: 90px;
  margin-bottom: 12px;
}

.capcut-card-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.capcut-card-sub {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.capcut-download-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  padding: 12px 30px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.45);
  transition: 0.25s ease;
}

.capcut-download-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.65);
}

.capcut-info-row {
  margin: 15px 0;
  color: #bbb;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.capcut-card-note {
  margin-top: 10px;
  color: #888;
  font-size: 0.85rem;
}

/* Modal Background */
.warn-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

/* Modal Card */
.warn-modal-box {
  background: rgba(25, 25, 25, 0.8);
  border-radius: 18px;
  padding: 28px;
  width: 90%;
  max-width: 380px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  animation: slideUp .25s ease-out;
}

.warn-modal-box h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 700;
}

.warn-modal-box p {
  color: #d0d0d0;
  font-size: .95rem;
  margin-bottom: 22px;
}

/* Buttons */
.warn-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warn-tutorial {
  padding: 12px;
  border-radius: 12px;
  background: #222;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 600;
  transition: .2s ease;
}

.warn-tutorial:hover {
  background: #333;
}

.warn-continue {
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: white;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: .25s;
}

.warn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(139,92,246,0.5);
}

@keyframes slideUp {
  from { opacity:0; transform: translateY(25px); }
  to { opacity:1; transform: translateY(0); }
}