/* =====================================================
   HOME PAGE LAYOUT
===================================================== */

html{
  height:100%;
}

body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background-color:#0f1f2b;
  color: white;
  margin: 0;
  overflow: hidden;
}

a{
  color:#4da3ff;
  text-decoration:none;
  transition:0.2s;
}

/* =====================================================
   HOME BUTTONS
===================================================== */

.home-container{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.home-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  padding:30px;
  margin-top:80px;
  flex-wrap:wrap;
}

/* =====================================================
   GLASS BUTTON
===================================================== */

.glass-btn{
  width:350px;
  height:50px;
  position:relative;

  padding:16px 40px;
  border-radius:50px;

  font-size:25px;
  font-weight:600;
  text-decoration:none;
  color:#fff;
  text-align:center;

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  background:linear-gradient(
    135deg,
    rgba(255,209,102,0.18),
    rgba(4,186,144,0.18)
  );

  border:1px solid rgba(255,255,255,0.25);

  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.25),
    inset 0 -8px 18px rgba(0,0,0,0.35),
    0 8px 32px rgba(0,0,0,0.35);

  transition:all .5s cubic-bezier(.22,1,.36,1);
  overflow:hidden;
}

/* shine effect */
.glass-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-75%;
  width:50%;
  height:100%;

  background:linear-gradient(
    120deg,
    rgba(255,209,102,0.4),
    rgba(4,186,144,0.3),
    rgba(255,255,255,0.15)
  );

  transform:skewX(-25deg);
  transition:1.4s ease;
}

.glass-btn:hover::before{
  left:130%;
}

/* hover */
.glass-btn:hover{
  transform:translateY(-6px) scale(1.02);
}

/* =====================================================
   GLOW TEXT
===================================================== */

@keyframes glowPulse{
  0%{ text-shadow:0 0 5px rgba(255,209,102,0.3); }
  50%{ text-shadow:0 0 20px rgba(255,209,102,0.8); }
  100%{ text-shadow:0 0 5px rgba(255,209,102,0.3); }
}

/* =====================================================
   FONT NOTICE
===================================================== */

.font-notice{
  position:relative;
  margin:40px auto;
  padding:20px;
  max-width:720px;

  color:#e6f7ff;
  background:#081c2c;

  border-radius:12px;
  text-align:center;
}

/* rainbow border */
.font-notice::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:14px;

  background:linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    lime,
    cyan,
    blue,
    violet,
    red
  );

  background-size:400%;
  animation:rainbowMove 6s linear infinite;

  z-index:-1;
}

.font-notice::after{
  content:"";
  position:absolute;
  inset:2px;
  background:#081c2c;
  border-radius:10px;
  z-index:-1;
}

@keyframes rainbowMove{
  0%{background-position:0%}
  100%{background-position:400%}
}

/* =====================================================
   INFO CARDS
===================================================== */

.info-section{
    position:absolute;
    bottom:40px;

    width:90%;
    max-width:1100px;
    left:0;
    right:0;
    margin:auto;

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.info-card{
  width:300px;
  max-width:100%;
  padding:22px;

  background:#08141c;
  border:1px solid #345;
  border-radius:14px;

  color:#ccc;
  font-size:14px;
  line-height:1.6;

  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    0 0 15px rgba(95,211,255,0.12);

  transition:.25s;
}

.info-card h3{
  color:#5fd3ff;
  margin-bottom:10px;
}

.info-card:hover{
  transform:translateY(-6px);
}

.top-nav{

position:fixed;
top:18px;
left:30px;

display:flex;
align-items:center;
gap:20px;

z-index:1000;

}

/* ===== LIQUID GLASS HOME BUTTON ===== */

.top-nav{

position:absolute;
top:10px;
left:0;
width:100%;
height:60px;

display:flex;
align-items:center;
justify-content:center;
gap:14px;

border-bottom:1px solid rgba(255,255,255,0.08);

}


/* ===== LIQUID GLASS BUTTON ===== */

.glass-pill{

display:flex;
align-items:center;
justify-content:center;   /* ← စာကို အလယ်ထားပေးမယ့် line */
gap:6px;

padding:0 18px;

border-radius:30px;
width:100px;
height:38px;
text-align:center;

color:white;
text-decoration:none;
font-size:14px;

background:rgba(255,255,255,0.06);

backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,0.2);

box-shadow:
0 6px 20px rgba(0,0,0,0.35),
inset 0 1px 1px rgba(255,255,255,0.2);

transition:0.25s;

}


/* hover effect */

.glass-pill:hover{

transform:translateY(-2px);

background:rgba(255,255,255,0.1);

box-shadow:
0 10px 25px rgba(0,0,0,0.4),
inset 0 1px 2px rgba(255,255,255,0.25);

}