body{
  background:#ffeef5;

  font-family:"Quicksand", sans-serif;

  text-align:center;

  background-image:url("/sparkle.gif");

  overflow-x:hidden;
}

/* 🌸 TITLE */
h1{
  font-family:"Quicksand", sans-serif;

  font-size:64px;

  font-weight:600;

  color:#f29ac2;

  letter-spacing:-2px;

  margin-top:22px;
  margin-bottom:10px;

  text-shadow:none;
}

/* 🌸 SUBTEXT */
.dreamy{
  font-size:24px;

  color:#9b7b88;

  margin-top:10px;
  margin-bottom:28px;

  text-shadow:0 0 5px rgba(255,255,255,.7);
}

/* 🌸 NAV */
.navbuttons a{
  background:#ffcce8;

  color:#9b5d7d;

  padding:12px 42px;

  border-radius:14px;

  text-decoration:none;

  font-weight:700;

  font-size:18px;

  box-shadow:
    0 4px 10px rgba(255,182,217,.35);

  transition:.2s;
}

.navbuttons a:hover{
  transform:translateY(-2px);

  background:#ffb8dc;
}

/* 🌸 SECTION TITLE */
.contentbox h2{
  font-size:38px;

  color:#ff7fb3;

  font-family:"Pacifico", cursive;

  font-weight:normal;
}

/* 🌸 MAIN */
.mainbox{
  width:1000px;
  margin:auto;
  padding:25px;
}

.aboutbox{
  display:flex;
  align-items:center;
  gap:25px;

  text-align:left;

  background:
  linear-gradient(rgba(255,255,255,0.65),
  rgba(255,255,255,0.65)),
  url("/aboutme.jpg");

  background-size:cover;
  background-position:center;

  padding:20px;

  border-radius:25px;
}

.abouttext{
  flex:1;
  line-height:1.9;
  color:#7a5160;
}

.abouttext p{
  font-size:17px;
}

.aboutimg{
  flex-shrink:0;
}

/* 🌙 HEADER */
.banner{
  width:100%;
  max-height:320px;
  object-fit:cover;
  border-radius:25px;
}


.abouttext{
  max-width:700px;
  margin:auto;

  line-height:2;

  font-size:18px;
  color:#7a5160;
}

.intro{
  font-size:16px;
  color:#7a5160;
  margin-bottom:25px;
}

.card{
 background-color:rgba(255,255,255,0.9);
  border:4px solid #ffd6e7;
  border-radius:25px;
  padding:18px;
  margin-bottom:20px;
  box-shadow:0 0 15px rgba(255,182,193,0.4);

  transition:0.2s;
}

.card:hover{
  transform:translateY(-3px);
}

h2{
  color:#ff8ab5;
}

/* 💖 IMAGE */
.baby{
  width:200px;
  border-radius:20px;
  margin:10px 0;
}





/* 🌸 FOOTER */
.footer{
  margin-top:20px;
  font-size:14px;
  color:#7a5160;
  opacity:0.7;
}

.dreamy{
  color:#8b6b7a;
  font-size:18px;
  margin-bottom:25px;
  text-shadow:0 0 8px #ffffff;
}

/* 🌸 MAIN LAYOUT */
.layout{
  display:flex;
  gap:20px;
  align-items:flex-start;

  max-width:1100px;
  margin:0 auto;
  padding:20px;
}

/* LEFT */
.comments{
  flex:2;
}
.comments .card{
  text-align:left;
}

/* 💬 GUEST */
.guest{
  display:flex;
  align-items:flex-start;
  gap:12px;

  background:rgba(255,255,255,0.92);
  padding:12px;

  border-radius:16px;
  margin:10px 0;

  width:100%;
  box-sizing:border-box;

  font-size:14px;
  line-height:1.5;
}

.guesttext{
  flex:1;
}

/* icon */
.icon{
  width:36px;
  height:36px;
  border-radius:10px;
  object-fit:cover;
  flex-shrink:0;
}

/* RIGHT */
.formside{
  flex:1.4;
  min-width:340px;
}

/* 💌 FORM */
.guestbook{
  display:flex;
  flex-direction:column;
  gap:10px;

  background:rgba(255,255,255,0.92);
  padding:18px;

  border-radius:18px;

  width:100%;
  min-height:220px;
  box-sizing:border-box;
}

.guestbook input{
  padding:14px;
  font-size:15px;

  border:none;
  border-radius:14px;

  background:#fff0f6;
  color:#7a5160;
}

.guestbook textarea{
  height:160px;
  padding:14px;
  font-size:15px;

  border:none;
  border-radius:14px;

  background:#fff0f6;
  color:#7a5160;

  resize:none;
}

/* 📱 mobile */
@media (max-width:900px){
  .layout{
    flex-direction:column;
  }

  .formside{
    min-width:unset;
  }

  .guest{
    width:100%;
  }
}
.sendbtn{
  background:none;
  border:none;
  padding:0;

  

  display:flex;
  justify-content:center;
  align-items:center;
}

.sendbtn img{
  width:135px;
  height:auto;

  display:block;

  transition:transform 0.3s ease, filter 0.3s ease;
  will-change: transform, opacity;
}

/* hover */
.sendbtn:hover img{
  transform:scale(1.08);
  filter:drop-shadow(0 0 8px pink);
}

/* bay animation */
.sendbtn.flying img{
  animation: flyAway 0.8s ease-in-out;
}

@keyframes flyAway{
  0%{
    transform: translateY(0) scale(1) rotate(0deg);
    opacity:1;
  }
  50%{
    transform: translateY(-120px) scale(0.6) rotate(10deg);
  }
  100%{
    transform: translateY(-220px) scale(0.2) rotate(25deg);
    opacity:0;
  }
}

.layout{
  display:flex;
  gap:20px;

  align-items:stretch;
}

.comments{
  flex:2;
}

.formside{
  flex:1.4;
  min-width:340px;
}

.comments .card{
  max-height:560px;
  overflow-y:auto;
  text-align:left;
}

.guestbook{
  min-height:560px;
  height:auto;
  position:static;
}

.comments h2{
  white-space:nowrap;
  overflow:hidden;
  font-size:20px;
}

.sendbtn{
  margin-top:10px;
  align-self:center;
}

.comments .card{
  max-height:520px;
  overflow-y:scroll;
  scrollbar-gutter:stable;
  scroll-behavior:smooth;
}
/* 🌸 CUSTOM SCROLLBAR */
.comments .card::-webkit-scrollbar{
  width:12px;
}

.comments .card::-webkit-scrollbar-track{
  background:#fff0f6;
  border-radius:20px;
}

.comments .card::-webkit-scrollbar-thumb{
  background:linear-gradient(
    to bottom,
    #ffb6d5,
    #ff8fc2
  );

  border-radius:20px;
  border:2px solid #fff0f6;
}

.comments .card::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(
    to bottom,
    #ff9ecb,
    #ff74b5
  );
}

.layout{
  background:
    linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0.45)),
    url("/aboutme.jpg");

  background-size:cover;
  background-position:center;

  border:4px solid #ffd6e7;
  border-radius:30px;
  padding:25px;
  box-shadow:0 0 20px rgba(255,182,193,0.35);
}
.guest{
  position:relative;
  padding-bottom:18px;
}
.guest::after{
  content:"";
  
  position:absolute;
  left:55px;
  right:10px;
  bottom:0;

  height:1px;

  background:linear-gradient(
    to right,
    transparent,
    #ffd6e7,
    transparent
  );

  opacity:0.8;
}
@media (max-width:900px){
  .mainbox{
    width:95%;
    padding:10px;
  }

  .layout{
    flex-direction:column;
    padding:12px;
    gap:16px;
  }

  .comments,
  .formside{
    width:100%;
    min-width:0;
  }

  .comments .card,
  .guestbook{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
  }

  .comments .card{
    max-height:520px;
    overflow-y:scroll;
  }

  .guest{
    width:100%;
    box-sizing:border-box;
    word-break:break-word;
  }

  .guesttext{
    min-width:0;
    overflow-wrap:anywhere;
  }

  .comments h2,
  .guestbook h2{
    font-size:16px;
    white-space:nowrap;
    overflow:hidden;
  }
}
body{
  overflow-x:hidden;
}
@media screen and (max-width: 768px){

  body{
    overflow-x:hidden;
  }

  .mainbox{
    width:95%;
    padding:10px;
  }

  .layout{
    display:flex;
    flex-direction:column;
    gap:18px;
  }

  .comments,
  .formside{
    width:100%;
  }

  .comments .card,
  .guestbook{
    width:100%;
    box-sizing:border-box;
  }

  .comments .card{
    max-height:500px;
    overflow-y:auto;
  }

  .guest{
    width:100%;
    box-sizing:border-box;
  }

  .guesttext{
    overflow-wrap:break-word;
    word-break:break-word;
  }

  .aboutbox{
    flex-direction:column;
    text-align:center;
    gap:16px;
  }

  .aboutimg{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .abouttext{
    width:100%;
  }

  .banner{
    width:100%;
    height:auto;
  }

  h1{
    font-size:42px;
  }

}
@media screen and (max-width:768px){

  .layout{
    display:block !important;
  }

  .comments,
  .formside{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    flex:none !important;
  }

  .comments{
    margin-bottom:18px;
  }

  .comments .card,
  .guestbook{
    width:100% !important;
    max-width:100% !important;
  }

  .guestbook{
    height:auto !important;
    height:500px;
    position:static !important;
  }
}
.sidecard{
  background:#fff0f8;
  border:2px solid #ffd0e8;
  border-radius:16px;
  padding:18px;
  color:#7a5160;
  line-height:1.7;
}
.sitewrap{
  width:1000px !important;
  margin:40px auto !important;
}

.bigbanner{
  width:100%;
  height:434.219px;

  object-fit:cover;

  object-position:center 28.2%;

  border-radius:22px;

  box-shadow:
    0 0 25px rgba(255,182,217,.45),
    0 0 50px rgba(255,220,235,.6);
}

.navbuttons{
  display:flex !important;
  justify-content:space-between;
  gap:30px;
  margin:28px 80px;
}

.navbuttons a{
  background:#ffcce8;
  color:#9b5d7d;
  padding:10px 45px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}

.pagegrid{
  display:grid !important;
  grid-template-columns:260px 1fr !important;
  gap:28px;
  align-items:start;
}

.sidebar{
  background:
    linear-gradient(rgba(255,255,255,0.72),
    rgba(255,255,255,0.72)),
    url("/aboutme.jpg");

  background-size:cover;
  background-position:center;

  border:none;

  border-radius:28px;

  padding:28px;

  box-sizing:border-box;

  backdrop-filter:blur(4px);

  box-shadow:
    0 0 18px rgba(255,210,230,.45),
    inset 0 0 20px rgba(255,255,255,.55);
}
.contentbox{
  background:rgba(255,255,255,0.72);

  border:none;

  border-radius:28px;

  padding:28px;

  box-sizing:border-box;

  backdrop-filter:blur(6px);

  box-shadow:
    0 0 18px rgba(255,210,230,.45),
    inset 0 0 20px rgba(255,255,255,.55);
}
.contentbox{
  border:1px solid rgba(255,255,255,.5);
}

.profilepic{
  width:180px !important;
  height:180px !important;
  object-fit:cover !important;
  border-radius:50% !important;
  display:block;
  margin:0 auto 20px;
}

.contentbox{
  text-align:left !important;
  line-height:1.8;
}



.melody-title span{
  display:inline-block;
  animation: sparkleBounce 2.4s ease-in-out infinite;
}

.melody-title span:nth-child(2){ animation-delay:.2s; }
.melody-title span:nth-child(3){ animation-delay:.4s; }
.melody-title span:nth-child(4){ animation-delay:.6s; }
.melody-title span:nth-child(5){ animation-delay:.8s; }

@keyframes floatTitle{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-5px); }
}

@keyframes sparkleBounce{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-6px) rotate(2deg); }
}

.melody-title{
  white-space:nowrap;
}
.melody-title{
  text-shadow:
    0 0 8px rgba(255,255,255,.9),
    0 0 18px rgba(255,190,220,.65);
}
.mainbox{
  width:1000px;
  margin:auto;

  overflow:hidden;
}

.layout{
  width:100%;

  box-sizing:border-box;

  align-items:stretch;
}

.comments,
.formside{
  min-width:0;
}

.comments .card,
.guestbook{
  box-sizing:border-box;
}
.layout{
  display:flex !important;
  align-items:stretch !important;
}

.comments,
.formside{
  display:flex !important;
  flex-direction:column !important;
}

.comments .card{
  height:560px !important;
  max-height:560px !important;
}

.guestbook{
  height:560px !important;
  min-height:560px !important;
}



.melody-title{
  font-family:'Dancing Script', cursive !important;

  font-size:58px !important;
  font-weight:700;

  color:#f59ac4;

  letter-spacing:0;

  margin:18px 0 8px;
  white-space:nowrap;

  text-shadow:
    0 0 8px rgba(255,255,255,.9),
    0 0 16px rgba(255,200,225,.5);

  animation:floatTitle 3s ease-in-out infinite;
}
.contentbox{
  background:
    linear-gradient(rgba(255,255,255,0.72),
    rgba(255,255,255,0.72)),
    url("/aboutme.jpg");

  background-size:cover;
  background-position:center;

  border:none;
  border-radius:28px;

  padding:28px;

  box-sizing:border-box;

  backdrop-filter:blur(4px);

  box-shadow:
    0 0 18px rgba(255,210,230,.45),
    inset 0 0 20px rgba(255,255,255,.55);
}
body::before{
  content:"";

  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:60px;

  background:url("/pinktop2.gif") repeat-x top center;

  background-size:auto 60px;

  pointer-events:none;

  z-index:9999;
  filter:
  drop-shadow(0 0 8px #ffd6ec)
  drop-shadow(0 0 18px #fff0f8);
}
.mainbox{
  width: min(96vw, 1000px) !important;
  max-width:1000px !important;
  margin:auto !important;
}

.sitewrap{
  width:100% !important;
  max-width:1000px !important;
}

.layout,
.pagegrid{
  max-width:1000px !important;
  width:100% !important;
}

.bigbanner{
  width:100% !important;
}

/* 🌸 khoảng cách dưới banner */
.banner{
  margin-bottom:50px;
}

/* 🌸 profile + about */
.sidebar,
.contentbox{
  border:3px dashed #f6b6d2;

  border-radius:28px;

  padding:18px;

  background:
    linear-gradient(rgba(255,255,255,.55),
    rgba(255,255,255,.55)),
    url("/aboutme.jpg");

  background-size:cover;
  background-position:center;

  box-shadow:
    0 0 12px rgba(255,182,210,.35);
}

/* 🌸 khung lớn guestbook */
.layout{
  border:3px dashed #f6b6d2;

  border-radius:34px;

  padding:28px;

  margin-top:30px;

  background:
    linear-gradient(rgba(255,255,255,.45),
    rgba(255,255,255,.45)),
    url("/aboutme.jpg");

  background-size:cover;
  background-position:center;

  box-shadow:
    0 0 12px rgba(255,182,210,.25);
}

 

/* 🌸 khoảng cách giữa profile và about */
.main{
  gap:20px;
}
.bigbanner{
  margin-bottom:20px !important;
}

.pagegrid{
  margin-top:20px !important;
}

.guesttitle{
  background:rgba(255,255,255,0.92);

  border-radius:18px 18px 0 0;

  padding:14px;

  margin-bottom:0;

  position:sticky;
  top:0;

  z-index:5;

  font-size:18px;
}

.commentscroll{
  max-height:520px;
  overflow-y:auto;

  border-radius:0 0 18px 18px;
}

.sidecard{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;

  padding:0 !important;

  margin-top:10px;

  color:#7a5160;
  font-size:17px;
  line-height:1.8;
}
/* 🌸 TEXT HIGHLIGHT */
::selection{
  background:#ffb6d9;
  color:white;
}

::-moz-selection{
  background:#ffb6d9;
  color:white;
}

/* 🌸 FONT TUNING */
body{
  font-family:"Quicksand", sans-serif;

  color:#8b6b7a;

  letter-spacing:0.2px;

  font-weight:500;

  -webkit-font-smoothing:antialiased;
}

/* 🌸 highlight */
::selection{
  background:#ffb6d9;
  color:white;
}

::-moz-selection{
  background:#ffb6d9;
  color:white;
}

/* 🌸 links */
a{
  color:#d97ca6;
  text-decoration:none;

  transition:.2s;
}

a:hover{
  color:#ff8fc2;

  text-shadow:
    0 0 6px rgba(255,200,225,.8);
}

/* 🌸 dreamy tiny text */
.dreamy{
  letter-spacing:.5px;

  color:#9b7b88;

  text-shadow:
    0 0 6px rgba(255,255,255,.9);
}
/* 🌸 profile + about tự cao bằng nhau */
.pagegrid{
  display:grid !important;

  grid-template-columns:260px 1fr !important;

  gap:28px !important;

  align-items:stretch !important;
}

.sidebar,
.contentbox{
  height:auto !important;

  box-sizing:border-box;
}

/* 🌸 DREAMY TABS */
.tabs{
  display:flex;
  gap:14px;

  margin-bottom:20px;

  width:100%;
}

.tabbtn{
  flex:1;

  border:none;

  background:linear-gradient(
    to bottom,
    #ffe6f1,
    #ffd1e5
  );

  color:#b86b92;

  padding:14px 0;

  border-radius:18px;

  font-family:"Quicksand", sans-serif;
  font-size:15px;
  font-weight:700;

  cursor:pointer;

  transition:0.25s;

  box-shadow:
    0 2px 8px rgba(255,182,210,.25);
}

.tabbtn:hover{
  transform:translateY(-2px);

  background:linear-gradient(
    to bottom,
    #fff0f7,
    #ffc7e0
  );

  box-shadow:
    0 0 12px rgba(255,180,220,.75),
    0 0 24px rgba(255,210,235,.6);
}

/* 🌸 ACTIVE TAB MAGIC */
.tabbtn.active{
  background:linear-gradient(
    to bottom,
    #ffb7d7,
    #ff92c2
  );

  color:white;

  animation:tabGlow 2s ease-in-out infinite;
}

@keyframes tabGlow{
  0%,100%{
    box-shadow:
      0 0 10px rgba(255,170,210,.45),
      0 0 20px rgba(255,200,230,.35);
  }

  50%{
    box-shadow:
      0 0 18px rgba(255,170,210,.9),
      0 0 34px rgba(255,210,235,.8);
  }
}

.tabcontent{
  display:none !important;
  opacity:0;
}

.tabcontent.active{
  display:block !important;
  animation:softFadeTab .55s ease both;
}

@keyframes softFadeTab{
  from{
    opacity:0;
    transform:translateY(8px) scale(.99);
    filter:blur(2px);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
  }
  

/* 🌸 FLOAT MELODY */
.floatmelody{
  width:320px;

  float:right;

  margin:-50px 0 18px 26px;

  animation:melodyFloat 3s ease-in-out infinite;
}

@keyframes melodyFloat{

  0%,100%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

}

/* 🌸 MAIN TEXT */
.dreamtext{
  max-width:380px;
  line-height:2;
  text-align:left;
  color:#9b6f84;

  padding:18px 22px;
  margin-top:20px;
  margin-left:12px;

  background:rgba(255,255,255,0.28);
  border-radius:22px;

  text-shadow:
    1px 1px 0 rgba(255,255,255,.7);
}

/* 🌸 SMALL GIF */
.higif{
  width:340px !important;

  height:auto !important;

  display:block !important;

  clear:both;

 margin:45px auto 0 110px;
 margin-left:12px;
}

/* 🌸 MAGIC TEXT */
.magictext{
  max-width:280px;

  margin-left:auto;

  margin-right:35px;

  margin-top:-550px;

  line-height:2.1;

  text-align:left;

  color:#b27b95;

  font-size:17px;

  letter-spacing:.3px;
}

/* 🌸 FINAL TEXT */
.tinyworld{
  width:260px;

  margin-left:auto;

  margin-right:35px;

  margin-top:50px;

  line-height:1.9;

  text-align:left;

  color:#b27b95;
}

/* khoảng cách Hi im melody*/

.introtitle{
  padding-left:42px;

  margin-top:50px;

  margin-bottom:0px;
}

/* 🌸 ALL TAB CONTENT */
.tabcontent{
  padding:18px 10px 10px 10px;
  box-sizing:border-box;
}
/*Tab 2*/
/* 🌸 DREAMLOG */
.dreamlogbox{
  max-width:100%;

  padding:10px 18px;

  line-height:2.1;

  color:#9b6f84;

  text-align:center;
}

/* 🌸 CHATROOM */
.chatboxwrap{
  width:100%;

  padding:12px;

  box-sizing:border-box;
}

/* 🌸 TINY ARCADE */
.arcadebox{
  width:100%;

  padding:18px;

  text-align:center;

  color:#b27b95;
}

/* 🌸 TAB 2 DREAMLOG */
.dreamlogbox{
  height:520px;
  overflow-y:auto;
  padding:12px 8px 12px 12px;
  line-height:2.1;
  color:#9b6f84;
  box-sizing:border-box;
}

/* 🌸 DREAM ENTRY */
.dreamentry{
  display:block;
  clear:both;
  position:relative;

  background:rgba(255,255,255,.38);
  border-radius:22px;
  padding:14px;
  margin-bottom:34px;

  text-align:left;
  box-shadow:0 4px 14px rgba(255,190,220,.15);
}



/* 🌸 CAPTION + DATE */
.dreamcaption{
  position:static;
  color:#8f667b;
  line-height:2;
  font-size:15px;
  padding:0 6px;
  margin-bottom:10px;
}

.dreamdate{
  position:static;
  font-size:12px;
  color:#d88bb1;
  padding-left:6px;
  margin-bottom:10px;
  letter-spacing:1px;
}

/* 🌸 SCROLLBAR */
.dreamlogbox::-webkit-scrollbar{
  width:8px;
}

.dreamlogbox::-webkit-scrollbar-track{
  background:#ffeaf4;
  border-radius:20px;
}

.dreamlogbox::-webkit-scrollbar-thumb{
  background:#ffb7d7;
  border-radius:20px;
}

.dreamlogbox::-webkit-scrollbar-thumb:hover{
  background:#ff95c5;
}

/* 🌸 HEART */
.heartbtn{
  width:24px;
  margin-left:auto;
  font-size:22px;
  color:#ff8fbe;
  margin-top:10px;
  cursor:pointer;
  transition:.25s;
  user-select:none;
  text-align:center;
  position:static;
}

.heartbtn:hover{
  transform:scale(1.15);
}

.heartbtn.liked{
  color:#ff4f97;
  text-shadow:0 0 10px rgba(255,120,180,.75);
}

/* 🌸 DREAM GIF */
.dreamgif,
.tumblrgif{
  width:400px !important;
  height:300px !important;
  object-fit:cover !important;

  display:block !important;
  float:none !important;
  position:static !important;

  margin:0 0 14px 0 !important;
  border-radius:5px;
}

.miniprofile{
  margin-top:22px;

  display:flex;
  flex-direction:column;

  gap:10px;

  padding:0 14px;
}

.miniitem{
  background:rgba(255,255,255,.35);

  border-radius:14px;

  padding:8px 10px;

  font-size:13px;

  color:#b47d97;

  text-align:center;

  box-shadow:
    0 2px 8px rgba(255,190,220,.12);
}
.arcadewrap{
padding:10px;
}

.gamemenu{
display:flex;

gap:12px;

overflow-x:auto;

padding-bottom:12px;

margin-bottom:16px;
}

.gamethumb{
width:120px;

height:80px;

object-fit:cover;

border-radius:18px;

cursor:pointer;

transition:.25s;

flex-shrink:0;

border:3px solid transparent;
}

.gamethumb:hover{
transform:
translateY(-4px)
scale(1.03);

border-color:#ffb7d7;

box-shadow:
0 0 16px rgba(255,180,220,.5);
}

#gameframe{
border:none;

border-radius:24px;

overflow:hidden;

background:#fff7fb;
}

/* cute scrollbar */
.gamemenu::-webkit-scrollbar{
height:6px;
}

.gamemenu::-webkit-scrollbar-thumb{
background:#ffb7d7;

border-radius:20px;
}

/* 🎮 TINY ARCADE */
.arcadewrap{
  padding:10px;
  box-sizing:border-box;
}

.gamemenu{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding-bottom:12px;
  margin-bottom:16px;
  white-space:nowrap;
}

.gamethumb{
  width:120px;
  height:80px;
  object-fit:cover;
  border-radius:18px;
  cursor:pointer;
  transition:.25s;
   flex-shrink:0;
  border:3px solid transparent;
}

.gamethumb:hover{
  transform:translateY(-4px) scale(1.03);
  border-color:#ffb7d7;
  box-shadow:0 0 16px rgba(255,180,220,.5);
}

.gameholder{
  width:100%;
  height:500px;
  overflow:hidden;
  border-radius:22px;
  position:relative;
  background:#fff7fb;
}

#gameframe{
  width:100%;
  height:500px;
  border:none;
  border-radius:22px;
  display:block;
}

.gamethumb{
  flex-shrink:0;
}

#tab-4{
  overflow:hidden !important;
}

.arcadewrap{
  width:100% !important;
  max-width:100% !important;
  box-sizing:border-box;
  overflow:hidden !important;
}

.gamemenu{
  display:flex;
  gap:10px;

  overflow-x:auto;
  overflow-y:hidden;

  padding-top:6px;
  padding-bottom:12px;

  margin-bottom:16px;
}

.gamethumb{
  width:110px !important;
  height:80px !important;

  flex:0 0 auto !important;

  object-fit:cover;
}

.sendbtn{
  touch-action:manipulation;
}