/* ============================================================
   EVAZHOU · PORTFOLIO
   A single-page, marker-brush, hand-drawn aesthetic
   ============================================================ */

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

:root {
  --cream: #f1ead7;
  --cream-2: #faf5e6;
  --paper: #fdf9ed;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;
  --muted: #6a6a6a;
  --line: #c6bfa9;
  --moss: #a7b88f;
  --moss-deep: #7d9060;
  --accent: #d96d5b;
  --shadow: 0 14px 40px -8px rgba(50, 40, 20, 0.18),
            0 4px 12px -2px rgba(50, 40, 20, 0.08);
  --shadow-lg: 0 28px 60px -10px rgba(40, 30, 10, 0.22),
               0 8px 18px -4px rgba(40, 30, 10, 0.1);
}

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ---------------- BACKGROUND POLKA DOTS ---------------- */
.bg-dots {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(170, 195, 130, 0.55) 0, transparent 6%),
    radial-gradient(circle at 18% 28%, rgba(170, 195, 130, 0.45) 0, transparent 4%),
    radial-gradient(circle at 12% 70%, rgba(170, 195, 130, 0.5) 0, transparent 7%),
    radial-gradient(circle at 22% 92%, rgba(170, 195, 130, 0.55) 0, transparent 5%),
    radial-gradient(circle at 48% 6%, rgba(170, 195, 130, 0.4) 0, transparent 5%),
    radial-gradient(circle at 60% 26%, rgba(170, 195, 130, 0.5) 0, transparent 6%),
    radial-gradient(circle at 78% 14%, rgba(170, 195, 130, 0.55) 0, transparent 7%),
    radial-gradient(circle at 90% 38%, rgba(170, 195, 130, 0.5) 0, transparent 5%),
    radial-gradient(circle at 70% 60%, rgba(170, 195, 130, 0.5) 0, transparent 6%),
    radial-gradient(circle at 90% 76%, rgba(170, 195, 130, 0.55) 0, transparent 7%),
    radial-gradient(circle at 4% 50%, rgba(170, 195, 130, 0.5) 0, transparent 6%),
    radial-gradient(circle at 52% 92%, rgba(170, 195, 130, 0.4) 0, transparent 5%);
  filter: blur(1px);
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  padding: 80px 24px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hand-drawn Q-version mascot sticker — sits at the bottom-right outside the browser window */
.hero-mascot {
  display: none;
}

/* photo mascot approved for the homepage */
.hero-photo-mascot {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: 16px;
  width: clamp(180px, 19vw, 250px);
  z-index: 3;
  pointer-events: none;
  transform: rotate(-2deg);
  background: transparent;
}
.hero-photo-mascot img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
@media (max-width: 680px) {
  .hero-photo-mascot {
    right: 10px;
    bottom: 10px;
    width: 142px;
  }
}
.hero-mascot .mascot-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 6px 8px rgba(0,0,0,0.12));
}
.hero-mascot .mascot-shadow {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -10px;
}

.browser-window {
  width: min(1180px, 100%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.window-header {
  background: #ededed;
  border-bottom: 1px solid #d6d6d6;
  height: 50px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  padding: 0 18px;
  gap: 14px;
  position: relative;
}

.traffic-lights {
  display: flex;
  gap: 8px;
}

.traffic-lights .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}
.traffic-lights .dot.red    { background: #ff5f57; }
.traffic-lights .dot.yellow { background: #febc2e; }
.traffic-lights .dot.green  { background: #28c840; }

.window-controls-left {
  display: flex;
  gap: 10px;
  color: #7a7a7a;
  font-size: 14px;
  align-items: center;
}
.ctrl-btn {
  width: 14px;
  height: 14px;
  border: 1.5px solid #b0b0b0;
  border-radius: 2px;
  display: inline-block;
}
.ctrl-btn.arrow {
  border: none;
  width: auto;
  font-size: 18px;
  line-height: 14px;
}

.url-bar {
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 580px;
  margin: 0 auto;
}
.url-bar .url {
  font-family: 'Inter', sans-serif;
  color: #4a4a4a;
}

.window-actions {
  display: flex;
  gap: 16px;
  color: #7a7a7a;
  font-size: 14px;
}
.window-actions .action {
  cursor: pointer;
  user-select: none;
}

/* hero content */
.hero-content {
  position: relative;
  padding: 70px 24px 90px;
  text-align: center;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 5% 25%, rgba(170, 195, 130, 0.4) 0, transparent 4%),
    radial-gradient(circle at 95% 30%, rgba(170, 195, 130, 0.3) 0, transparent 4%),
    radial-gradient(circle at 10% 80%, rgba(170, 195, 130, 0.35) 0, transparent 5%),
    radial-gradient(circle at 92% 78%, rgba(170, 195, 130, 0.3) 0, transparent 5%);
  pointer-events: none;
}

/* ===== Big marker-brush title — SVG self-drawn ===== */
.svg-defs {
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
}

.brush-title-svg {
  display: block;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 1100px;
  height: auto;
}

.brush-title-svg .brush-stroke {
  paint-order: stroke fill;
  stroke: #1a1a1a;
  stroke-width: 0;
}
.brush-title-svg .stroke-heavy { opacity: 0.45; }
.brush-title-svg .stroke-fine  { opacity: 0.55; }
.brush-title-svg .stroke-top   { opacity: 1; }

.subtitle-svg {
  display: block;
  margin: 0 auto 36px;
  width: 100%;
  max-width: 720px;
  height: auto;
}

/* the spaced handwritten subtitle — DORIS' PORTFOLIO style — now SVG */
.portfolio-subtitle { display: none; }

.hero-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 2;
}
.hero-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  letter-spacing: 0.02em;
}
.hero-nav a:hover {
  color: var(--accent);
}
.hero-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s ease, left 0.3s ease;
}
.hero-nav a:hover::after {
  width: 100%;
  left: 0;
}

/* ---------------- UNDERSTAND ME / NOTEBOOK ---------------- */
.understand {
  position: relative;
  z-index: 1;
  padding: 100px 24px 60px;
  display: flex;
  justify-content: center;
}

.about-notebook {
  width: min(1100px, 100%);
  height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(42,34,20,.13);
}
.about-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}
.about-frame path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-watermark {
  position: absolute;
  z-index: 0;
  left: 11%;
  right: 8%;
  top: 35%;
  color: var(--ink);
  opacity: .055;
  font: 170px/1 'Caveat Brush', cursive;
  white-space: nowrap;
  transform: rotate(-2deg);
}
.about-polaroid {
  position: absolute;
  z-index: 2;
  top: 63px;
  left: clamp(56px, 8vw, 105px);
  width: 278px;
  padding: 13px 13px 31px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
  transform: rotate(-3.5deg);
  transition: transform .35s ease;
}
.about-polaroid:hover { transform: rotate(-1deg) scale(1.02); }
.about-photo {
  width: 100%;
  height: 338px;
  overflow: hidden;
  background: #ddd;
}
.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 29%;
}
.about-polaroid p {
  margin: 16px 0 0;
  text-align: center;
  font: 600 21px/1 'Caveat', cursive;
}
.about-binder {
  position: absolute;
  z-index: 3;
  left: 47.3%;
  top: 73px;
  bottom: 73px;
  width: 74px;
  transform: translateX(-50%);
  border-left: 3px solid var(--ink);
}
.about-binder::after {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(26,26,26,.42);
}
.about-binder span {
  position: absolute;
  width: 76px;
  height: 21px;
  left: -39px;
  border: 3px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
}
.about-binder span:nth-child(1) { top: 8%; }
.about-binder span:nth-child(2) { top: 46%; }
.about-binder span:nth-child(3) { bottom: 8%; }
.about-info {
  position: absolute;
  z-index: 2;
  left: 57%;
  top: 118px;
  width: 34%;
}
.about-info h2 {
  margin: 0 0 10px;
  font: 600 clamp(25px, 3vw, 36px)/1.15 'Inter', sans-serif;
  letter-spacing: -.04em;
}
.about-tagline {
  margin: 0 0 43px;
  color: var(--muted);
  font: 600 26px/1 'Caveat', cursive;
}
.about-find {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
}
.about-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.about-stats {
  margin: 22px 0 0;
  padding: 10px 12px 9px;
  border-top: 1px dashed rgba(24,24,21,.38);
  border-bottom: 1px dashed rgba(24,24,21,.38);
  color: var(--ink-soft);
  font: 600 15px/1.4 'Caveat', cursive;
}
.about-stats strong { color: var(--accent); font-size: inherit; }
.about-stats span { display: block; }
.about-info li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 22px;
  font: 600 20px/1 'Caveat', cursive;
}
.about-info li i {
  width: 20px;
  flex: 0 0 20px;
  font: normal 16px/1 'Inter', sans-serif;
  text-align: center;
}
.about-social-link,
.about-social-label {
  color: var(--ink-soft);
  font: 600 20px/1 'Caveat', cursive;
  text-decoration: none;
}
.about-social-link {
  position: relative;
  transition: color .2s ease, transform .2s ease;
}
.about-social-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .22s ease;
}
.about-social-link:hover { color: var(--accent); transform: translateX(2px); }
.about-social-link:hover::after { width: 100%; }
.about-click-cue {
  display: inline-block;
  width: 21px;
  height: 26px;
  margin-left: 7px;
  vertical-align: -7px;
  filter: drop-shadow(1px 2px 1px rgba(26,26,26,.12));
  transform: rotate(-12deg) translateY(-1px);
  animation: click-cue 1.7s ease-in-out infinite;
}
.about-click-cue svg {
  display: block;
  width: 100%;
  height: 100%;
}
@keyframes click-cue {
  0%, 100% { transform: rotate(-16deg) translateY(-1px); }
  50% { transform: rotate(-16deg) translate(2px, -3px); }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.about-email { font-size: 19px; }
.about-xiaohongshu { gap: 9px; }
.about-xhs-count { color:var(--accent); font:600 13px/1 'Inter',sans-serif; letter-spacing:.06em; text-transform:uppercase; white-space:nowrap; }
.about-xhs-links {
  display: inline-flex;
  gap: 6px;
  margin-left: 4px;
}
.about-xhs-links a {
  display: grid;
  place-items: center;
  min-width: 25px;
  width: 25px;
  height: 20px;
  padding: 0;
  border: 1.4px solid rgba(26,26,26,.7);
  border-radius: 10px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.45);
  font: 600 12px/1 'Inter', sans-serif;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.about-xhs-links a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.about-squiggle {
  position: absolute;
  z-index: 3;
  top: 109px;
  right: 15%;
  color: #777;
  font: 600 22px/1 'Caveat', cursive;
  transform: rotate(-10deg);
}

/* ---------------- MY CREATIVE SPACE ---------------- */
.creative-space {
  position: relative;
  z-index: 1;
  padding: 100px 24px 80px;
  background: var(--cream);
}

.section-title {
  font-family: 'Patrick Hand', cursive;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  text-align: center;
  margin-bottom: 6px;
}

.hint {
  font-family: 'Patrick Hand', cursive;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 34px;
}

.track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 auto 56px;
  max-width: 980px;
  position: relative;
  align-items: center;
}

.track-label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.track-label:hover { transform: scale(1.1) rotate(-2deg); }
.press-link { color: inherit; text-decoration: none; }
.press-archive-inline { width: 100%; }
.press-archive-inline iframe { display: block; width: 100%; height: 850px; border: 0; }
.posters-gallery-inline { width: 100%; }
.posters-gallery-inline iframe { display: block; width: 100%; height: 820px; border: 0; }
.video-filmstrip-inline { width: 100%; }
.video-filmstrip-inline iframe { display: block; width: 100%; height: 900px; border: 0; }
.playground-inline { width: 100%; }
.playground-inline iframe { display: block; width: 100%; height: 790px; border: 0; }
.creative-space-fold-inline { width: 100%; }
.creative-space-fold-inline iframe { display: block; width: 100%; height: 1180px; border: 0; }
.video-heading { display:flex; flex-direction:column; align-items:center; margin-bottom:8px; }
.video-heading-icon { width:48px; height:48px; margin-bottom:4px; }
.video-heading h3 { margin:0; font:700 50px/.9 Caveat,cursive; color:var(--ink); }

.doodle-icon {
  width: 84px;
  height: 84px;
}

.label-name {
  font-family: 'Patrick Hand', cursive;
  font-size: 13px;
  color: var(--ink);
  display: inline-block;
  margin-left: 4px;
}

.track-content {
  position: relative;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* page-stack (journal) */
.stack-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.stack-hint {
  font-family: 'Patrick Hand', cursive;
  font-size: 13px;
  color: var(--muted);
}
.page-stack {
  position: relative;
  width: 340px;
  height: 243px;
  perspective: 800px;
}
.page {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 6px 20px -6px rgba(50,40,20,0.25),
              0 2px 4px rgba(50,40,20,0.08);
  display: flex;
  padding: 16px;
  transition: transform 0.6s ease, opacity 0.4s ease;
  transform-origin: left center;
  border: 1px solid rgba(0,0,0,0.06);
}
.page-1 {
  z-index: 3;
  background: linear-gradient(135deg, #faf5e6, #f5ecd6);
}
.page-2 {
  z-index: 2;
  transform: translate(8px, 8px);
}
.page-3 {
  z-index: 1;
  transform: translate(16px, 16px);
}
.stack-wrap.turned .page-1 {
  transform: rotateY(-160deg) translateX(-20px);
  opacity: 0.4;
}
.stack-wrap.turned .page-2 {
  transform: rotateY(-160deg) translateX(-12px);
  opacity: 0.6;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
}
.page-cell {
  background: #ddd;
  border-radius: 2px;
  aspect-ratio: 1;
  font-family: 'Patrick Hand', cursive;
  font-size: 11px;
  color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-cell.tall { grid-row: span 2; }

/* photo strip (photo / video) */
.photo-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 16px 8px;
  scrollbar-width: thin;
  max-width: 100%;
}
.photo-strip::-webkit-scrollbar { height: 6px; }
.photo-strip::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 3px; }

.photo-card {
  flex: 0 0 110px;
  aspect-ratio: 9 / 19;
  border-radius: 18px;
  background: #bbb;
  box-shadow: 0 8px 22px -8px rgba(0,0,0,0.3),
              0 2px 4px rgba(0,0,0,0.06);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.photo-card:hover { transform: translateY(-6px) rotate(-1deg); }

.photo-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 6px;
  background: rgba(0,0,0,0.4);
  border-radius: 4px;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0, transparent 30%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
}

.ph-tag {
  position: relative;
  z-index: 2;
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.35);
  padding: 2px 8px;
  border-radius: 10px;
}
.photo-strip.slim .photo-card {
  flex-basis: 150px;
  aspect-ratio: 16 / 10;
}
.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.95);
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
  z-index: 2;
}
.video-card .ph-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

/* palette */
.palette-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 500px;
  padding: 12px;
}
.swatch {
  width: 56px;
  height: 56px;
  background: var(--c);
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  box-shadow: 2px 3px 0 rgba(0,0,0,0.15);
  transition: transform 0.25s ease;
  cursor: pointer;
}
.swatch:hover { transform: translateY(-4px) rotate(-3deg) scale(1.1); }

/* calendar */
.calendar-strip {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 12px;
}
.cal-month {
  background: var(--paper);
  width: 120px;
  padding: 14px 12px 16px;
  border-radius: 4px;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.2),
              0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.25s ease;
}
.cal-month:hover { transform: translateY(-4px) rotate(-1deg); }
.cal-head {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Patrick Hand', cursive;
  font-size: 14px;
  text-align: center;
  padding: 2px 0;
  margin: -14px -12px 8px;
  letter-spacing: 0.1em;
}
.cal-num {
  font-family: 'Caveat Brush', cursive;
  font-size: 38px;
  text-align: center;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1;
}
.cal-note {
  font-family: 'Caveat', cursive;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 50px 24px 60px;
  text-align: center;
  background: var(--cream);
}
.footer-line {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--muted);
}
.footer-line.small {
  font-size: 13px;
  margin-top: 6px;
}

/* ---------------- ANIMATION HELPERS ---------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 720px) {
  .window-header { padding: 0 10px; gap: 8px; }
  .url-bar { padding: 4px 10px; font-size: 12px; }
  .window-actions { gap: 10px; font-size: 12px; }
  .hero-content { padding: 50px 16px 60px; }
  .notebook-wrap { padding: 50px 24px; }
  .notebook-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .binder {
    flex-direction: row;
    min-height: auto;
    padding: 6px 0;
    justify-content: center;
  }
  .binder .spine {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }
  .signature-wrap { right: 30px; bottom: 12px; }
  .page-watermark { font-size: 50px; }
  .photo-card { flex-basis: 90px; }
}

@media (max-width: 760px) {
  .understand { padding: 64px 12px 36px; }
  .about-notebook { height: auto; min-height: 880px; }
  .about-frame { height: 100%; }
  .about-watermark { font-size: 90px; top: 46%; }
  .about-polaroid { position: relative; left: auto; top: auto; margin: 46px auto 26px; width: 250px; }
  .about-photo { height: 300px; }
  .about-binder { display: none; }
  .about-info { position: relative; left: auto; top: auto; width: auto; margin: 0 44px 58px; }
  .about-stats { margin-top: 24px; font-size: 15px; }
  .about-squiggle { right: 12%; top: 455px; }
}
