/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --bg-body: #f5f5f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  /* "Büyük kutucuk stilsiz" - No background, no border, no shadow */
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* App Icon */
/* App Icon */
.app-icon {
  width: 110px;
  height: 110px;
  border-radius: 36px;
  margin-bottom: 4px;
  /* "Gölgesini kaldır" -> No box-shadow */
  /* "İkon kutucuğu siyah olacaktı zaten" -> If this refers to the icon background: */
  background: linear-gradient(135deg, #ffffff, #ffffff);
  /* Black gradient backing in case transparent */
  object-fit: contain;
  /* Ensure full icon is visible inside the box */
}

/* Typography */
h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--text-primary);
}

.subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 24px;
  margin-top: 0px;
}

.description {
  font-size: 17px;
  line-height: 1.5;
  color: #424245;
  margin-bottom: 30px;
  max-width: 90%;
}

/* App Store Button */
.store-btn {
  display: inline-flex;
  align-items: center;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 32px;
  border-radius: 30px;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.store-btn:hover {
  opacity: 0.9;
}

.store-btn:active {
  transform: scale(0.98);
}

.apple-logo {
  height: 24px;
  width: auto;
  margin-right: 12px;
  fill: currentColor;
  transform: translateY(-2px);
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.btn-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.btn-subtitle {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* Shine Effect */
.shiny-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  z-index: 2;
}

@keyframes shine {
  0% {
    left: -75%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    left: 175%;
    opacity: 0;
  }

  100% {
    left: 175%;
    opacity: 0;
  }
}

/* Footer Info */
.compatibility {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 24px;
}