@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&family=Crimson+Pro:wght@400;600;700&display=swap');

:root {
  --midnight: #0d1b2a;
  --frost: #7ec8e3;
  --ice: #a8dadc;
  --snow: #f1faee;
  --pale: #e8f4f8;
  --text: #1d3557;
  --muted: #5c7a94;
  --border: rgba(126,200,227,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--snow);
  color: var(--text);
  line-height: 1.8;
}

h1, h2, h3 { font-family: 'Crimson Pro', serif; }

a { color: var(--frost); text-decoration: none; transition: color 0.3s; }
a:hover { color: #457b9d; }

.cr-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 58px;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.cr-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--frost);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cr-nav { display: flex; gap: 1.5rem; list-style: none; }
.cr-nav a { color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cr-nav a:hover { color: var(--frost); }

.cr-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.cr-burger span { width: 24px; height: 2px; background: var(--frost); display: block; }

.cr-mobile {
  display: none;
  position: fixed;
  top: 58px; left: 0; right: 0;
  background: var(--midnight);
  z-index: 999;
  flex-direction: column;
  padding: 0.5rem 2rem 1rem;
}
.cr-mobile.show { display: flex; }
.cr-mobile a { color: #fff; padding: 0.6rem 0; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }

@media (max-width: 768px) {
  .cr-nav { display: none; }
  .cr-burger { display: flex; }
}

.frost-hero {
  margin-top: 58px;
  background: linear-gradient(180deg, var(--midnight), #1b3a4b, #457b9d);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem 5rem;
}

.frost-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  color: var(--ice);
}

.frost-hero p { max-width: 600px; margin: 0 auto 2rem; opacity: 0.85; font-size: 1.05rem; }

.btn-ice {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: var(--frost);
  color: var(--midnight);
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-ice:hover { background: var(--ice); transform: translateY(-2px); color: var(--midnight); }

.cryo-bar {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.8rem;
  background: var(--pale);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.cryo-item {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cryo-dot { width: 8px; height: 8px; border-radius: 50%; }
.cd-r { background: #e63946; }
.cd-g { background: #2a9d8f; }
.cd-y { background: #e9c46a; }

.cr-game {
  padding: 3.5rem 2rem;
  text-align: center;
  background: var(--snow);
}

.cr-game h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 1.5rem; color: var(--text); }

.cr-game-frame {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.cr-game-frame iframe { width: 100%; height: 580px; border: none; display: block; }

@media (max-width: 768px) { .cr-game-frame iframe { height: 370px; } }

.cr-features {
  padding: 3.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.cr-feat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  text-align: center;
}

.cr-feat .fi { font-size: 2rem; margin-bottom: 0.8rem; }
.cr-feat h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.cr-feat p { color: var(--muted); font-size: 0.9rem; }

.cr-about {
  padding: 3.5rem 2rem;
  background: var(--midnight);
  color: #fff;
  text-align: center;
}

.cr-about .inner { max-width: 780px; margin: 0 auto; }
.cr-about h2 { color: var(--frost); font-size: 1.8rem; margin-bottom: 1.2rem; }
.cr-about p { opacity: 0.8; margin-bottom: 1rem; font-size: 1rem; }

.cr-page {
  margin-top: 58px;
  padding: 3rem 2rem;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
  min-height: calc(100vh - 58px - 140px);
}
.cr-page h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; color: var(--text); }
.cr-page h2 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem; color: #457b9d; }
.cr-page p { color: var(--muted); margin-bottom: 1rem; font-size: 0.97rem; }
.cr-page ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--muted); }
.cr-page li { margin-bottom: 0.3rem; }

.cr-tip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 960px;
}
.cr-tip h3 { color: var(--text); margin-bottom: 0.3rem; }
.cr-tip p { color: var(--muted); font-size: 0.9rem; }

.cr-footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.5);
  padding: 2rem;
  text-align: center;
}
.cr-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.cr-footer-links a { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.cr-footer-links a:hover { color: var(--frost); }
.cr-footer-resp { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; }
.cr-footer-resp p { font-size: 0.75rem; opacity: 0.45; margin-bottom: 0.4rem; }
.cr-footer-resp a { color: var(--frost); margin: 0 0.4rem; font-size: 0.78rem; }

.cr-age-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,42,0.96);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-age-box {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.cr-age-box h2 { color: var(--text); font-size: 1.3rem; margin-bottom: 0.7rem; }
.cr-age-box p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

.cr-age-btns { display: flex; gap: 0.8rem; justify-content: center; }
.cr-age-btns button {
  padding: 0.6rem 1.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.cr-yes { background: var(--frost); color: var(--midnight); }
.cr-yes:hover { background: var(--ice); }
.cr-no { background: #e2e8f0; color: var(--text); }
.cr-no:hover { background: #ccc; }

.cr-blocked {
  position: fixed; inset: 0;
  background: var(--midnight);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.cr-blocked h2 { color: #e63946; font-size: 1.8rem; margin-bottom: 0.8rem; }
