*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font: 400 12px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  color: #fff;
  background: #000;
  background-image: url(img/default-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}
a:hover {
  color: #ff0097;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.main-frame {
  width: 1200px;
  margin: 24px auto;
  background: #111;
  border: 3px solid gold;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
  padding-bottom: 20px;
  overflow: hidden;
}

.header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: 700;
}

.search {
  display: flex;
  gap: 8px;
}
.search input {
  width: 180px;
  background: #333;
  border: none;
  border-radius: 3px;
  padding: 6px 10px;
  color: #fff;
}
.search button {
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  background: #ff4d4d;
  color: #fff;
  font-weight: 600;
}
.search button:hover {
  background: #ff3333;
}

.color-menu {
  padding: 0 10px 12px;
}
.color-menu .bar {
  display: flex;
  gap: 8px;
  background: #191919;
  padding: 8px;
  border-radius: 6px;
}
.color-menu a {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
}
.color-menu a.home    { background: #e53e3e; }
.color-menu a.central { background: #a00040; }
.color-menu a.east    { background: #f59e0b; }
.color-menu a.geylang { background: #a855f7; }
.color-menu a.north   { background: #16a34a; }
.color-menu a.west    { background: #2563eb; }
.color-menu a.massage { background: #475569; }
.color-menu a:hover   { opacity: .85; }

.content-two-column {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 40px auto 0;
  align-items: flex-start;
}

.new-update-wrapper {
  flex: 1.2;
  max-width: 40%;
  background: #000;
  border: 2px solid #ff4d4d;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,0,0,0.4);
  padding: 10px;
}
.new-update-wrapper h2 {
  font-size: 15px;
  text-align: center;
  color: #ff4d4d;
  margin-bottom: 10px;
  border-bottom: 1px solid #ff4d4d;
  padding-bottom: 4px;
}

.top-featured-wrapper {
  flex: 4;
  max-width: 80%;
  background: #111;
  border: 2px solid #ff4d4d;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,0,0,0.4);
  padding: 10px;
}
.top-featured-wrapper h2 {
  font-size: 18px;
  text-align: center;
  color: #ff4d4d;
  margin-bottom: 10px;
  border-bottom: 1px solid #ff4d4d;
  padding-bottom: 4px;
}

.vertical-slider-box {
  height: 3500px;
  overflow: hidden;
  position: relative;
  border: 2px solid #ff4d4d;
  border-radius: 8px;
  background: #111;
}
.vertical-slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: scrollUp 95s linear infinite;
}
.vertical-slider:hover {
  animation-play-state: paused;
}
.vslide-card {
  border: 1px solid #ff6600;
  border-radius: 6px;
  background: #1a1a1a;
  overflow: hidden;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.vslide-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255,77,77,0.8);
  filter: brightness(1.1);
}
.vslide-card:active {
  transform: scale(0.97);
  filter: brightness(0.95);
  box-shadow: 0 0 10px rgba(255,77,77,0.6);
}
.vslide-img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.vslide-info {
  padding: 6px;
}
.vslide-info h3 {
  font-size: 13px;
  margin: 4px 0;
  color: #ff6b81;
}
.vslide-info .area {
  font-size: 11px;
  color: #ccc;
}
.vslide-info .price {
  font-size: 11px;
  color: gold;
  margin-top: 3px;
}
@keyframes scrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.pm-carousel-wrap {
  background: #111;
  border-top: 2px solid #ff4d4d;
  border-bottom: 2px solid #ff4d4d;
  padding: 20px 0;
}
.pm-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1210px;
  margin: 0 auto;
}
.pm-track {
  display: flex;
  gap: 20px;
  transition: transform .45s ease;
}
.pm-card {
  flex: 0 0 220px;
  background: #1a1a1a;
  border: 2px solid #ff4d4d;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pm-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.pm-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,77,77,0.7);
}
.pm-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,77,77,.65);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity .25s;
  z-index: 5;
}
.pm-carousel:hover .pm-btn { opacity: 1; }
.pm-prev { left: 6px; }
.pm-next { right: 6px; }
.pm-btn:hover { background: #ff4d4d; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 10px 0 0;
}
.card,
a.card {
  display: block;
  background: #1a1a1a;
  border: 2px solid #ff4d4d;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: transform .3s ease;
}
.card:hover,
a.card:hover {
  transform: scale(1.05);
}
.card img,
a.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.card-info {
  padding: 10px;
  text-align: center;
}
.card-info h3 { color:#ff6b81; font-size:16px; margin:6px 0; }
.card-info p  { color:#ccc;    font-size:13px; margin:3px 0; }
.price { color: gold; font-weight: bold; }

footer.footer,
footer {
  text-align: center;
  color: #888;
  border-top: 1px solid #333;
  padding: 15px;
  margin-top: 30px;
}
