body {
  font-family: sans-serif; 
  background-color: #0a0a0a;
  background-image: 
    linear-gradient(rgba(0, 255, 157, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 157, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 0;
  margin: 0;
}

/* ===== HEADER STYLES ===== */
.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 100px;
  border-bottom: 1px solid #0cadad;
}

.logo {
  transform: scale(1.8); 
  transform-origin: left center;

}

.logo img {
  height: auto;
  width: auto;
  display: block;
}

.main-title {
  grid-column: 2;
  justify-self: center;
  color: #1E90FF;
  font-size: 24px;
  text-align: center;
   text-shadow:
    1px 1px 0 #0f0f0f,
    2px 2px 0 #0f0f0f,
    3px 3px 3px rgba(0, 0, 0, 0.3);
}

.right-info {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hotline {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #dfdcdc;
}

.hotline i {
  margin-right: 8px;
  color: #ce0e1e;
}
/* ===== QUICK SEARCH ===== */
.quick-search {
  padding: 10px 0;
  box-sizing: border-box;
}

.container {
  max-width: 1500px;
  margin: 0;
  padding: 0 15px;
}

.section-titleqs {
  text-align: left;
  color: #dfdcdc;
  font-size: 20px;
  font-weight: bold;
  margin-top: 0.5rem;
}

.search-form {
  width: 100%;
}

.search-fields {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: flex-end; 
}

.search-field {
  flex: 1;
  min-width: 150px;
}

.search-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.search-select, .search-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  height: 40px;
  background-color: rgba(42, 42, 42, 0.5);
  color: #dfdcdc;
  box-sizing: border-box;
}
.search-select option {
  background-color: rgba(42, 42, 42, 1);
}
.search-select, .search-input:focus {
  outline: none;
}

.search-button {
  padding: 10px 25px;
  color: #dfdcdc;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  flex: 0 0 auto;
  font-weight: bold;
  border: 1px solid transparent;
  background: 
    linear-gradient(#000, #000) padding-box,
    repeating-linear-gradient(45deg, #ff00aa 0%, #00f0ff 50%) border-box;
  background-size: 200% 200%;
}

.search-button:hover {
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}
/* ===== SERVICE SECTION ===== */
.service-categories {
  padding: 10px 0;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  color: #0ff; 
  font-size: 24px;
  text-align: center;
  position: relative;
  text-transform: uppercase; 
  margin-top: 0.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #29e433,
    #1E90FF
  );
  margin: 0 auto 15px;
  border-radius: 2px;
  box-shadow: 0 0 1px #39ff14, 0 0 px #00ffff;
}


.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  margin-top: 1.5rem;
}

.category-item.karaoke {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  border: 1px solid #a100ff;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}


.category-item.karaoke:hover {
  border-color: #a100ff;
  box-shadow: 0 10px 10px rgba(157, 33, 230, 0.979);
  transform: translateY(-5px);
}

.category-item.restaurant {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  border: 1px solid #d8eb31;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.category-item.restaurant:hover {
  border-color: #e9dd36;
  box-shadow: 0 10px 10px rgba(178, 204, 33, 0.726);
  transform: translateY(-5px);
}

.category-item.bar-club {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  border: 1px solid #1d20db;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.category-item.bar-club:hover {
  border-color: #1316ad;
  box-shadow: 0 10px 10px rgba(1, 18, 243, 0.76);
  transform: translateY(-5px);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.category-item:hover .category-image {
  transform: scale(1.1);
}

.category-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  color: #ffffff; 
  text-shadow:
    0 0 3px #fff,
    0 0 6px #d700ff,
    0 0 9px #d700ff,
    0 0 12px #a100ff,
    0 0 15px #a100ff;
}

.plasma-border {
  mix-blend-mode: screen;
  filter: blur(1px);
}


/* ===== FOOTER STYLES ===== */
.footer {
  color: #dfdcdc;
  padding: 10px 0 10px;
  text-align: center;
  border-top: 1px solid #0cadad;
  position: relative;
}

.footer .container {
  max-width: 1500px;
  margin: 0 auto;
}

/* Layout nội dung footer */
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

/* Phần liên hệ */
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact h3,
.footer-terms h3 {
  color: #dfdcdc;
  font-size: 22px;
  position: relative;
  margin-top: 0.5rem;
}

.footer-contact p {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
}

.footer-contact p i {
  color: #ad0b0b;
  width: 20px;
  text-align: center;
}
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s; 
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a::before {
  color: #1E90FF; 
}

.footer-contact a:hover {
  color: #1E90FF; 
  transform: translateX(5px); 
}

/* Phần điều khoản */
.footer-terms {
  flex: 1;
  min-width: 250px;
  gap: 10px;
}

.footer-terms p {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
}

.footer-terms p i {
  color: #ad0b0b;
  width: 20px;
  text-align: center;
}
.footer-terms a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s; 
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-terms a::before {
  color: #1E90FF; 
}

.footer-terms a:hover {
  color: #1E90FF; 
  transform: translateX(5px); 
}

/* Dòng copyright */
.copyright {
  color: #888;
  font-size: 14px;
  padding-top: 15px;
  border-top: 1px solid #333;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* ===== ADMIN LOGIN STYLES ===== */
.admin-login-btn {
  position: absolute; 
  left: 20px;
  top: 50%; 
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #8a2be2, #9932cc);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  outline: none;
  opacity: 0.9;
}

.admin-login-btn:hover {
  transform: translateY(-50%) scale(1.1) rotate(10deg);
  box-shadow: 0 6px 25px rgba(138, 43, 226, 0.6);
}



.admin-login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.admin-login-box {
  background: #1e1e2d;
  width: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #2d2d3d;
  transform: scale(0.9);
  opacity: 0;
  animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes modalAppear {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.admin-login-header {
  background: #2a2a3a;
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid #3a3a4a;
}

.admin-login-header i {
  font-size: 40px;
  color: #8a2be2;
  margin-bottom: 15px;
}

.admin-login-header h2 {
  color: #e0ffe5;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0;
}

.admin-input-group {
  margin: 25px;
  position: relative;
}

.admin-input-group i {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #8a2be2;
  font-size: 16px;
}

.admin-input-group input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: #2a2a3a;
  border: 1px solid #3a3a4a;
  border-radius: 8px;
  color: #e0e0ff;
  font-size: 15px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.admin-input-group input:focus {
  border-color: #8a2be2;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
  outline: none;
}

.admin-login-btn-submit {
  width: calc(100% - 50px);
  margin: 0 25px 30px;
  padding: 15px;
  background: linear-gradient(135deg, #8a2be2, #9932cc);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.admin-login-btn-submit:hover {
  background: linear-gradient(135deg, #9932cc, #8a2be2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.admin-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #666;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-close-btn:hover {
  color: #8a2be2;
  transform: rotate(90deg);
}

.admin-login-message {
  color: #ff4d4d;
  text-align: center;
  margin: -15px 25px 20px;
  font-size: 14px;
  min-height: 20px;
}

/* PHẦN CHÍNH */
.featured-places {
  padding: 10px 0;
  position: relative;
}

.featured-places .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
}

/* KHUNG CHỨA SLIDER DE XUAT */
.places-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
}

/* NÚT ĐIỀU HƯỚNG */
.scroll-btn {
  position: absolute;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid #00ff9d;
  color: #00ff9d;
  width: 48px;
  height: 48px;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  box-shadow: 
    0 0 10px rgba(0, 255, 157, 0.5),
    inset 0 0 5px rgba(0, 255, 157, 0.3);
}

/* Nút trái */
.left-btn {
  left: 0;
}

/* Nút phải */
.right-btn {
  right: 0;
}


.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.scroll-btn:active {
  transform: scale(0.95);
}

.scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* KHUNG CUỘN */
.places-scroll-container {
  overflow: hidden;
  overflow-x: auto;
  width: 100%;
  position: relative;
  padding-left: 1px;
}
.places-scroll-container::-webkit-scrollbar {
  display: none;             
}

/* LƯỚI ITEM */
.places-grid {
  display: flex;
  gap: 25px; 
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 5px 0 5px;
  scroll-behavior: smooth;
}

.place-item {
  flex: 0 0 calc(100% / 3 - 25px * 2 / 3);
  min-width: 250px;
  border: 1px solid #0ff; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: all 0.3s ease;
  
  /* THÊM VIỀN GÓC BÊN TRONG */
  position: relative;
  box-sizing: border-box;
}

/* Tạo viền góc Cyberpunk INNER */
.place-item::before {
  content: '★★★★★';
  position: absolute;
  top: 0.2rem;
  left: 0.5rem;
  color: #0ff;
  font-size: 15px;
  letter-spacing: 2px;
  text-shadow: 0 0 5px;
  z-index: 50;
}

/* Hiệu ứng hover */
.place-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 5px #0ff,
    0 0 10px rgba(0, 255, 255, 0.7),
    0 0 15px rgba(0, 255, 255, 0.5),
    0 3px 9px rgba(0, 0, 0, 0.2);
}

.place-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block; 
  transition: transform 0.4s ease;
}

.place-item:hover .place-image {
  transform: scale(1.05);
}

.place-name {
  font-size: 20px;
  color: #f34444;
  margin: 5px 0 5px;
  font-weight: 600;
  padding: 0 15px;
  line-height: 1;
}

.place-address {
  font-size: 18px;
  color: #dfdcdc;
  padding: 0 15px 5px;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0.5rem;
}

/* HIỆU ỨNG KHI KHÔNG CÓ ITEM */
.no-places {
  text-align: center;
  color: #aaa;
  font-size: 16px;
  padding: 30px 0;
  width: 100%;
}

/* ===== HUONG DAN DAT CHO ===== */
.booking-guide-centered {
  padding: 10px 10px;
  text-align: center;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.guide-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.step-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #7f5aff, #1ec9ff);
  border-radius: 50%;
  font-size: 24px;
  color: #dfdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.guide-step h3 {
  font-size: 16px;
  margin-bottom: 0;
  color: #dfdcdc;
}

.guide-step p {
  font-size: 14px;
  color: #a8a7a7;
  max-width: 500px;
  margin-top: 0.5rem;
}

/* ===== BANNER ===== */
.banner {    
  overflow: hidden;  
}

.banner img {
  max-width: 1500px;        
  width: 100%;
  height: 150px;   
  margin: 0 auto;     
  object-fit: cover; 
  display: block;
  padding: 0 15px;
}


/* ZALOOOOOOOOOOOOO */
.zalo-icon-float {
    position: fixed;
    right: 20px;
    top: 80%;
    transform: translateY(-50%);
    z-index: 400;
    opacity: 0.9;
    transition: all 0.3s;
  }


.zalo-icon-float img {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
}

/* Hiệu ứng vòng tròn lan tỏa */
.zalo-icon-float::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background-color: rgba(238, 239, 240, 0.966);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 1.5s infinite;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* MESSENGER */
.messenger-icon-float {
  position: fixed;
  right: 20px;
  top: 73%; 
  transform: translateY(-50%);
  z-index: 400;
  opacity: 0.9;
  transition: all 0.3s;
}

.messenger-icon-float img {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
}

/* Hiệu ứng vòng tròn lan tỏa */
.messenger-icon-float::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background-color: rgba(238, 239, 240, 0.966);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 1.5s infinite;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* WHATSAPP */
.whatsapp-icon-float {
  position: fixed;
  right: 20px;
  top: 66%;
  transform: translateY(-50%);
  z-index: 400;
  opacity: 0.9;
  transition: all 0.3s;
}

.whatsapp-icon-float img {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
}

/* Hiệu ứng vòng tròn lan tỏa */
.whatsapp-icon-float::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background-color: rgba(238, 239, 240, 0.966);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 1.5s infinite;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* WECHAT */
.wechat-icon-float {
  position: fixed;
  right: 20px;
  top: 59%;
  transform: translateY(-50%);
  z-index: 400;
  opacity: 0.9;
  transition: all 0.3s;
}

.wechat-icon-float img {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
}

/* Hiệu ứng vòng tròn lan tỏa */
.wechat-icon-float::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background-color: rgba(238, 239, 240, 0.966);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 1.5s infinite;
  z-index: 1;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}



/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  /* Header adjustments */
.header {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  padding: 10px 15px;
}
  
.logo, .main-title, .right-info {
  grid-column: 1;
  justify-self: center;
}
  
.logo {
  font-size: 22px;
  transform-origin: center; 
}
  
.main-title {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
  
.hotline {
  font-size: 18px;
}
.section-titleqs {
  font-size: 18px;
}

.search-fields {
  flex-direction: column;
  align-items: stretch;
}
  
.search-button {
  margin-top: 5px;
}
  
  /* Service categories grid */
.categories-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
.category-name {
  font-size: 24px;
}
  
  /* Featured places mobile optimization */
.featured-places {
  padding: 0;
}
  
.section-title {
  font-size: 18px;
}
  
.places-container {
  padding: 0;
  gap: 8px;
}
  
.places-grid {
  gap: 25px;
  padding: 5px 0 10px;
}
  
.place-item {
  flex: 0 0 calc(85%); 
  border-width: 1px;
}
  
.place-name {
  font-size: 16px;
  padding: 0 10px;
}
  
.place-address {
  font-size: 14px;
  padding: 0 10px 5px;
}
  
.scroll-btn {
  width: 36px;
  height: 36px;
  font-size: 16px;
}
  
  /* Modal adjustments */
.admin-login-box {
  width: 90%;
  max-width: 350px;
}

.banner {
  display: none;
}
  
.admin-login-btn {
  width: 50px;
  height: 50px;
  font-size: 18px;
  right: 10px;
}

.footer {
  padding: 10px 0 10px;
}
  
.footer-content {
  flex-direction: column;
  gap: 0;
  text-align: center;
}
  
.footer-contact h3,
.footer-terms h3 {
text-align: center;
font-size: 18px;
}
  
.footer-contact p {
  justify-content: center;
  font-size: 15px;
}
.footer-terms p {
  justify-content: center;
  font-size: 15px;
}
  
  
.copyright {
  font-size: 13px;
}
.scroll-btn {
  display: none;
}
.zalo-icon-float {
  right: 15px;
}
.messenger-icon-float {
  right: 15px;
}
.whatsapp-icon-float {
  right: 15px;
}
.wechat-icon-float {
  right: 15px;
}
}


