/* ============================================
   NARCISSUS COMMUNITY — Tournament Site
   Color Palette:
   - Bordo (primary): #6E1F36
   - Pembe (accent): #FF4D8D
   - Açık pembe: #FFC2D6
   - Koyu BG: #1A0A12
   - Krem: #F7E9EE
============================================ */

:root {
  --bordo: #6E1F36;
  --bordo-dark: #4A1424;
  --bordo-deep: #2B0B14;
  --pink: #FF4D8D;
  --pink-light: #FFC2D6;
  --pink-glow: rgba(255, 77, 141, 0.35);
  --bg-dark: #1A0A12;
  --bg-card: #2B0B14;
  --cream: #F7E9EE;
  --text: #F7E9EE;
  --text-muted: #C9A8B4;
  --border: rgba(255, 77, 141, 0.18);
  --success: #4ADE80;
  --warning: #FBBF24;
  --danger: #F87171;
  --font-display: 'Russo One', 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(110, 31, 54, 0.6) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 77, 141, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #1A0A12 0%, #0F0509 100%);
  background-attachment: fixed;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--cream);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
a { color: var(--pink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pink-light); }

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

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 5, 9, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 1px;
}
.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--bordo);
  padding: 2px;
  box-shadow: 0 0 14px var(--pink-glow);
}
.nav-brand span small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--pink);
  letter-spacing: 2px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255, 77, 141, 0.1); color: var(--pink-light); }
.nav-links a.active {
  background: var(--bordo);
  color: var(--cream);
}
.nav-cta {
  background: linear-gradient(135deg, var(--pink) 0%, #E63976 100%);
  padding: 0.55rem 1.1rem !important;
  color: white !important;
  border-radius: 8px;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px var(--pink-glow);
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 5, 9, 0.97);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.9rem 1rem; }
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== HERO ========== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 1.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 77, 141, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 77, 141, 0.12);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--pink-light);
  margin-bottom: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--pink-light) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pink);
  display: block;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow:
    0 0 60px rgba(255, 77, 141, 0.3),
    0 20px 50px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-logo img { max-width: 260px; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #E63976 100%);
  color: white;
  box-shadow: 0 6px 20px var(--pink-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255, 77, 141, 0.5);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: rgba(255, 77, 141, 0.1);
  border-color: var(--pink);
  color: var(--cream);
}
.btn-ghost {
  background: var(--bordo);
  color: var(--cream);
}
.btn-ghost:hover { background: var(--bordo-dark); color: var(--cream); }

/* ========== SECTIONS ========== */
section.section {
  padding: 5rem 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  color: var(--pink);
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}
.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ========== CARDS ========== */
.card {
  background: linear-gradient(180deg, rgba(110, 31, 54, 0.25) 0%, rgba(43, 11, 20, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: 0 10px 30px rgba(255, 77, 141, 0.18);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 77, 141, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; color: var(--cream); }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ========== TOURNAMENT INFO ========== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.info-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}
.info-tile .label {
  color: var(--pink);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.info-tile .value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
}

/* ========== PRIZE PODIUM ========== */
.podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: end;
  margin-top: 2rem;
}
.podium-card {
  background: linear-gradient(180deg, var(--bordo) 0%, var(--bordo-deep) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.podium-card.gold {
  border-color: #FFD700;
  background: linear-gradient(180deg, #6E1F36 0%, #8B2547 100%);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}
.podium-card.silver { border-color: #C0C0C0; }
.podium-card.bronze { border-color: #CD7F32; }
.podium-medal { font-size: 3rem; margin-bottom: 0.5rem; }
.podium-place {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.podium-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--pink);
}
@media (max-width: 700px) {
  .podium { grid-template-columns: 1fr; }
  .podium-card.gold { transform: none; }
}

/* ========== SCHEDULE ========== */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink) 0%, transparent 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 0.4rem;
  width: 16px;
  height: 16px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--pink);
}
.timeline-date {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}
.timeline-item h3 { margin-bottom: 0.3rem; }
.timeline-item p { color: var(--text-muted); }

/* ========== RULES PAGE ========== */
.rules-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.rules-toc {
  position: sticky;
  top: 80px;
  align-self: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.rules-toc h3 {
  color: var(--pink);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.rules-toc ol {
  list-style: none;
  counter-reset: toc;
}
.rules-toc ol li {
  counter-increment: toc;
  margin-bottom: 0.4rem;
}
.rules-toc ol li::before {
  content: counter(toc) ". ";
  color: var(--pink);
  font-weight: 600;
}
.rules-toc a {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: inline;
}
.rules-toc a:hover { color: var(--pink-light); }

.rules-content { min-width: 0; }
.rules-content h2 {
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-top: 1px solid var(--border);
  color: var(--pink-light);
}
.rules-content h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.rules-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--cream);
}
.rules-content p, .rules-content li {
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.rules-content ul, .rules-content ol { padding-left: 1.5rem; }
.rules-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
}
.rules-content th, .rules-content td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
}
.rules-content th {
  background: rgba(255, 77, 141, 0.1);
  color: var(--pink-light);
  font-weight: 600;
}
.rules-content blockquote {
  border-left: 3px solid var(--pink);
  padding: 0.8rem 1.2rem;
  background: rgba(255, 77, 141, 0.06);
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
  color: var(--cream);
}

@media (max-width: 900px) {
  .rules-layout { grid-template-columns: 1fr; }
  .rules-toc { position: static; max-height: none; }
}

/* ========== TEAMS GRID ========== */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
}
.team-card:hover { border-color: var(--pink); transform: translateY(-3px); }
.team-logo {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--bordo) 100%);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: white;
}
.team-card h4 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.team-card .members {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.team-card .status {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.status.confirmed { background: rgba(74, 222, 128, 0.15); color: var(--success); }
.status.pending { background: rgba(251, 191, 36, 0.15); color: var(--warning); }

/* ========== BRACKET ========== */
.bracket-wrapper {
  overflow-x: auto;
  padding: 2rem 0;
}
.bracket {
  display: flex;
  gap: 3rem;
  min-width: 900px;
}
.bracket-round {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1rem;
}
.bracket-round-title {
  text-align: center;
  font-family: var(--font-display);
  color: var(--pink);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.match {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.match:hover { border-color: var(--pink); }
.match-team {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}
.match-team.winner {
  background: rgba(255, 77, 141, 0.12);
  color: var(--pink-light);
  font-weight: 600;
}
.match-team + .match-team { border-top: 1px solid var(--border); }
.match-score { font-family: var(--font-display); color: var(--cream); }

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-q {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--cream);
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--pink);
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.faq-item.open .faq-a {
  padding: 0 1.5rem 1.2rem;
  max-height: 500px;
}

/* ========== FORM ========== */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--pink-light);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.form-group label .req { color: var(--pink); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-glow);
}
.form-group .help {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.player-block {
  background: rgba(255, 77, 141, 0.04);
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 1rem 1rem 0.2rem;
  margin-bottom: 1rem;
}
.player-block h4 {
  color: var(--pink);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--pink);
}
.checkbox-group label {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}
.alert-success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: none;
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, transparent 0%, #0A0307 100%);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--pink);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--pink); }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(255, 77, 141, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(110, 31, 54, 0.3) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
}
.breadcrumb {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.breadcrumb a { color: var(--pink); }

/* ========== CONTACT GRID ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 77, 141, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-item .label {
  font-size: 0.78rem;
  color: var(--pink);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-item .value { color: var(--cream); font-weight: 500; word-break: break-all; }

/* ========== COUNTDOWN ========== */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto 0;
}
.countdown-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 0.5rem;
  text-align: center;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--pink);
  display: block;
  line-height: 1;
}
.countdown-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--bordo); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }
