:root{
  --bg1:#f6f2ff;
  --bg2:#efe9ff;

  --glass:rgba(255,255,255,0.55);
  --glass-strong:rgba(255,255,255,0.75);

  --border:rgba(255,255,255,0.8);
  --accent:#ff6fae;
  --text:#2a2340;
}

*{
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
}

html,body{
  margin:0;
  padding:0;
  min-height:100vh;
  width:100%;
}

body{
  font-family:-apple-system,Roboto,sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -200px,#ffffff 0%,transparent 60%),
    linear-gradient(160deg,var(--bg1),var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

/* =========================
   APP
========================= */

.app{
  min-height:100vh;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* =========================
   TOP
========================= */

.top{
  width:100%;
  padding-top:28px;
  text-align:center;
  position:relative;
}

.sphere{
  width:100px;
  height:100px;
  border-radius:50%;
  margin:0 auto;
  background:
    radial-gradient(circle at 30% 25%,#fff 0%,rgba(255,255,255,.3) 40%),
    linear-gradient(145deg,#ff9fc6,#ffd3e6);
  box-shadow:
    0 30px 70px rgba(255,111,174,.45),
    inset 0 0 0 2px rgba(255,255,255,.6);
}

.nika-text{
  margin-top:16px;
  font-size:16px;
  line-height:1.4;
}

/* =========================
   BELL
========================= */

.bell{
  position:absolute;
  top:14px;
  right:16px;
  font-size:20px;
}

.badge{
  position:absolute;
  top:-6px;
  right:-6px;
  background:#ff4d8d;
  color:#fff;
  border-radius:50%;
  padding:2px 6px;
  font-size:11px;
}

/* =========================
   NEWS
========================= */

.news-widget{
  margin:18px auto 6px;
  width:calc(100% - 32px);
  max-width:420px;
  padding:18px 20px;
  border-radius:26px;

  background:var(--glass-strong);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);

  border:1px solid var(--border);

  box-shadow:
    0 25px 60px rgba(0,0,0,.08),
    0 10px 30px rgba(255,111,174,.25);
}

.news-title{
  font-size:16px;
  font-weight:600;
  margin-bottom:10px;
}

.news-item{
  font-size:15px;
  line-height:1.45;
}

/* =========================
   CONTENT
========================= */

.content{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:20px 16px 30px;
}

/* =========================
   GRID
========================= */

.actions-grid{
  width:100%;
  max-width:420px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:12px;
}

/* =========================
   TILES (УСИЛЕНО)
========================= */

.action-tile{
  height:118px;
  border-radius:28px;

  background:var(--glass);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border:1px solid var(--border);

  box-shadow:
    0 30px 70px rgba(0,0,0,.10),
    0 14px 36px rgba(255,111,174,.25);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;

  transition:transform .2s ease, box-shadow .2s ease;
}

.action-tile:active{
  transform:scale(.97);
  box-shadow:
    0 18px 40px rgba(0,0,0,.12),
    0 8px 20px rgba(255,111,174,.35);
}

.action-tile svg{
  width:36px;
  height:36px;
  display:block;
  fill:none;
  stroke:var(--accent);
  stroke-width:2;
}

.action-tile span{
  font-size:15px;
  font-weight:500;
}

/* =========================
   CALL CTA
========================= */

.call-cta{
  margin-top:26px;
  width:100%;
  max-width:420px;
  height:68px;
  border-radius:34px;

  background:linear-gradient(145deg,#ff6fae,#ff9fc6);

  color:#fff;
  font-size:17px;
  font-weight:600;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  text-decoration:none;

  box-shadow:
    0 35px 80px rgba(255,111,174,.55),
    0 10px 30px rgba(0,0,0,.15);
}

.call-cta svg{
  width:22px;
  height:22px;
  fill:none;
  stroke:#fff;
  stroke-width:2;
}

/* BOOKING MODAL */

.booking-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  display:none;
  flex-direction:column;
  z-index:1000;
}

.booking-modal.show{
  display:flex;
}

.booking-header{
  height:56px;
  background:rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  font-size:16px;
  font-weight:600;
}

.booking-header button{
  background:none;
  border:none;
  font-size:22px;
  cursor:pointer;
}

.booking-modal iframe{
  flex:1;
  width:100%;
  border:none;
}

/* =========================
   AUTH SCREEN — MOBILE SAFE
========================= */

.auth-screen{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px 16px;
  position:relative;
}

/* МАТОВАЯ ПОДЛОЖКА */
.auth-backdrop{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.45);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  z-index:0;
}

/* ЦЕНТРАЛЬНЫЙ БЛОК */
.auth-layer{
  position:relative;
  z-index:1;
  width:100%;
  max-width:360px;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}

/* СФЕРА — ДЫШИТ */
.auth-sphere{
  width:110px;
  height:110px;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 25%,#fff 0%,rgba(255,255,255,.35) 45%),
    linear-gradient(145deg,#ff9fc6,#ffd3e6);

  box-shadow:
    0 20px 60px rgba(255,111,174,.45),
    inset 0 0 0 2px rgba(255,255,255,.6);

  animation:breath 4.5s ease-in-out infinite;
}

@keyframes breath{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.06); }
}

/* ЖИВАЯ СТРОКА */
.auth-typing{
  width:100%;
  max-width:320px;

  min-height:48px;
  text-align:center;

  font-size:16px;
  line-height:1.4;

  white-space:normal;
  word-break:break-word;
}

/* ФОРМА */
.auth-form{
  width:100%;
  max-width:320px;

  display:flex;
  flex-direction:column;
  gap:14px;
}

.auth-form input{
  width:100%;
  height:44px;

  border:none;
  border-bottom:1px solid rgba(0,0,0,.25);
  background:transparent;

  font-size:16px;
  padding:0 6px;
  outline:none;
}

.auth-form button{
  width:100%;
  height:44px;

  border-radius:22px;
  background:linear-gradient(145deg,#ff6fae,#ff9fc6);

  border:none;
  color:#fff;
  font-size:15px;
  font-weight:500;

  box-shadow:
    0 10px 30px rgba(255,111,174,.45);
}