* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  color: #fff;
  background: radial-gradient(circle at top, rgba(0,255,200,0.12), transparent 60%),

    
    radial-gradient(circle at bottom, rgba(255,0,0,0.08), transparent 60%),

    
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 14px
    ),

    
    radial-gradient(circle at top, #000000, #100929 80%);
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  color: #00ff99;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;

  position: relative;
  overflow: hidden;

  /* nền tối */
  background: linear-gradient(90deg, #001a1a, #000);

  border-bottom: 1px solid rgba(0,255,204,0.3);
}

/* 🔥 lớp hoa văn */
header::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../public/images/logo.png");
  background-size: 260px auto;
  background-repeat: repeat-x;

  opacity: 0.25; /* 🔥 làm mờ cho đẹp */
  z-index: 0;
}



/* 🔥 nội dung nổi lên trên */
header * {
  position: relative;
  z-index: 2;
}


header::before {
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 500px;
  }
}

header::after {
  content: "🔥 SD TOOL HMOOB SERVER Online• Unlock • MTK • Qualcomm • Support 24/7 ➡️ Support iphone 6pls - x Bypass icloud & password bypass full sim * 🔜 ios 18.7.1 - 26.1  - Support 24/7 🔥  ☎️:0964270634";

  position: absolute;
  left: 0;
  bottom: 2px;

  white-space: nowrap;
  width: 100%;

  color: #ffae00;
  font-size: 13px;

  animation: textRun 35s linear infinite;
  pointer-events: none;

  z-index: 2;
}




@keyframes textRun {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}





.topbar {
  image-rendering: auto;
}


.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}
.logo span {
  color: #00ff99;
  text-shadow: 0 0 8px rgba(0,255,153,0.7);
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 90px 20px;
}

.hero h1 {
  font-size: 44px;
  text-shadow: 0 0 20px rgba(0,255,153,0.25);
}

.hero p {
  margin-top: 10px;
  color: #ff0000;
  letter-spacing: 0.5px;
}

/* ===== BUTTON ===== */
.btn {
  background: linear-gradient(135deg, #00ff99, #00ccff);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 
    0 0 12px rgba(0,255,153,0.6),
    0 0 25px rgba(0,204,255,0.3);
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(0,255,153,0.9),
    0 0 40px rgba(0,204,255,0.6);
}

.btn.big {
  font-size: 18px;
  padding: 14px 30px;
}

/* ===== FEATURES ===== */
.features {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 40px;
}

.card {
  background: linear-gradient(180deg, #1a1a1a, #121212);
  padding: 22px;
  border-radius: 10px;
  min-width: 200px;
  text-align: center;
  border: 1px solid rgba(0,255,153,0.2);
  box-shadow: 0 0 20px rgba(0,255,153,0.12);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(0,255,153,0.4);
}

/* ===== CENTER / LOGIN BOX ===== */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.box {
  background: linear-gradient(180deg, #002d4d, #5a0065);
  padding: 30px;
  width: 300px;
  border-radius: 14px;
  border: 1px solid rgba(0,255,153,0.25);
  box-shadow: 0 0 40px rgba(0,255,153,0.25);
}

.box input {
  width: 100%;
  padding: 11px;
  margin: 12px 0;
  border: none;
  outline: none;
  border-radius: 6px;
  background: #000d41;
  color: #fff;
  border: 1px solid rgba(0,255,153,0.15);
}

.box input:focus {
  border-color: #00ff99;
  box-shadow: 0 0 10px rgba(0,255,153,0.5);
}

.box button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: linear-gradient(135deg, #00ff99, #00ccff);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(0,255,153,0.6);
  transition: 0.25s;
}

.box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,255,153,0.9);
}

.dashboard-page .dash {
  padding: 50px 40px;
}

.dashboard-page .dash h2 {
  margin-bottom: 30px;
  font-size: 26px;
}

.dashboard-page .dash h2 span {
  color: #00ff99;
  text-shadow: 0 0 10px rgba(0,255,153,0.6);
}

/* GRID KHỐI DASHBOARD */
.dashboard-page .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-content: stretch;
}

/* CARD DASHBOARD – KHÔNG ĐỤNG .card CŨ */
.dashboard-page .dash .card {
  background: linear-gradient(180deg, #9f2626, #3500d7);
  border-radius: 14px;
  padding: 15px;
  border: 1px solid rgba(0,255,153,0.25);
  box-shadow: 0 0 18px rgba(0,255,153,0.18);
  transition: 0.3s;
}

.dashboard-page .dash .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(0,255,153,0.55);
}

.dashboard-page .dash .card h3 {
  margin-bottom: 12px;
  color: #00ff99;
  font-size: 18px;
}

.dashboard-page .dash .card p {
  color: #bfbfbf;
  font-size: 14px;
  margin-bottom: 14px;
}

/* LICENSE STATUS */
.dashboard-page .license.active {
  color: #00ff99;
  font-weight: bold;
  font-size: 20px;
  text-shadow: 0 0 12px rgba(0,255,153,0.8);
}

/* BUTTON TRONG DASHBOARD */
.dashboard-page .dash button {
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00ff99, #00ccff);
  border: none;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 18px rgba(0,255,153,0.7);
  transition: 0.25s;
}

.dashboard-page .dash button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0,255,153,1);
}

/* CARD NỔI BẬT – BUY LICENSE */
.dashboard-page .card.highlight {
  border: 1px solid rgba(0,255,255,0.6);
  box-shadow: 0 0 40px rgba(0,255,255,0.6);
}
/* ===== DRIVER PAGE (DẠNG DỌC) ===== */

.driver-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 2 cột */
  gap: 20px;

  width: 90%;
  max-width: 1000px;
  margin: 30px auto;
}

.driver-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
}

.driver-card h3 {
  margin: 0;
  font-size: 20px;
  color: #00ff99;
}

.driver-card button {
  min-width: 140px;
}
/* ================== SUPPORT UI PRO ================== */
body {
  /* background: radial-gradient(circle at top, #000f55, #0e0404 70%); */
  /* color: #eaeaea; */
  font-family: "Segoe UI", Tahoma, sans-serif;
}


h2 {
  text-align: center;
  color: #00ffcc;
  margin-bottom: 6px;
}

p {
  text-align: center;
  color: #eff4ff;
  margin-bottom: 14px;
}

/* SEARCH BOX */
.search-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,204,0.25);
  border-radius: 14px;
  padding: 30px;
  max-width: 520px;
  margin: auto;
  box-shadow: 0 0 25px rgba(0,255,204,0.15);
  transition: 0.3s;
}

.search-box:hover {
  box-shadow: 0 0 40px rgba(0,255,204,0.3);
}

.search-box input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #0e1c23;
  color: #fff;
  font-size: 16px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.6);
}

.search-box input::placeholder {
  color: #7fa3b5;
}

/* BUTTON */
.search-box button {
  margin-top: 16px;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #00ffcc, #00bfa6);
  color: #000;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s;
}

.search-box button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(0,255,204,0.6);
}

/* RESULT BOX */
#result {
  margin-top: 22px;
  padding: 15px;
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(0,255,204,0.2);
  animation: fadeIn 0.3s ease;
}

/* FOOTER */
footer {
  text-align: center;
  color: #6c8796;
  margin-top: 60px;
  font-size: 13px;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* màu pc check day */
.account-card {
  background: linear-gradient(145deg, #0f2027, #203a43, #2c5364);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0,255,204,0.3);
}

.account-card h3 {
  color: #00ff99;
  margin-bottom: 15px;
}

.account-card p {
  margin: 6px 0;
  color: #eee;
}
/* ===== RENT màu cho thuê SERVICE ===== */
.sub {
  color: #aaa;
  margin-bottom: 25px;
}

.rent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.rent-card {
  background: linear-gradient(145deg, #0582ff, #914040);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 0 18px rgba(0,255,204,0.15);
  transition: 0.3s;
}

.rent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0,255,204,0.35);
}

.rent-card h3 {
  color: #00ff99;
  margin-bottom: 10px;
}

.price {
  font-size: 22px;
  color: #00e5ff;
  margin: 10px 0;
}

.rent-card p {
  color: #ddd;
  font-size: 14px;
}

.rent-card button {
  margin-top: 12px;
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #00ffcc, #00ccff);
  color: #000;
  cursor: pointer;
  font-weight: bold;
}

.rent-card button:hover {
  opacity: 0.85;
}

.glow {
  box-shadow: 0 0 20px rgba(0,255,204,0.4);
}

.service {
  background: linear-gradient(145deg, #a33495, #002a59);
}

.status.on {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  background: #00ff99;
  color: #000;
  font-weight: bold;
}
/****************************
 * UNLOKTOOL AUTO – GLOW CSS
 * Dán ở CUỐI file CSS
 ****************************/

/* Card chung */
.card,
.auto-card {
 background:  linear-gradient(145deg, #75bf9e, #45133a),  linear-gradient(145deg, rgba(0, 255, 170, 0.06), transparent 60%),  linear-gradient(120deg, rgba(255, 200, 80, 0.05), transparent 70%);
 border-radius: 18px;
 padding: 22px;
 border: 1px solid rgba(0,255,204,.25);
 box-shadow:
    0 0 15px rgba(0,255,204,.15),
    inset 0 0 20px rgba(0,255,204,.05);
 transition: all .3s ease;
}





.card:hover,
.auto-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 0 25px rgba(0,255,204,.45),
    inset 0 0 25px rgba(0,255,204,.1);
}

/* Tiêu đề xanh phát sáng */
.glow-title {
  color: #00ff99;
  text-align: center;
  font-weight: bold;
  text-shadow:
    0 0 8px rgba(0,255,153,.8),
    0 0 20px rgba(0,255,153,.4);
  margin-bottom: 12px;
}

/* Button chuẩn UnlokTool */
.glow-btn {
  background: linear-gradient(135deg, #00ffcc, #00cc99);
  border: none;
  border-radius: 25px;
  padding: 10px 22px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0,255,204,.6);
  transition: all .25s ease;
}

.glow-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(0,255,204,1);
}

/* Thời gian đếm ngược */
#timeLeft {
  color: #00ffcc;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(0,255,204,.8);
}

/* Box QR */
#qrBox img {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,255,204,.6);
}

/* Account / License info */
.account-box {
  text-align: center;
}

.account-box .user {
  color: #fff;
  font-weight: bold;
}

.account-box .expire {
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255,204,0,.6);
}

/* Trạng thái ACTIVE */
.status-active {
  color: #00ff99;
  font-weight: bold;
  text-shadow:
    0 0 10px rgba(0,255,153,.9),
    0 0 25px rgba(0,255,153,.6);
}

/* Trạng thái EXPIRED */
.status-expired {
  color: #ff4444;
  font-weight: bold;
  text-shadow:
    0 0 10px rgba(255,68,68,.9),
    0 0 25px rgba(255,68,68,.6);
}
/************* EXTRA SCROLL SECTION *************/
.extra-section {
  margin-top: 80px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;   /* 🔥 xếp dọc: ảnh trên */
  align-items: center;
  gap: 240px;
              /* mobile không vỡ */
}

.box-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}

/* SLIDER */
.slider-box {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,255,204,.4);
}

.slide-img {
  width: 100%;
  transition: opacity .4s ease;
}

/* UPDATE BOX */
.update-box,
.model-update-box {
  flex: 1;                  /* 🔥 chia đều */
  max-width: 380px;         /* 🔥 fix độ rộng đẹp */
  margin: 0;                /* 🔥 bỏ auto để không lệch */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 378px;        /* 🔥 cao bằng nhau */
  max-width: 503px;
  margin: auto;
  background: linear-gradient(145deg, #00817b, #550707);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,204,.3);
  box-shadow: inset 0 0 20px rgba(0,255,204,.08);
}

.update-box h3,
.model-update-box h3 {
  color: #00ff99;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0,255,153,.6);
}

.update-box .new {
  color: #00ffcc;
  font-weight: bold;
}

/* LIST DEVICE */
.model-update-box ul {
  list-style: none;
  padding-left: 0;
}

.model-update-box li {
  padding: 6px 0;
  color: #ddd;
}
.qr-img{
  width:180px;
  margin-top:15px;
  border-radius:10px;
}
/* ===== BOX QR PRO ===== */
.qr-box{
    background: linear-gradient(145deg,#050505,#0b0b0b);
    border: 1px solid rgba(0,255,255,0.4);
    border-radius: 14px;
    padding: 15px;
    box-shadow:
        0 0 10px rgba(0,255,255,0.4),
        0 0 25px rgba(0,255,255,0.2),
        inset 0 0 10px rgba(0,255,255,0.1);

    transition: all 0.3s ease;
}

/* hover nhìn xịn hơn */
.qr-box:hover{
    box-shadow:
        0 0 15px rgba(0,255,255,0.8),
        0 0 35px rgba(0,255,255,0.4);
    transform: translateY(-3px);
}

/* ===== ẢNH QR ===== */
.qr-box img{
    width: 100%;
    border-radius: 10px;
    border: 2px solid rgba(0,255,255,0.5);
    box-shadow: 0 0 15px rgba(0,255,255,0.4);
}

/* TITLE QR */
.qr-title{
    text-align:center;
    font-size:28px;
    font-weight:bold;
    color:#00ffe7;
    margin-bottom:15px;
    text-shadow:0 0 10px rgba(0,255,255,0.8);

}
/* ===== GRID NOTEBOOK CYBER ===== */
body::before{
  content:"";
  position:fixed;
  inset:0;






  /* fade trung tâm */
  mask-image: radial-gradient(circle at center, #000000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  pointer-events:none;
  opacity:0.4;
}
.glow-core{
  position:fixed;
  top:50%;
  left:50%;
  width:600px;
  height:600px;
  transform:translate(-50%,-50%);

  background: radial-gradient(circle, rgba(0,255,153,0.15), transparent 70%);
  filter: blur(100px);

  pointer-events:none;
  z-index:0;
}

/* ===== SCAN PRO (mượt + glow nhẹ) ===== */
.scan{
  position:fixed;
  inset:0;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 145, 0, 0.15) 50%,
    transparent 100%
  );

  animation: scanMove 3.5s linear infinite;

  pointer-events:none;

  mix-blend-mode: screen; /* 🔥 làm glow đẹp hơn */
  opacity:0.05;
}

/* ===== SCAN ANIMATION ===== */
@keyframes scanMove{
  0%{
    transform: translateY(-100%);
  }
  100%{
    transform: translateY(100%);
  }
}










/* HEADER */
header{
  display:flex;
  justify-content:space-between;
  padding: 17px 30px;
}

.logo{
  font-size:20px;
  font-weight:bold;
  color:#00ffe7;
}

/* MAIN */
.dash{
  text-align:center;
}

.sub{
  color:#aaa;
  margin-bottom:25px;
}

/* ===== GRID NHỎ LẠI ===== */
.dashboard-page .dash .card {
  height: 230px;   /* 🔥 QUAN TRỌNG */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* TITLE */
.card h3{
  color:#00ffe7;
  margin-bottom:20px;
}

/* QR BOX */
.qr-box img{
  width:100%;
  border-radius:10px;
  border:2px solid rgba(0,255,255,.6);
  box-shadow:0 0 15px rgba(0,255,255,.5);
}

/* FOOTER */
footer{
  text-align:center;
  margin-top:30px;
  color:#666;
}
 /* thêm màu cho khố tải driver */
 .driver-list{
  width:90%;
  max-width:900px;
  margin:auto;
}

.driver-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 25px;
  margin-bottom:15px;
  background: #0b002f00;
  border-radius:12px;
  border:1px solid rgba(0,255,255,.4);
  box-shadow:0 0 12px rgba(0,255,255,.3);
  transition:0.3s;
}

.driver-item:hover{
  transform:translateY(-3px);
  box-shadow:0 0 20px rgba(0,255,255,.7);
}

.driver-item h3{
  color: #ff6202;
}

.download-btn{
  padding:8px 20px;
  border:none;
  border-radius:6px;
  background: #3070ff;
  color:#000;
  font-weight:bold;
  cursor:pointer;
}

.download-btn:hover{
  box-shadow:0 0 10px #00ffe7;
}
.server-box {
  display: flex;
  justify-content: center;   /* 🔥 căn giữa ngang */
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
  margin: 14px 0;            /* tạo khoảng cách trên dưới */
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: red;
  box-shadow: 0 0 5px red;
  animation: blink 1s infinite;
}

.dot.online {
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88;
}

.dot.offline {
  background: red;
  box-shadow: 0 0 10px red;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}



/*== màu logo hmoob ==*/
.rgb-led{



    font-size:40px;
    font-weight:bold;
    text-align:center;

 

    background: linear-gradient(
        90deg,
        red,
        orange,
        yellow,
        lime,
        cyan,
        blue,
        violet,
        red
    );

    text-shadow:
0 0 10px rgba(255,255,255,0.5),
0 0 20px rgba(0,255,255,0.5),
0 0 40px rgba(0,255,255,0.5);

    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: ledRGB 9s linear infinite;
}

@keyframes ledRGB{
    0%{
        background-position: 0%;
    }
    100%{
        background-position: 400%;
    }
}

@keyframes scanMove{
  0%{
    transform: translateY(-50%);
  }
  100%{
    transform: translateY(100%);
  }
}





.spin {
  display: inline-block;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}














html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body.dashboard-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dash {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.grid {
  flex: 1;
}

.bottom-area {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== SOCIAL BAR ===== */
.social-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  box-sizing: border-box;
  /* background: linear-gradient(90deg, rgba(0,255,200,0.35), rgba(75,0,130,0.65)); */
  /* border-top: 1px solid rgba(0,255,255,0.25); */
}

.social-bar .btn {
  min-width: 100px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,255,200,0.35);
}

/* ===== FOOTER COPY ===== */
.footer-copy {
  width: 100%;
  text-align: center;
  padding: 12px 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  box-sizing: border-box;
}





/* ===== DASHBOARD FULL FIX ===== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body.dashboard-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dash {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.dash h2 {
  text-align: center;
  margin: 30px 0 25px;
}

.grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  padding: 0 28px 30px;
  box-sizing: border-box;
  align-items: start;
}

/* ===== FOOTER BOTTOM FIX ===== */
.bottom-area {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  /* box-sizing: border-box; */
  /* background: linear-gradient(90deg, rgba(0,255,200,0.35), rgba(75,0,130,0.65)); */
  /* border-top: 1px solid rgba(0,255,255,0.25); */
}

.social-bar .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,255,200,0.35);
  text-decoration: none;
}

.footer-copy {
  width: 100%;
  text-align: center;
  padding: 12px 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  box-sizing: border-box;
}

/* ===== IMPORTANT: tránh CSS cũ phá footer ===== */
footer {
  margin: 0;
}

.bottom-area footer.footer-copy {
  display: block;
}


/* ===== INTRO BOX ===== */
.intro-box {
  width: 100%;
  max-width: 820px;
  margin: auto;

  background: linear-gradient(145deg, #002a2a, #4b0000);
  padding: 25px;
  border-radius: 18px;

  border: 1px solid rgba(0,255,204,0.3);
  box-shadow: 0 0 25px rgba(0,255,204,0.2);

  animation: fadeIn 0.4s ease;
}

.intro-box h3 {
  color: #00ffcc;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0,255,200,0.6);
}

.intro-box p {
  color: #ddd;
  font-size: 14px;
  margin: 6px 0;
}

.intro-box ul {
  margin-top: 10px;
  padding-left: 18px;
}

.intro-box li {
  color: #00ff99;
  margin: 5px 0;
}.intro-box {
  width: 100%;
  max-width: 1837px;
  margin: auto;
  background: linear-gradient(145deg, #002a2a, #4b0000);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(0,255,204,0.3);
  box-shadow: 0 0 25px rgba(0,255,204,0.2);
  animation: fadeIn 0.4s ease;
}

.intro-box h3 {
  color: #00ffcc;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0,255,200,0.6);
}

.intro-box p {
  color: #ddd;
  font-size: 14px;
  margin: 6px 0;
}

.intro-box ul {
  margin-top: 10px;
  padding-left: 18px;
}

.intro-box li {
  color: #00ff99;
  margin: 5px 0;
}
.intro-box:hover {
  box-shadow: 0 0 40px rgba(0,255,204,0.4);
  transform: translateY(-3px);
}

/* ===== FIRE TEXT EFFECT loggo cháy ===== */
.title-fire {
  color: #00ffcc;
  font-weight: bold;
}

/* 🔥 icon cháy riêng */
.fire-icon {
  display: inline-block;
  margin-right: 6px;

  animation: fireFlicker 1.2s infinite alternate;

  filter:
    drop-shadow(0 0 5px #ff6600)
    drop-shadow(0 0 10px #ff3300)
    drop-shadow(0 0 20px #ff0000);
}

/* 🔥 hiệu ứng cháy */
@keyframes fireFlicker {
  0% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 4px #ff8800)
      drop-shadow(0 0 8px #ff3300);
  }

  50% {
    transform: scale(1.15);
    filter:
      drop-shadow(0 0 8px #ffaa00)
      drop-shadow(0 0 15px #ff2200);
  }

  100% {
    transform: scale(1);
    filter:
      drop-shadow(0 0 6px #ff5500)
      drop-shadow(0 0 12px #ff0000);
  }
}


/* ===== CALL ICON EFFECT – RINGING lgo gọi ===== */
.call-icon {
  display: inline-block;
  margin-right: 8px;

  animation: callRing 0.6s infinite;

  filter:
    drop-shadow(0 0 5px #00ffcc)
    drop-shadow(0 0 10px #00ffaa);
}

/* 📞 hiệu ứng đang gọi */
@keyframes callRing {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(12deg); }
  50%  { transform: rotate(-10deg); }
  75%  { transform: rotate(12deg); }
  100% { transform: rotate(0deg); }
}



.call-icon::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #00ffcc;
  border-radius: 50%;
  opacity: 0.6;

  animation: wave 1s infinite;
}

@keyframes wave {
  0% {
    transform: scale(0.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== INTRO FLEX – DÀNH CHO GIỚI THIỆU ===== */
.intro-flex {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 10px;
  flex-wrap: wrap; /* mobile không vỡ */
}

.intro-flex ul {
  /* flex: 1; */
  min-width: 250px;
  list-style: none;
  padding-left: 0;
}

.intro-flex li {
  color: #00ff99;
  margin: 6px 0;
  font-size: 14px;
}



/* nút robot */
#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00ffcc;
  color: #000;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 15px #00ffcc;
  z-index: 999;
}

/* khung chat */
#chatbot {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 280px;
  background: #0a0a0a;
  border: 1px solid #00ffcc;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

/* header */
#chat-header {
  background: #00ffcc;
  color: #000;
  padding: 8px;
  font-weight: bold;
}

/* body */
#chat-body {
  height: 200px;
  overflow-y: auto;
  padding: 10px;
  font-size: 13px;
}

/* tin nhắn */
.bot-msg {
  margin-bottom: 8px;
  color: #00ffcc;
}

.user-msg {
  text-align: right;
  color: #fff;
}

/* input */
#chat-input {
  display: flex;
}

#chat-input input {
  flex: 1;
  border: none;
  padding: 6px;
}

#chat-input button {
  background: #00ffcc;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}