* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  background: #fafafa;
  font-family: "Inter", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* MAIN CONTENT */
.main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* CENTER WRAPPER */
.center-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  opacity: 0;
  animation: fadePage 0.9s ease forwards;
  margin-top: -125px; /* move content upward */
}

/* FADE EFFECT */
@keyframes fadePage {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.button-row {
  display: flex;
  gap: 60px;
}

.btn {
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 22px 0;
  border-radius: 40px;
  font-size: 26px;
  font-weight: 700;
  width: 180px;
  text-align: center;
  min-width: 120px;
  transition: 0.25s;
}

/* HOVERS */
.store-btn:hover { background: #3A76F0; transform: translateY(-2px); box-shadow: 0 0 12px rgba(58,118,240,0.25);}
.short-btn:hover { background: #2ECC71; transform: translateY(-2px); box-shadow: 0 0 12px rgba(46,204,113,0.25);}

/* LOGO */
.logo {
  width: 260px;
  height: auto;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.05));
  transition: transform 0.45s cubic-bezier(.25,.1,.25,1);
}

.logo:hover {
  transform: translateY(-2px);
  transition: 0.25s ease;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 22px 0;
  font-size: 15px;
  color: #888;
  letter-spacing: 0.4px;
  border-top: 1px solid #eee;
  font-weight: 500;

  opacity: 0;
  animation: fadeFooter 1s ease forwards;
  animation-delay: 0.25s;
  animation-fill-mode: forwards;
}

@keyframes fadeFooter {
  0%   { opacity: 0; visibility: visible; }
  100% { opacity: 0.9; visibility: visible; }
}

@keyframes fadeFooter {
  from { opacity: 0; }
  to { opacity: 0.9; }
}
/* MOBILE */
@media (max-width: 700px) {
  .center-wrap { gap: 40px; }
  .button-row { flex-direction: column; gap: 20px; }
  .btn { width: 240px; }
}
