@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Montserrat:wght@700;800;900&family=Noto+Sans+Myanmar:wght@400;600;700;800&display=swap');

:root {
  --bg: #03040a;
  --panel: rgba(9, 13, 27, 0.68);
  --panel-strong: rgba(16, 22, 39, 0.82);
  --line: rgba(255, 255, 255, 0.16);
  --line-hot: rgba(245, 158, 11, 0.42);
  --text: #f8fafc;
  --muted: rgba(203, 213, 225, 0.86);
  --gold: #fbbf24;
  --red: #ff1b1b;
  --blue: #2563eb;
  --green: #16a34a;
  --purple: #7c3aed;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Montserrat', 'Noto Sans Myanmar', system-ui, sans-serif;
  --font-body: 'Inter', 'Noto Sans Myanmar', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body.seo-page {
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding: clamp(5.8rem, 8vw, 7.4rem) 1rem 2.4rem;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 27, 27, 0.42), transparent 31%),
    radial-gradient(circle at 86% 12%, rgba(245, 158, 11, 0.3), transparent 30%),
    radial-gradient(circle at 72% 96%, rgba(37, 99, 235, 0.22), transparent 34%),
    linear-gradient(140deg, #03040a 0%, #070713 42%, #120204 100%);
  isolation: isolate;
}

body.seo-page::before,
body.seo-page::after {
  content: "";
  position: fixed;
  z-index: -2;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(26px);
  opacity: 0.75;
  animation: orbFloat 12s ease-in-out infinite;
}

body.seo-page::before {
  left: -10rem;
  top: -8rem;
  background: conic-gradient(from 180deg, rgba(255, 27, 27, 0.45), rgba(245, 158, 11, 0.32), rgba(37, 99, 235, 0.16), rgba(255, 27, 27, 0.45));
}

body.seo-page::after {
  right: -12rem;
  bottom: -10rem;
  background: conic-gradient(from 20deg, rgba(245, 158, 11, 0.35), rgba(255, 27, 27, 0.2), rgba(124, 58, 237, 0.24), rgba(245, 158, 11, 0.35));
  animation-delay: -5s;
}

.seo-page main {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(1.3rem, 4vw, 3.2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    var(--panel);
  box-shadow:
    0 40px 140px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(30px) saturate(170%);
  animation: panelReveal 0.95s var(--ease) both;
}

.seo-page main::before {
  content: "MIN THAR GYI";
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  animation: itemReveal 0.7s var(--ease) 0.18s both;
}

.seo-page main::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: glassSweep 3.8s ease-in-out 1.2s infinite;
}

.seo-home-button {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 27, 27, 0.96), rgba(122, 0, 0, 0.95)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 58px rgba(255, 27, 27, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  backdrop-filter: blur(18px) saturate(170%);
  animation: buttonDrop 0.75s var(--ease) both, buttonPulse 2.6s ease-in-out 1.2s infinite;
}

.seo-home-button::before {
  content: "<";
  margin-right: 0.55rem;
  color: var(--gold);
  font-size: 1rem;
}

.seo-home-button:hover {
  color: #ffffff;
  transform: translateX(-50%) translateY(-2px);
  filter: brightness(1.08);
}

.seo-page img {
  display: block;
  width: 96px;
  height: 96px;
  margin-top: 1.15rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: 0 22px 64px rgba(255, 27, 27, 0.28);
  animation: itemReveal 0.7s var(--ease) 0.26s both;
}

.seo-page h1 {
  margin: 1.15rem 0 0;
  max-width: 760px;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  background: linear-gradient(92deg, #ffffff 0%, #fbbf24 42%, #ff3b3b 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleReveal 0.82s var(--ease) 0.34s both;
}

.seo-page p {
  color: var(--muted);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  line-height: 1.85;
  animation: itemReveal 0.7s var(--ease) 0.48s both;
}

.seo-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.45rem;
  animation: itemReveal 0.7s var(--ease) 0.42s both;
}

.seo-action-btn,
.seo-mini-btn,
.seo-page p:last-child a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.25s ease, filter 0.25s ease, border-color 0.25s ease;
}

.seo-action-btn::after,
.seo-mini-btn::after,
.seo-page p:last-child a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.seo-action-btn:hover,
.seo-mini-btn:hover,
.seo-page p:last-child a:hover {
  color: #ffffff;
  transform: translateY(-3px);
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.seo-action-btn:hover::after,
.seo-mini-btn:hover::after,
.seo-page p:last-child a:hover::after {
  transform: translateX(120%);
}

.viber-btn {
  background: linear-gradient(135deg, var(--purple), #4c1d95);
}

.messenger-btn {
  background: linear-gradient(135deg, #0ea5e9, var(--blue));
}

.tiktok-btn {
  background: linear-gradient(135deg, #111827, #020617);
}

.viber-btn::before {
  content: "Viber";
}

.messenger-btn::before {
  content: "Msg";
}

.tiktok-btn::before {
  content: "TikTok";
}

.viber-btn::before,
.messenger-btn::before,
.tiktok-btn::before,
.call-btn::before,
.map-btn::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 1.55rem;
  margin-right: 0.48rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.65rem;
}

.seo-page ul {
  display: grid;
  gap: 0.9rem;
  margin: 1.35rem 0;
  padding: 0;
  list-style: none;
}

.seo-page li {
  position: relative;
  padding: 1.05rem 1rem 1.05rem 3.15rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  color: var(--muted);
  background:
    radial-gradient(circle at 0 0, rgba(245, 158, 11, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  line-height: 1.75;
  animation: itemReveal 0.7s var(--ease) both;
}

.seo-page li:nth-child(1) {
  animation-delay: 0.58s;
}

.seo-page li:nth-child(2) {
  animation-delay: 0.66s;
}

.seo-page li:nth-child(3) {
  animation-delay: 0.74s;
}

.seo-page li:nth-child(4) {
  animation-delay: 0.82s;
}

.seo-page li::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 1.32rem;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--red));
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12), 0 0 22px rgba(245, 158, 11, 0.34);
}

.seo-page a {
  color: var(--gold);
  font-weight: 800;
}

.seo-showroom-grid {
  display: grid;
  gap: 1rem;
  margin: 1.55rem 0;
}

.seo-showroom-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: itemReveal 0.7s var(--ease) both;
}

.seo-showroom-card:nth-child(1) {
  animation-delay: 0.72s;
}

.seo-showroom-card:nth-child(2) {
  animation-delay: 0.84s;
}

.seo-showroom-card:nth-child(3) {
  animation-delay: 0.96s;
}

.seo-showroom-card::before {
  content: "";
  position: absolute;
  right: -2.6rem;
  top: -2.6rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(255, 27, 27, 0.14);
}

.seo-card-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0.38rem 0.78rem;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-showroom-card h2 {
  margin: 0.9rem 0 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.16rem, 3vw, 1.72rem);
  line-height: 1.25;
}

.seo-showroom-card p {
  margin: 0.6rem 0 0;
  animation: none;
}

.seo-card-actions,
.seo-page p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-top: 1rem;
}

.call-btn {
  background: linear-gradient(135deg, var(--green), #065f46);
}

.call-btn::before {
  content: "Call";
}

.map-btn {
  background: linear-gradient(135deg, #f59e0b, #b45309);
}

.map-btn::before {
  content: "Map";
}

.seo-page p:last-child a {
  background: rgba(245, 158, 11, 0.11);
}

.seo-page p:last-child a[href="https://see.minthargyi.shop/"] {
  background: linear-gradient(135deg, var(--red), #7a0000);
}

@media (max-width: 768px) {
  body.seo-page {
    padding: 5.2rem 0.85rem 1.2rem;
  }

  .seo-page main {
    border-radius: 26px;
    backdrop-filter: blur(10px);
  }

  .seo-home-button {
    top: 0.8rem;
    min-height: 46px;
    padding: 0.72rem 1.12rem;
  }

  .seo-action-btn,
  .seo-mini-btn,
  .seo-page p:last-child a {
    flex: 1 1 100%;
    min-height: 44px;
  }

  .seo-page li {
    padding: 0.95rem 0.95rem 0.95rem 2.8rem;
  }
}

@keyframes panelReveal {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes itemReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonDrop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 18px 58px rgba(255, 27, 27, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  50% {
    box-shadow: 0 22px 72px rgba(245, 158, 11, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(22px, -16px, 0) scale(1.08);
  }
}

@keyframes glassSweep {
  0%,
  42% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(360%);
  }
}
