/* Template-005 — PlayTreasury + tropik pastel harmanı */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Marcellus&display=swap');

:root {
  --bg: #f6fbff;
  --bg-alt: #e2f3ff;
  --text: #142136;
  --muted: #5c6f85;
  --brand: #ff8c42;
  --brand-2: #ff5f6d;
  --brand-3: #3fd0c9;
  --card: rgba(255, 255, 255, 0.95);
  --shadow: 0 20px 50px rgba(20, 33, 54, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fdfcfb 0%, #eef7ff 45%, #f6fbff 100%);
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 95, 109, 0.08), transparent 40%),
              radial-gradient(circle at 85% 10%, rgba(63, 208, 201, 0.12), transparent 50%);
}

.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.92);
  border-bottom: 1px solid rgba(20, 33, 54, 0.08);
  backdrop-filter: blur(10px);
  z-index: 10;
}

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

.brand {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 0.1em;
  color: var(--brand-2);
}

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

.nav a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  background: rgba(20, 33, 54, 0.03);
}

.nav a:hover {
  color: var(--brand-2);
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 20px 30px rgba(255, 95, 109, 0.25);
}

.btn-outline {
  border: 2px solid rgba(63, 208, 201, 0.3);
  background: transparent;
  color: var(--brand-3);
}

.btn-ghost {
  background: rgba(63, 208, 201, 0.1);
  color: var(--brand-3);
}

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

.hero {
  padding: 110px 0 80px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 12%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.3), transparent 65%);
  filter: blur(40px);
}

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

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

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

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

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

.countdown-block {
  background: var(--card);
  border-radius: 24px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(20, 33, 54, 0.05);
  box-shadow: var(--shadow);
}

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

.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--muted);
}

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

.badges li {
  padding: 0.45rem 0.9rem;
  border-radius: 12px;
  border: 1px dashed rgba(20, 33, 54, 0.15);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}

.hero-card {
  background: linear-gradient(145deg, #13233b, #1c2f4f);
  border-radius: 40px;
  padding: 2.6rem;
  color: #fefefe;
  box-shadow: 0 40px 70px rgba(15, 31, 53, 0.5);
}

.prize-head {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card h2 {
  font-size: 2.1rem;
  margin: 1rem 0 0.6rem;
}

.hero-card .value {
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.prize-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.7;
}

.features {
  padding: 90px 0;
}

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

.feature {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(20, 33, 54, 0.06);
  box-shadow: var(--shadow);
}

.feature h3 {
  font-family: 'Marcellus', serif;
  color: var(--brand-2);
  margin-bottom: 0.6rem;
}

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

.tickets {
  padding: 90px 0;
}

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

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

.ticket-card {
  background: var(--card);
  border-radius: 34px;
  padding: 2rem;
  border: 1px solid rgba(20, 33, 54, 0.04);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

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

.ticket-card.popular::after {
  content: 'TOP PICK';
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--brand-2);
}

.responsible {
  padding: 100px 0;
  background: #13233b;
  color: #f2f6ff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible h2 {
  font-family: 'Marcellus', serif;
  color: var(--brand);
}

.responsible p {
  color: rgba(242, 246, 255, 0.8);
  max-width: 780px;
}

.licenses {
  margin: 2rem 0;
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fefefe;
}

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

.links a {
  text-decoration: none;
  color: var(--brand-3);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 208, 201, 0.4);
}

.site-footer {
  text-align: center;
  padding: 60px 0;
  background: rgba(19, 35, 59, 0.8);
  color: rgba(255, 255, 255, 0.7);
}

.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(20, 33, 54, 0.55);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: clamp(2rem, 5vw, 3rem);
  width: min(520px, 100%);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 33, 54, 0.06);
}

.form {
  display: grid;
  gap: 1rem;
}

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

.form input {
  border-radius: 18px;
  border: 1px solid rgba(20, 33, 54, 0.15);
  padding: 0.85rem 1rem;
}

.form input:focus {
  outline: none;
  border-color: var(--brand-3);
  box-shadow: 0 0 0 3px rgba(63, 208, 201, 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(90px, 1fr));
  }
}

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