/* Splash screen full */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2f5d73;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Logo animation */
#splash img {
  width: 200px;
  height: 200px;            
  border-radius: 50%;       
  object-fit: cover;        
  background: white;        
  padding: 10px;            

  animation: zoomOut 1.9s ease forwards;
}

/* Zoom animation */
@keyframes zoomOut {
  0% {
    transform: scale(2);
  }
  100% {
    transform: scale(0.6);
  }
}

/* Hide main initially */
#main-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #2f5d73;
  color: white;
  text-align: center;
}

/* Container */
.container {
  padding: 60px 20px;
}

/* Logo circle FIXED */


.logo-box {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* important */
}

.logo-box img {
  width: 90%;   /* increase size */
  height: auto;
  object-fit: contain;
}

/* Heading */
h1 {
  margin: 15px 0 5px;
  font-size: 28px;
  letter-spacing: 1px;
}

p {
  margin-bottom: 35px;
  font-size: 16px;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center; /* keep center */
  gap: 12px;

  background: #e6e6e6;
  color: black;
  padding: 16px;
  margin: 15px auto;

  width: 85%;
  max-width: 340px;

  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
  cursor: pointer;
}
.icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
/* Hover */
.btn:hover {
  background: #dcdcdc;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* Click */
.btn:active {
  transform: scale(0.97);
}

/* Disabled iOS button FIX */
.disabled {
  background: #bfc8cc;
  color: #2c3e44;
  cursor: not-allowed;
  box-shadow: none;
}

.disabled:hover {
  transform: none;
  background: #bfc8cc;
}