    /* Thanh bar trên cùng */
    .top-bar {
      width: 100%;
      height: 55px;
    background-color: rgba(17, 17, 17, 0.75);
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
      display: flex;
      justify-content: center;
      align-items: center;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10002;
    }
    
    /* Nội dung trong thanh bar */
    .top-content {
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 1920px;
      white-space: nowrap;
      justify-content: space-between;
      gap: 60px;      
      padding: 0 300px;
    }
    
    
    /* Logo bên trái */
    .logo-area {
      flex-shrink: 0;
    }

    /* Logo ảnh */
    .site-logo {
      height: 60px;
      width: auto;
      object-fit: contain;
    }
    
    /* Menu giữa */
    .menu-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px; 
      flex-grow: 1;
    }
    
    /* Các link menu */
    .menu-link {
      display: flex;
      align-items: center;
      color: white;
      text-decoration: none;
      font-size: 20px;
      font-weight: bold;
      transition: color 0.2s ease;
    }

    .menu-link:hover {
      color: #ffd700;
      transform: scale(1.05);
    }
    
    /* Các nút bên phải */
    .menu-actions {
      display: flex;
      align-items: center;
      gap: 60px;
      flex-shrink: 0;
    }
    
    /* Nút giftcode */
    .nut-giftcode {
      height: 45px;
      animation: pulse 1.5s ease-in-out infinite;
      filter: brightness(1.2) saturate(1.1);
    }
    
    .nut-giftcode:hover {
      animation: none;
      transform: scale(1.1);
      filter: brightness(1.4) saturate(1.2);
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.15); }
      100% { transform: scale(1); }
    }

/* Nút ☰ toggle menu */
    .menu-toggle {
      display: none;
      font-size: 28px;
      color: white;
      cursor: pointer;
      z-index: 1100;
      position: relative;
    }

/* Responsive cho mobile */
@media (max-width: 1280px) {
    .top-content {
     position: relative;
     flex-wrap: wrap;
     gap: 10px;
     padding: 0 20px;
    }
   
    .menu-links {
     display: none;
     flex-direction: column;
     align-items: flex-start;
     width: 100%;
     position: fixed;
     top: 55px;
     left: 0;
     gap: 20px;
    background-color: rgba(17, 17, 17, 0.75);
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
     padding: 10px 198px; 
     box-sizing: border-box;
	 z-index: 10001;
    }
   
    .menu-links.active {
     display: flex;
    }
   
    .menu-actions {
     margin-left: auto;
    }
   
    .menu-toggle {
     display: block;
	 font-size: 36px;
	 margin-left: 60px;
    }
	
	.menu-toggle:hover {
      color: #ffd700;
      transform: scale(1.05);
    }
	
}
    .menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    background-color: rgba(17, 17, 17, 0.75);
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.35);
      z-index: 9000; 
      backdrop-filter: blur(1px);
    }
    
    .menu-overlay.visible {
      display: block;
    }
		
/* Modal Đăng nhập - Đăng ký - Quên mật khẩu */
    .modal {z-index: 9999 !important;
      display: none;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
	}
		 
    .modal-logo {
	  display: block;
      margin: 0 auto 2px auto;
      width: 160px;
      height: auto;
	}
		
    .login-modal h2,.register-modal h2 {
	  margin-top: 0;
      margin-bottom: 10px;
	}

    .input-container {
	  margin-bottom: 10px;
      text-align: left;
	}

    .register-link,.forgot-link {
	  color: #007bff;
      text-decoration: none;
      font-weight: bold;
	}

    .register-link:hover,.forgot-link:hover {
	  text-decoration: underline;
      color: #0056b3;
	}

    .input-container label {
	  display: block;
      margin-bottom: 5px;
      font-weight: bold;
	}

    .input-with-icon {
	  position: relative;
	}

    .form-links {
	  margin-top: 15px;
      font-size: 13px;
	}

    .icon-img {
  	  position: absolute;
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      opacity: 0.6;
	}

    .input-with-icon input {
	  width: 100%;
      padding: 10px 10px 10px 48px;
      font-size: 13px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
	}

    .btn-login {
	  font-weight: bold;         
      font-size: 16px;
      color: #000;
      background-color: #fff;      
      border: 2px solid #000;    
      padding: 8px 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.2s ease;
	}

    .btn-login:hover {
	  background: linear-gradient(to right, #ffdd33, #ffa500);
      color: #000;
	}
		
    .back-link {
      font-size: 13px;
      font-weight: bold;
      display: inline-block;
	}


/* Nút đóng (dấu X) */
    .close {
	  color: #aaa;
      font-size: 30px;
      font-weight: bold;
      position:absolute;
      top: 0px;
      right: 10px;
      cursor: pointer;
	}

    .close:hover,.close:focus {
	  color: black;
      text-decoration: none;
      cursor: pointer;
	}		
		
/*  Khung modal */
    .login-modal, #forgotModal .login-modal {
	  position: relative;
      background-color: #fff;
      padding: 10px;
      border-radius: 8px;
      width: 100%;
      max-width: 350px;
	  height: 430px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      text-align: center;
	}
		
    .register-modal {
	  height: 550px
	}
	
	
/* Nút Đăng Nhập */	
    .login-button  {
	  color: #FFD700;
      padding: 8px 14px;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease;
	}

    .login-button:hover {
	  color: #FFD700;
	}
	
    .login-icon {
	  width: 28px;
      height: 28px;
      border-radius: 50%;
      vertical-align: middle;
      margin-right: 6px;
	}


/* Dropdown tài khoản sau khi đăng nhập */	
    .user-dropdown {
	  position: relative;
      display: inline-block;
	}

    .user-dropdown .user-name {
	  color: #ffd700;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      padding: 10px 10px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      height: 20px;
	}


    .user-dropdown-content {
	  display: none; 
      position: absolute;
      background-color: #ffffff;
      min-width: 180px;
      top: 120%;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1001;
      overflow: hidden;
	}


    .user-dropdown-content a {
	  color: #000; 
      padding: 10px 16px;
      text-decoration: none;
      display: block;
      font-size: 15px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

    .user-dropdown-content a:hover {
	  background-color: #f2f2f2; 
      font-weight: bold;  
	}

    .user-dropdown-content a.info-row {
      pointer-events: none;  
      cursor: default;        
      background: transparent;  
    }
    
    .user-dropdown-content a.info-row:hover {
      background: transparent;  
      font-weight: normal;     
    }


/* CSS của account downdrop */	
    .num {
	  font-weight: bold;
      font-size: 15px;
	}
	
	.num.uin { 
	  color: #FFA500; font-weight: bold;
	}	
    .num.level { 
	  color: #FFA500; font-weight: bold;
	}	
    .num.vip {
	  color: #a020f0; font-weight: bold;
    }	
    .num.coin { 
	  color: red; font-weight: bold;
	}	
    .num.coupon {
	  color: #1e88e5; font-weight: bold; 
	}
		
/* icon level */
.level.has-bg {
  position: relative;
  padding-right: 32px; 
  display: inline-block;
}
.level.has-bg::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); 
  width: 32px;
  height: 30px;
  background-image: var(--level-bg);
  background-repeat: no-repeat;
  background-size: contain; 
  background-position: center;
  pointer-events: none; 
}	
		
/* Các nút mạng xã hội góc phải */				
    .mxh-buttons {
	  position: fixed;
      top: 85%;
      right: 10px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 3px;
      z-index: 999;
	}

    .mxh-buttons img {
	  width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: 0.3s ease;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	}

    .mxh-buttons img:hover {
	  transform: scale(1.1);
      filter: brightness(1.2);
	}
	
/* ===== Dropdown Vietsub  ===== */
.menu-dropdown{
  position: relative;
  display: inline-block;
}

/* Nút Vietsub */
.dropdown-trigger{
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  line-height: 40px;
}
.dropdown-trigger:hover{
  color: #ffd700;
  transform: scale(1.05);
}

/* ===== KHUNG MENU  ===== */
.dropdown-menu{
  position: absolute;
  top: calc(100% + 8px);      
  left: 50%;     
  transform: translateX(calc(-50% + 20px));
  min-width: 150px;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);     
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  padding: 8px 10px;   
  display: none;
  z-index: 1200;
}
.menu-dropdown.open .dropdown-menu{ display:block; }

.dropdown-menu .menu-link:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 3px 0 rgba(0,0,0,.3);
  color: #ffd700;
}

.dropdown-menu .menu-link:active{
  transform: translateY(0) scale(.99);
  filter: brightness(.98);
  box-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* Cầu nối hover 8px dưới nút */
.menu-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;  
  width: 100%;
  height: 8px; 
}
/* ===== ITEM TRONG MENU  */
.dropdown-menu .menu-link{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin: 6px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.6);
  box-shadow: 0 2px 0 rgba(0,0,0,.25);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}


/* ===== TOPBAR PHỤ – FLOAT RIGHT ===== */
.topbar-sub {
  position: fixed;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10050;
}

/* Link trong topbar phụ */
.topbar-sub .menu-link {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent !important;
  transition: transform .15s ease;
}

/* Hover: chỉ scale, KHÔNG nền */
.topbar-sub .menu-link:hover {
  background: transparent !important; 
  transform: scale(1.08);
}
/* Tooltip */
.topbar-sub .menu-link::after {
  content: attr(data-title);
  position: absolute;

  right: 100%;             
  top: 50%;                
  transform: translateY(-50%);

  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;

  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* Hover hiện tooltip */
.topbar-sub .menu-link:hover::after {
  opacity: 1;
  transform: translate(-6px, -50%);
}

/* Icon ảnh */
.topbar-sub img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  pointer-events: none;
}


/* ================= OVERLAY ================= */
.sp-search-overlay {
  position: fixed;
  top: 55px;             
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(0,0,0,0.55);
  z-index: 999999;

  display: flex;
  justify-content: center;
  align-items: center;   
}
/* ================= BOX ================= */
.sp-search-box {
  width: 820px;
  max-width: 95%;
  margin-top: 20px;

  background: linear-gradient(180deg, #2b3a42, #243038);
  border-radius: 14px;
  padding: 16px;
  color: #ffffff;

  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* ================= HEADER ================= */
.sp-search-header {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.sp-search-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.sp-search-btn {
  padding: 0 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #ffd54f;
  font-weight: 600;
}

.sp-search-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ================= BODY ================= */
.sp-search-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ================= BLOCK CHUNG ================= */
.info-block {
  border-radius: 12px;
  padding: 14px;
}

/* ================= KHỐI 1 ================= */
/* KHỐI 1 */
.info-basic {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #2f4b57, #2a3f49);
  border: 1px solid rgba(255,255,255,0.06);
}

/* PHẦN 1: AVATAR  */
.basic-left {
  flex: 1;                 
  display: flex;
  align-items: center;        
  justify-content: center;   
}

/* AVATAR */
.sp-avatar-holder {
  position: relative;  
  width: 170px;
  height: 170px;
}

.sp-avatar-wrap {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f3c86a;
  box-sizing: border-box;
  position: relative;
}

.sp-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-avatar-upload {
  position: absolute;

  left: -50px;    
  bottom: -8px;  

  font-size: 28px;
  border-radius: 6px;
  padding: 4px 6px;

  cursor: pointer;
  z-index: 10;
}

/* PHẦN 2: THÔNG TIN – CHIẾM 2 PHẦN */
.basic-right {
  flex: 2;                  
  display: flex;
  flex-direction: column;
  justify-content: center;     
  padding-left: 20px;
  padding-right: 20px;
}


/* ================= KHỐI 2 – GRID 2 CỘT ================= */
.info-stats {
  background: linear-gradient(135deg, #2a3440, #252e38);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px 22px;
}

/* GRID 2 CỘT */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
}

/* MỖI CỘT */
.stats-col {
  padding: 0 6px;
}

/* DÒNG – KHÓA CHIỀU CAO */
.stats-col .info-row {
  min-height: 28px;
  align-items: center;
}

/* ================= KHỐI 3 ================= */
.info-status {
	  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: linear-gradient(135deg, #303030, #262626);
  border: 1px solid rgba(255,255,255,0.05);
}

/* ================= DÒNG THÔNG TIN ================= */
.sp-info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 4px 0;
}

.sp-info-row span:first-child {
  color: #cfd8dc;
}

.sp-info-row span:last-child {
  color: #ffffff;
  font-weight: 500;
}
#sp-level {
  font-weight: 600;       
  text-shadow: 0 0 2px rgba(255, 213, 79, 0.6);
}
#sp-nickname {
  color: #ffd54f;
  font-weight: 600;
}
#sp-status-box {
  color: #ffd54f;
  font-weight: 400;
}
#sp-team-name { 
  color: #ffffff;
}
.sp-info-row #sp-status.sp-status-online {
  color: #4caf50;
  font-weight: 600;
}

.sp-info-row #sp-status.sp-status-offline {
  color: #9e9e9e;
  font-weight: 600;
}

#sp-status.sp-status-banned {
  color: #ff3b30 !important;
  font-weight: 600 !important;
}
/* ================= STATUS ================= */
.sp-status-box {
  position: relative;
  height: 110px;       
  box-sizing: border-box;

  padding: 10px;

  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 8px;

  overflow: hidden;
}



/* text status */
#sp-status-text {
  display: block;
  line-height: 1.3;
  outline: none;       
  box-shadow: none;
  cursor: text;
  white-space: pre-wrap;
  word-break: break-word;

  margin: 0;
  padding: 0;
}


/* ICON EDIT  */
.sp-status-edit {
  position: absolute;
  right: 6px;
  bottom: 6px;

  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  line-height: 1;
  cursor: pointer;      
  user-select: none;    

  z-index: 2;
}
.sp-status-edit:hover {
  transform: scale(1.05);
}

.sp-status-edit:active {
  transform: scale(0.95);
}

/* ===== POPUP AVATAR ===== */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* hộp popup */
.popup-box {
    width: 420px;
    max-width: 90%;
    background: #222;
    border: 2px solid #f3c86a;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    color: white;
}

/* header */
.popup-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    font-weight: bold;
    background: #333;
    border-bottom: 1px solid #555;
}

#popup-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.popup-body {
    padding: 20px;
    text-align: center;
}

#avatar-circle-wrapper {
  position: relative;
  overflow: hidden;
}

#crop-image {
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  cursor: grab;
  touch-action: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .top-bar {
    height: 44px;
  }

  .top-content {
    padding: 0 6px;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .site-logo {
    height: clamp(24px, 3.5vh, 30px);
    flex-shrink: 0;
  }

  .menu-actions {
    gap: 6px;
    white-space: nowrap;
    align-items: center;
  }

  .login-button span,
  .dropdown-trigger span {
    display: none;
  }

  .login-icon {
    width: clamp(17px, 4.8vw, 20px);
    height: clamp(17px, 4.8vw, 20px);
    margin-right: 0;
  }

  .nut-giftcode {
    height: clamp(26px, 5.8vw, 30px);
    width: auto;
    padding: 0 8px;
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
    font-size: clamp(17px, 5vw, 20px);
    margin-left: 4px;
    flex-shrink: 0;
  }
}

@media (pointer: coarse) {

  .dropdown-trigger,
  .login-button,
  .menu-link {
    font-size: clamp(12px, 3.5vw, 14px) !important;
    line-height: 1.05;
  }

  .login-icon {
    width: clamp(17px, 4.8vw, 20px);
    height: clamp(17px, 4.8vw, 20px);
  }

  .nut-giftcode {
    height: clamp(26px, 5.8vw, 30px);
    font-size: 13px;
    padding: 0 8px;
  }

  .menu-toggle {
    font-size: clamp(17px, 5vw, 20px);
  }

  .topbar-sub {
    right: 4px;
    gap: 4px;
  }

  .topbar-sub .menu-link {
    width: clamp(32px, 7vw, 36px);
    height: clamp(32px, 7vw, 36px);
  }

  .topbar-sub img {
    width: clamp(28px, 6.2vw, 32px);
    height: clamp(28px, 6.2vw, 32px);
  }

  .topbar-sub .menu-link::after {
    font-size: 11px;
    padding: 5px 8px;
  }

  .mxh-buttons {
    right: 4px;
    gap: 4px;
  }

  .mxh-buttons img {
    width: clamp(32px, 7vw, 36px);
    height: clamp(32px, 7vw, 36px);
  }
}

@media (pointer: coarse) {

  .login-modal,
  .register-modal {
    transform: none;
    width: 82vw;
    max-width: 320px;
  }
}

@media (pointer: coarse) {

  .info-basic,
  .basic-left,
  .basic-right,
  .sp-info-row {
    flex-wrap: nowrap !important;
  }

  .info-basic {
    display: flex;
    align-items: center;
  }

  .sp-avatar-holder,
  .sp-avatar-wrap {
    width: clamp(100px, 26vw, 140px);
    height: clamp(100px, 26vw, 140px);
    flex-shrink: 0;
  }

  .sp-avatar-upload {
    font-size: clamp(17px, 4.5vw, 20px);
    left: -34px;
    bottom: -6px;
  }

  .basic-right {
    flex: 1;
    min-width: 0;
    padding-left: 10px;
  }

  .sp-info-row {
    display: grid;
    grid-template-columns: 115px 1fr;
    align-items: center;
    white-space: nowrap;
  }

  .sp-info-row span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sp-info-row span:first-child {
    font-size: 13px;
  }

  .sp-info-row span:last-child {
    font-size: 14px;
    font-weight: 600;
  }

  #sp-nickname {
    font-size: 16px;
  }

  #sp-level {
    font-size: 14px;
  }

  .level.has-bg::after {
    width: 22px;
    height: 20px;
  }

  .sp-status-box {
    height: 96px;
  }

  #sp-status-text {
    font-size: 13px;
    white-space: normal;
  }

  .sp-status-edit {
    font-size: 14px;
    width: 17px;
    height: 17px;
  }
}

@media (pointer: coarse) {

  .user-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
  }

  .user-dropdown .user-name {
    font-size: clamp(14px, 3.8vw, 17px);
    height: 100%;
    padding: 0 8px;
    line-height: 1.1;
    display: flex;
    align-items: center;
  }

  .user-dropdown .user-name img {
    height: clamp(20px, 5vw, 24px);
  }

  .user-dropdown-content {
    position: fixed;
    top: 44px;
    right: 4px;
    left: auto !important;
    min-width: 180px;
    max-width: calc(100vw - 8px);
    margin: 0;
    box-sizing: border-box;
  }

  .user-dropdown-content a {
    font-size: 16px;
    padding: 8px 12px;
  }

  .user-dropdown-content .num {
    font-size: 16px;
  }
}
/* ===== FIX MOBILE MENU ===== */
@media (max-width: 768px) {
  .top-content {
    position: relative;
  }

  .menu-links {
    position: absolute;   
    top: 100%;              
    left: 0;
    width: 100%;
    padding: 12px 16px;      
    box-sizing: border-box;
    align-items: flex-start; 
  }

}

@media (max-width: 768px) {
  .menu-toggle {
    font-size: 28px;   /* hoặc 30px */
  }
}