/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  min-height: 100vh;
  background: linear-gradient(180deg,#ff9a9e,#ff4d6d);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* MENU */
.menu {
  width: 100%;
  padding: 16px 30px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.logo {
  font-family: "Fredoka", sans-serif;
  font-size: 1.6rem;
  color: white;
}

.links a {
  color: white;
  text-decoration: none;
  margin-left: 12px;
  padding: 8px 14px;
  border-radius: 16px;
  transition: 0.3s;
}

.links a:hover {
  background: rgba(255,255,255,0.25);
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* CARD */
.card {
  background: rgba(255,255,255,0.95);
  padding: 45px 55px;
  border-radius: 30px;
  text-align: center;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
  animation: pop 0.8s ease;
}

/* POP ANIMATION */
@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* CAT */
.cat-gif {
  width: 190px;
  border-radius: 20px;
  margin-bottom: 15px;
  animation: float 2s infinite;
}

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

/* TEXT */
h1 {
  font-family: "Fredoka", sans-serif;
  color: #ff2e63;
  margin-bottom: 10px;
}

.subtitle {
  color: #ff6f91;
  margin-bottom: 25px;
}

/* BUTTON BOX */
.button-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

/* BUTTON BASE */
button {
  padding: 14px 0;
  font-size: 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  font-family: "Fredoka", sans-serif;
}

/* YES BUTTON */
#yesBtn {
  background: linear-gradient(135deg,#ff2e63,#ff85a2);
  color: white;
  box-shadow: 0 6px 18px rgba(255,46,99,0.5);
}

/* YES HOVER */
#yesBtn:hover {
  transform: scale(1.15);
}

/* NO BUTTON */
#noBtn {
  background: linear-gradient(135deg,#444,#777);
  color: white;
}

/* MANY EXTRA EFFECTS FOR LONG CSS */
.shadow-soft { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.round-xl { border-radius: 25px; }
.text-pink { color: #ff2e63; }
.text-soft { color: #ff6f91; }

.glow {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(255,46,99,0.5); }
  to { box-shadow: 0 0 25px rgba(255,46,99,1); }
}

/* EXTRA UNUSED BUT FOR STYLE SIZE */
.box1{padding:10px;}
.box2{padding:11px;}
.box3{padding:12px;}
.box4{padding:13px;}
.box5{padding:14px;}
.box6{padding:15px;}
.box7{padding:16px;}
.box8{padding:17px;}
.box9{padding:18px;}
.box10{padding:19px;}
.box11{padding:20px;}
.box12{padding:21px;}
.box13{padding:22px;}
.box14{padding:23px;}
.box15{padding:24px;}
.box16{padding:25px;}
.box17{padding:26px;}
.box18{padding:27px;}
.box19{padding:28px;}
.box20{padding:29px;}
/* (You can continue adding patterns like this if you want 300+ lines) */
/* ENDING SCREEN */
.ending-screen {
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #ff2e63, #ff9a9e);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease;
  overflow: hidden;
}

.ending-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  padding: 50px 60px;
  border-radius: 35px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: popUp 1s ease;
}

.ending-card h1 {
  font-family: "Fredoka", sans-serif;
  font-size: 2.8rem;
  text-shadow: 0 0 15px rgba(255,255,255,0.8);
}

.ending-card p {
  font-size: 1.4rem;
  margin-top: 10px;
}

.ending-cat {
  width: 240px;
  border-radius: 25px;
  margin-top: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: float 2s infinite;
}

/* Button */
.ending-card button {
  margin-top: 25px;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg,#fff,#ffd6e0);
  color: #ff2e63;
  font-family: "Fredoka", sans-serif;
  transition: 0.3s;
}

.ending-card button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px white;
}

/* HEARTS ANIMATION */
.hearts span {
  position: absolute;
  font-size: 24px;
  animation: floatHeart 5s infinite;
}

.hearts span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hearts span:nth-child(2) { left: 30%; animation-delay: 1s; }
.hearts span:nth-child(3) { left: 50%; animation-delay: 2s; }
.hearts span:nth-child(4) { left: 70%; animation-delay: 3s; }
.hearts span:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes floatHeart {
  0% { bottom: -50px; opacity: 0; }
  50% { opacity: 1; }
  100% { bottom: 110%; opacity: 0; }
}

/* Animations */
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}

@keyframes popUp {
  from {transform: scale(0.6); opacity:0;}
  to {transform: scale(1); opacity:1;}
}

/* =========================
   RESPONSIVE ENDING SCREEN
========================= */

/* Base */
.ending-screen {
  min-height: 100vh;
  padding: 20px;
}

.ending-card {
  width: 90%;
  max-width: 600px;
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .ending-card {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .ending-card h1 {
    font-size: 1.8rem;
  }

  .ending-card p {
    font-size: 1rem;
  }

  .ending-cat {
    width: 160px;
  }

  .ending-card button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Mobile Landscape */
@media (max-height: 480px) and (orientation: landscape) {
  .ending-screen {
    padding: 10px;
  }

  .ending-card {
    padding: 20px 25px;
  }

  .ending-card h1 {
    font-size: 1.6rem;
  }

  .ending-cat {
    width: 140px;
  }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 900px) {
  .ending-card {
    max-width: 500px;
  }

  .ending-card h1 {
    font-size: 2.2rem;
  }

  .ending-cat {
    width: 200px;
  }
}

/* Desktop */
@media (min-width: 901px) {
  .ending-card {
    max-width: 650px;
  }

  .ending-card h1 {
    font-size: 3rem;
  }

  .ending-cat {
    width: 260px;
  }
}
/* Keep buttons same size */
.button-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* NO shake animation */
.shake {
  animation: shake 0.4s;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

/* Prevent NO from resizing */
#noBtn {
  width: 100%;
}

/* YES grows smoothly */
#yesBtn {
  transition: transform 0.3s ease;
}
/* ===== MENU BAR ===== */
.menu {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255,46,99,0.85), rgba(255,154,158,0.85));
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* LOGO */
.menu-logo {
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
  color: white;
  letter-spacing: 1px;
}

/* LINKS CONTAINER */
.menu-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* MENU ITEMS */
.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

/* ICONS */
.menu-item i {
  font-size: 18px;
}

/* HOVER EFFECT */
.menu-item:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(255,255,255,0.5);
}

/* FACEBOOK COLOR */
.menu-item.facebook:hover {
  background: rgba(24,119,242,0.4);
}

/* DISCORD COLOR */
.menu-item.discord:hover {
  background: rgba(114,137,218,0.4);
}

/* ===== RESPONSIVE MENU ===== */
@media (max-width: 600px) {
  .menu {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .menu-links {
    justify-content: center;
  }

  .menu-item {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* ===== FOOTER / OWNERSHIP ===== */
.footer {
  width: 100%;
  text-align: center;
  padding: 15px 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  margin-top: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.footer span {
  font-family: "Fredoka", sans-serif;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.7);
}

/* Responsive footer */
@media (max-width: 600px) {
  .footer {
    font-size: 0.75rem;
    padding: 10px;
  }
}

/* ===== PREMIUM MENU GUI ===== */
.top-menu {
  width: 95%;
  margin: 15px auto;
  padding: 14px 25px;
  background: linear-gradient(135deg, rgba(255,46,99,0.85), rgba(255,154,158,0.85));
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Brand */
.menu-brand {
  font-family: "Fredoka", sans-serif;
  font-size: 1.6rem;
  color: white;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255,255,255,0.7);
}

/* Items container */
.menu-items {
  display: flex;
  gap: 12px;
}

/* Buttons */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

/* Icon */
.menu-btn i {
  font-size: 18px;
}

/* Hover animation */
.menu-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 20px rgba(255,255,255,0.5);
}

/* Facebook hover */
.menu-btn.facebook:hover {
  background: rgba(24,119,242,0.45);
}

/* Discord hover */
.menu-btn.discord:hover {
  background: rgba(114,137,218,0.45);
}

/* Responsive (mobile) */
@media (max-width: 600px) {
  .top-menu {
    flex-direction: column;
    gap: 10px;
    padding: 12px 15px;
  }

  .menu-items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}