/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  font-family: 'Poppins', Arial, sans-serif;
  background: #0E0E0E;
  color: #FFFFFF;
}
body {
  min-height: 100vh;
  line-height: 1.5;
}

:root {
  --color-bg: #0E0E0E;
  --color-title: #FFFFFF;
  --color-desc: #AAAAAA;
  --color-cta-gradient: linear-gradient(90deg, #FF416C 0%, #FF4B2B 100%);
  --color-tag: #2A2A2A;
  --color-tag-hover: #444;
  --color-tag-active-bg: #000;
  --color-tag-active-text: #FFF;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg.png') center/cover no-repeat;
  z-index: 0;
  filter: brightness(0.6);
}
.hero-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem 0 1.5rem;
}
.logo, a.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.social-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cta-header {
  margin-left: 1.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  background: var(--color-cta-gradient);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,65,108,0.15);
}
.cta-header:hover {
  box-shadow: 0 4px 16px rgba(255,65,108,0.25);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-title);
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 2px rgba(0,0,0,0.12);
}
.hero-content h1 span {
  color: #FF416C;
}
.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(0,0,0,0.85);
  border-radius: 24px;
  padding: 1.2rem 2.4rem;
  min-width: 270px;
  min-height: 80px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  position: relative;
}
.store-btn:hover {
  background: rgba(255,65,108,0.85);
  transform: translateY(-2px) scale(1.03);
}
.store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
}
.store-icon svg {
  width: 44px;
  height: 44px;
  display: block;
  fill: #fff;
}
.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 120px;
}
.store-top {
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.1em;
}
.store-bottom {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-top: 0.1em;
}
.hero-desc {
  color: #fff;
  opacity: 0.95;
  font-size: 1.25rem;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.scroll-arrow {
  display: block;
  margin: 0 auto;
  animation: scroll-bounce 1.2s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transition: opacity 0.4s;
}
.arrow {
  display: block;
  width: 32px;
  height: 32px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(0deg);
  margin-top: 8px;
  animation: bounce 1.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(10px) rotate(0deg); }
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .logo {
    font-size: 2.1rem;
  }
}
@media (min-width: 1024px) {
  .hero-header {
    padding: 2.5rem 4rem 0 4rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.social-icon:hover {
  background: #FF416C;
  box-shadow: 0 2px 8px rgba(255,65,108,0.15);
}
.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.cta-buttons .store-btn svg {
  width: 28px;
  height: 28px;
}

.cta-buttons .store-btn.appgallery svg rect {
  stroke: #FF416C;
  stroke-width: 1.5;
}

@media (max-width: 900px) {
  .hero-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1rem 0 1rem;
    gap: 0;
  }
  .logo {
    font-size: 1.8rem;
  }
  .cta-header {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .social-nav {
    gap: 1.2rem;
  }
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .store-btn {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    min-height: 60px;
    padding: 1rem 1.2rem;
  }
  .store-icon {
    width: 48px;
    height: 48px;
  }
  .store-icon svg {
    width: 36px;
    height: 36px;
  }
  .store-text {
    min-width: 0;
  }
  .hero-desc {
    font-size: 1.05rem;
    margin-top: 0.7rem;
  }
  .made-with-inner, .music-inner, .feature-inner {
    flex-direction: column;
    gap: 2.2rem;
    align-items: stretch;
    padding: 0 1rem;
  }
  .made-left h2, .music-left h2, .feature-left h2 {
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
  }
  .feature-list, .music-title, .feature-desc {
    font-size: 1rem;
  }
  .tag-buttons {
    flex-direction: column;
    gap: 0.7rem;
  }
  .tag-btn {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.7rem 1.1rem;
    text-align: left;
  }
  .music-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .music-card {
    padding: 0.7rem 0.5rem 0.7rem 0.5rem;
  }
  .dancer-mockup {
    width: 260px;
    height: 380px;
  }
  .dancer-img {
    width: 200px;
    height: 280px;
  }
  .dancer-mockup::before {
    width: 220px;
    height: 220px;
  }
  .feature-banner, .made-with, .music-library {
    padding: 2rem 0 1.2rem 0;
  }
  .feature-go-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.7rem 1.2rem;
    min-height: 48px;
  }
  .musician-carousel {
    width: 100%;
    height: 120px;
    min-width: 0;
  }
  .musician-card {
    width: 100%;
    height: 100px;
    min-width: 0;
    padding: 0.5rem;
  }
  .musician-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
  }
  .musician-name {
    font-size: 0.95rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 1rem;
    align-items: stretch;
  }
  .footer-col, .footer-logo, .footer-meta {
    text-align: center !important;
    font-size: 1.05rem;
  }
  .footer-logo {
    font-size: 1.2rem;
  }
  .footer-center {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.05rem;
  }
  .footer-meta {
    font-size: 0.95rem;
  }
  .social-icon {
    width: 48px;
    height: 48px;
  }
  .social-icon svg {
    width: 28px;
    height: 28px;
  }
  .phone-mockup {
    width: 300px;
    height: 540px;
    border-radius: 1.5rem;
  }
  .mockup-img {
    border-radius: 1.5rem;
  }
  .mockup-arrow {
    width: 22px;
    height: 22px;
    font-size: 1rem;
    bottom: 12px;
    left: 8px;
    right: 8px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
    justify-content: flex-start;
  }
  .hero-header {
    padding: 1rem 0.5rem 0 0.5rem;
    margin-bottom: 0.1rem;
  }
  .logo {
    font-size: 1.6rem;
  }
  .cta-header {
    font-size: 0.95rem;
    padding: 0.4rem 0.7rem;
  }
  .hero-content {
    margin-top: 1.2rem;
  }
  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .store-top {
    font-size: 0.9rem;
  }
  .store-bottom {
    font-size: 1.4rem;
  }
  .cta-buttons {
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .store-btn {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
    min-height: 48px;
  }
  .store-icon {
    width: 36px;
    height: 36px;
  }
  .store-icon svg {
    width: 24px;
    height: 24px;
  }
  .store-text {
    min-width: 0;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }
  .made-with-inner, .music-inner, .feature-inner {
    padding: 0 0.5rem;
    gap: 1.2rem;
  }
  .made-left h2, .music-left h2, .feature-left h2 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }
  .feature-list, .music-title, .feature-desc {
    font-size: 0.92rem;
  }
  .tag-btn {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
    width: 100%;
    text-align: left;
  }
  .music-cards {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .music-card {
    padding: 0.5rem 0.3rem 0.5rem 0.3rem;
  }
  .dancer-mockup {
    width: 220px;
    height: 320px;
  }
  .dancer-img {
    width: 160px;
    height: 220px;
  }
  .dancer-mockup::before {
    width: 180px;
    height: 180px;
  }
  .feature-banner, .made-with, .music-library {
    padding: 1.2rem 0 0.7rem 0;
  }
  .feature-go-btn {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
    min-height: 40px;
    width: 100%;
  }
  .musician-carousel {
    width: 100%;
    height: 70px;
    min-width: 0;
  }
  .musician-card {
    width: 100%;
    height: 60px;
    min-width: 0;
    padding: 0.3rem;
  }
  .musician-card img {
    width: 32px;
    height: 32px;
    margin-bottom: 0.3rem;
  }
  .musician-name {
    font-size: 0.8rem;
  }
  .footer-inner {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem;
  }
  .footer-col, .footer-logo, .footer-meta {
    text-align: center !important;
    font-size: 0.85rem;
  }
  .footer-center {
    flex-direction: row;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  .social-icon {
    width: 36px;
    height: 36px;
  }
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
  .phone-mockup {
    width: 200px;
    height: 400px;
    border-radius: 0.7rem;
  }
  .mockup-img {
    border-radius: 0.7rem;
  }
  .mockup-arrow {
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
    bottom: 6px;
    left: 2px;
    right: 2px;
  }
}

/* GENEL SECTION DÜZENİ */
section {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.made-with-inner, .music-inner, .feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.made-with {
  background: #0E0E0E;
  padding: 5.5rem 0 4.5rem 0;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.made-with-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 5rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  box-sizing: border-box;
}
.music-library {
  background: #18181C;
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}
.music-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.feature-banner {
  background: #0E0E0E;
  padding: 3.5rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}
.feature-inner {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.feature-right {
  flex: 1 1 340px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 900px) {
  .made-with-inner, .music-inner, .feature-inner {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .made-with, .music-library, .feature-banner {
    padding: 2rem 2rem 1.2rem 2rem;
  }
  .made-with-inner, .music-inner, .feature-inner {
    padding: 0 0.5rem;
  }
}

.made-left {
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.made-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.feature-list {
  list-style: disc inside;
  color: #AAAAAA;
  font-size: 1.25rem;
  margin-bottom: 2.2rem;
  padding-left: 1rem;
  line-height: 1.7;
}
.feature-list li {
  margin-bottom: 0.7rem;
}
.tag-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.tag-btn {
  background: #2A2A2A;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 0.7rem 1.7rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  box-shadow: 0 2px 8px #0002;
  letter-spacing: 0.01em;
}
.tag-btn:hover {
  background: linear-gradient(90deg, #FF416C 0%, #FF4B2B 100%);
  color: #fff;
  box-shadow: 0 4px 16px #FF416C33;
}
.tag-btn.active {
  background: #fff;
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 16px #FF416C55;
}
.tag-btn.explore {
  background: linear-gradient(90deg, #FF416C 0%, #FF4B2B 100%);
  color: #fff;
  font-weight: 600;
  padding-right: 2.2rem;
}
.made-right {
  flex: 1 1 340px;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  width: 320px;
  height: 640px;
  border-radius: 2.5rem;
  box-shadow: 0 8px 32px #0008, 0 0 0 8px #222;
  overflow: hidden;
  position: relative;
  background: #18181C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2.5rem;
}
.mockup-arrow {
  position: absolute;
  bottom: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 0.85;
}
.mockup-arrow.left {
  left: 18px;
}
.mockup-arrow.right {
  right: 18px;
}
.mockup-arrow:hover {
  background: #FF416C;
  opacity: 1;
}

.music-left {
  flex: 2 1 100%;
  min-width: 320px;
  max-width: 1200px;
}
.music-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.7rem;
}
.music-right {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-left {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 420px;
}
.feature-left h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
}
.feature-desc {
  color: #AAAAAA;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.feature-go-btn {
  background: linear-gradient(90deg, #FF416C 0%, #FF4B2B 100%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 2.5rem;
  cursor: pointer;
  box-shadow: 0 2px 12px #FF416C33;
  transition: box-shadow 0.18s, filter 0.18s;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.feature-go-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #FF416C55 0%, #FF4B2B00 80%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  border-radius: 50%;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 0;
  pointer-events: none;
}
.feature-go-btn:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.feature-go-btn:hover {
  box-shadow: 0 4px 24px #FF416C99, 0 2px 8px #FF4B2B44;
  filter: brightness(1.08) drop-shadow(0 0 8px #FF416C);
}
.musician-carousel {
  position: relative;
  width: 320px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.musician-card {
  width: 220px;
  height: 220px;
  background: rgba(30,30,36,0.8);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s, transform 0.3s;
  z-index: 1;
  position: static;
  margin: 0 auto;
}
.musician-card.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: scale(1.06);
  position: static;
  margin: 0 auto;
}
.musician-card:hover {
  transform: scale(1.09) rotate(-2deg);
  box-shadow: 0 8px 32px 0 #FF416C44, 0 2px 8px rgba(0,0,0,0.18);
}
.musician-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px #FF416C33;
}
.musician-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .feature-inner {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
  }
  .feature-left, .feature-right {
    max-width: 100%;
  }
  .musician-carousel {
    width: 220px;
    height: 180px;
  }
  .musician-card {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 600px) {
  .feature-left h2 {
    font-size: 1.1rem;
  }
  .feature-desc {
    font-size: 0.95rem;
  }
  .feature-go-btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
  .musician-carousel {
    width: 120px;
    height: 90px;
  }
  .musician-card {
    width: 90px;
    height: 90px;
    padding: 0.5rem;
  }
  .musician-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
  }
  .musician-name {
    font-size: 0.85rem;
  }
}

/* --- MUSIC LIBRARY ANİMASYONLARI --- */
.music-card {
  background: rgba(30,30,36,0.7);
  backdrop-filter: blur(8px);
  border-radius: 1.3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 0.7rem 1rem 0.7rem;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.music-card:hover {
  transform: scale(1.045) rotate(-1deg);
  box-shadow: 0 8px 32px 0 #FF416C44, 0 2px 8px rgba(0,0,0,0.18);
  background: rgba(40,20,36,0.85);
}
.music-cover {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.18s;
}
.music-card:hover .music-cover {
  transform: rotate(6deg) scale(1.07);
}

.dancer-mockup {
  position: relative;
  width: 300px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dancer-img {
  width: 220px;
  height: 320px;
  object-fit: cover;
  border-radius: 50% 50% 48% 52%/60% 60% 40% 40%;
  box-shadow: 0 0 0 16px #FF416C22, 0 8px 32px #0008;
  background: #fff;
  position: relative;
  z-index: 2;
  animation: dancerGlow 2.5s infinite alternate;
}
@keyframes dancerGlow {
  0% { box-shadow: 0 0 0 16px #FF416C22, 0 8px 32px #0008; }
  100% { box-shadow: 0 0 32px 24px #FF416C55, 0 8px 32px #0008; }
}
.dancer-mockup::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #FF416C33 0%, #0E0E0E00 80%);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.svg-heart {
  position: absolute;
  left: 18px;
  top: 30px;
  animation: bounce 1.2s infinite;
}
.svg-note {
  position: absolute;
  right: 18px;
  top: 60px;
  animation: glow 1.6s infinite alternate;
}
.svg-arrow {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) rotate(-10deg);
  animation: rotateArrow 2.2s infinite linear;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes glow {
  0% { filter: drop-shadow(0 0 0 #FF416C); }
  100% { filter: drop-shadow(0 0 12px #FF416C); }
}
@keyframes rotateArrow {
  0% { transform: translateX(-50%) rotate(-10deg); }
  100% { transform: translateX(-50%) rotate(350deg); }
}

@media (max-width: 1100px) {
  .dancer-mockup {
    width: 220px;
    height: 320px;
  }
  .dancer-img {
    width: 160px;
    height: 220px;
  }
  .dancer-mockup::before {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 600px) {
  .dancer-mockup {
    width: 220px;
    height: 320px;
  }
  .dancer-img {
    width: 160px;
    height: 220px;
  }
  .dancer-mockup::before {
    width: 180px;
    height: 180px;
  }
}

/* --- MUSIC LIBRARY ANİMASYONLARI --- */
.music-left h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.7rem;
}

@media (max-width: 1100px) {
  .made-with-inner {
    gap: 2.5rem;
    padding: 0 1rem;
  }
  .phone-mockup {
    width: 180px;
    height: 440px;
  }
}
@media (max-width: 900px) {
  .made-with-inner {
    flex-direction: column;
    gap: 2.5rem;
    align-items: stretch;
    padding: 0 1rem;
  }
  .made-with {
    padding: 3rem 0 2rem 0;
    min-height: unset;
  }
  .phone-mockup {
    width: 300px;
    height: 540px;
    border-radius: 1.5rem;
  }
  .mockup-img {
    border-radius: 1.5rem;
  }
  .mockup-arrow {
    width: 22px;
    height: 22px;
    font-size: 1rem;
    bottom: 12px;
    left: 8px;
    right: 8px;
  }
  .slider {
    border-radius: 1.2rem;
  }
  .slider-img {
    border-radius: 1.2rem;
  }
  .slider-arrow {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
    left: 6px;
    right: 6px;
    bottom: 12px;
  }
}
@media (max-width: 600px) {
  .made-with-inner {
    padding: 0 2.5rem;
  }
  .made-left h2 {
    font-size: 1.3rem;
  }
  .feature-list {
    font-size: 1rem;
  }
  .tag-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1.1rem;
  }
  .phone-mockup {
    width: 200px;
    height: 400px;
    border-radius: 0.7rem;
  }
  .mockup-img {
    border-radius: 0.7rem;
  }
  .mockup-arrow {
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
    bottom: 6px;
    left: 2px;
    right: 2px;
  }
  .slider {
    border-radius: 0.7rem;
  }
  .slider-img {
    border-radius: 0.7rem;
  }
  .slider-arrow {
    width: 16px;
    height: 16px;
    font-size: 0.7rem;
    left: 2px;
    right: 2px;
    bottom: 6px;
  }
}

.footer {
  background: #111;
  color: #AAAAAA;
  width: 100%;
  padding: 3.5rem 0 2.5rem 0;
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}
.footer-col {
  text-align: center;
  font-size: 1.18rem;
  font-weight: 400;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #AAAAAA;
  text-align: left;
}
.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.18rem;
  font-weight: 500;
}
.footer-link {
  color: #AAAAAA;
  text-decoration: none;
  transition: color 0.18s;
  cursor: pointer;
}
.footer-link:hover {
  color: #fff;
}
.footer-sep {
  color: #888;
  font-size: 1.1em;
  margin: 0 0.2em;
}
.footer-meta {
  text-align: right;
  font-size: 1.05rem;
  color: #888;
  font-weight: 400;
}
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0 1rem;
  }
  .footer-col, .footer-logo, .footer-meta {
    text-align: center !important;
  }
  .footer-center {
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-meta {
    font-size: 0.95rem;
  }
}

/* --- GLOBAL ICON STANDARDS --- */
.icon, .store-icon svg, .social-icon svg, .tag-btn svg, .music-card svg, .musician-card svg {
  width: 36px;
  height: 36px;
  min-width: 28px;
  min-height: 28px;
  max-width: 44px;
  max-height: 44px;
  display: block;
  margin: 0 auto;
}
.social-icon, .store-icon, .tag-btn, .music-card, .musician-card {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* --- CARD & IMAGE STANDARDS --- */
.music-card, .musician-card {
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  background: rgba(30,30,36,0.7);
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.music-cover, .musician-card img, .slider-img, .dancer-img {
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  width: 100%;
  max-width: 90px;
  min-width: 48px;
  min-height: 48px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: block;
}
.dancer-img {
  border-radius: 50% 50% 48% 52%/60% 60% 40% 40%;
  max-width: 220px;
  min-width: 60px;
  min-height: 80px;
}
.phone-mockup, .slider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-img {
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.music-info, .musician-name {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.music-card, .musician-card {
  padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  min-width: 0;
}

/* --- GAP & PADDING STANDARDS --- */
section, .footer {
  padding-left: 1rem;
  padding-right: 1rem;
}
.made-with-inner, .music-inner, .feature-inner, .footer-inner {
  gap: 2.2rem;
}
.music-cards, .tag-buttons {
  gap: 1.2rem;
}
.cta-buttons {
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .icon, .store-icon svg, .social-icon svg, .tag-btn svg, .music-card svg, .musician-card svg {
    width: 32px;
    height: 32px;
  }
  .music-cover, .musician-card img, .slider-img, .dancer-img {
    max-width: 70px;
    min-width: 36px;
    min-height: 36px;
  }
  .dancer-img {
    max-width: 110px;
    min-width: 36px;
    min-height: 36px;
  }
}
@media (max-width: 600px) {
  .icon, .store-icon svg, .social-icon svg, .tag-btn svg, .music-card svg, .musician-card svg {
    width: 28px;
    height: 28px;
  }
  .music-cover, .musician-card img, .slider-img, .dancer-img {
    max-width: 70px;
    min-width: 24px;
    min-height: 24px;
  }
  .dancer-img {
    max-width: 60px;
    min-width: 24px;
    min-height: 24px;
  }
}

.store-icon.apple {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  max-width: 54px;
  max-height: 54px;
  align-self: center;
  margin-top: 4px;
}
.store-icon.apple svg {
  width: 54px;
  height: 54px;
  display: block;
  vertical-align: middle;
}
