/* Template-002 — JucyRush esintili tropik gradient tasarım */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Fredoka:wght@500;600&display=swap');

:root {
  --bg: #fef4ff;
  --bg-strong: #ffdbf1;
  --text: #1c0f2d;
  --text-muted: #5b4d73;
  --brand: #ff3cac;
  --brand-2: #784ba0;
  --brand-3: #2b86c5;
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 25px 60px rgba(120, 75, 160, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(255, 60, 172, 0.08), transparent 50%),
              radial-gradient(circle at 80% 0%, rgba(43, 134, 197, 0.12), transparent 55%),
              linear-gradient(160deg, #fff8ff 0%, #f9f7ff 40%, #fbf0ff 100%);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('./bg2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}

.container {
  width: min(1180px, 94vw);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(120, 75, 160, 0.1);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(120, 75, 160, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  font-family: 'Fredoka', 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--brand-2);
}

.nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.nav a:hover {
  color: var(--brand);
  background: rgba(255, 60, 172, 0.1);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 60, 172, 0.35);
}

.btn-outline {
  border: 2px solid rgba(43, 134, 197, 0.3);
  background: transparent;
  color: var(--brand-2);
}

.btn-ghost {
  background: rgba(120, 75, 160, 0.1);
  color: var(--brand-2);
}

.btn:hover {
  transform: translateY(-4px);
}

.hero {
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 60, 172, 0.3), transparent 70%);
  filter: blur(40px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--brand-2);
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.badges {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.badges li {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed rgba(120, 75, 160, 0.3);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--brand-2);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.countdown-block {
  background: var(--card);
  border-radius: 22px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(120, 75, 160, 0.1);
  box-shadow: var(--shadow);
}

.countdown-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand);
}

.countdown-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hero-card {
  background: var(--card);
  border-radius: 36px;
  padding: 2.4rem;
  border: 1px solid rgba(120, 75, 160, 0.1);
  box-shadow: var(--shadow);
  position: relative;
}

.prize-head {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--brand);
}

.hero-card h2 {
  font-size: 2rem;
  margin: 0.8rem 0;
  color: var(--text);
}

.hero-card .value {
  color: var(--brand-2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.prize-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.features {
  padding: 80px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 1.8rem;
  border: 1px solid rgba(120, 75, 160, 0.08);
  box-shadow: var(--shadow);
}

.feature h3 {
  color: var(--brand-2);
  margin-bottom: 0.6rem;
}

.feature p {
  color: var(--text-muted);
}

.tickets {
  padding: 80px 0;
}

.tickets h2 {
  text-align: center;
  font-size: 2.4rem;
  font-family: 'Fredoka', sans-serif;
  color: var(--brand-2);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.ticket-card {
  background: #fff;
  border-radius: 34px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border: 1px solid rgba(120, 75, 160, 0.08);
  box-shadow: var(--shadow);
}

.ticket-card .price {
  font-size: 3rem;
  color: var(--brand);
  font-weight: 700;
}

.ticket-card p {
  color: var(--text-muted);
}

.ticket-card.popular {
  border-color: rgba(255, 60, 172, 0.35);
  box-shadow: 0 35px 60px rgba(255, 60, 172, 0.25);
}

.ticket-card.popular::after {
  content: 'BEST DEAL';
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 0.75rem;
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), var(--brand-3));
}

.responsible {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(120, 75, 160, 0.1);
}

.responsible h2 {
  color: var(--brand-2);
}

.responsible p {
  color: var(--text-muted);
  max-width: 760px;
}

.licenses {
  margin: 2rem 0;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px dashed rgba(120, 75, 160, 0.2);
  background: rgba(120, 75, 160, 0.05);
  color: var(--brand-2);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.links a {
  text-decoration: none;
  color: var(--brand-2);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(120, 75, 160, 0.08);
}

.site-footer {
  text-align: center;
  padding: 50px 0;
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(120, 75, 160, 0.1);
}

.footer-inner {
  color: var(--text-muted);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1000;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 15, 45, 0.35);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: clamp(1.8rem, 5vw, 2.6rem);
  width: min(520px, 100%);
  box-shadow: 0 30px 60px rgba(120, 75, 160, 0.25);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(120, 75, 160, 0.1);
  color: var(--brand-2);
  font-size: 1.2rem;
}

.form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text-muted);
  font-weight: 600;
}

.form input {
  border-radius: 16px;
  border: 1px solid rgba(120, 75, 160, 0.2);
  padding: 0.85rem 1rem;
  font-family: inherit;
}

.form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 60, 172, 0.2);
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.age-verification-modal {
  z-index: 1001;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    order: -1;
  }
  .countdown {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
  }
  .hero,
  .features,
  .tickets,
  .responsible {
    padding: 70px 0;
  }
  .btn,
  .links a {
    width: 100%;
    text-align: center;
  }
}
