
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: url('images/wood-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
  box-sizing: border-box;
}

.card {
  background: none;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
}

h1 {
  margin: 10px 0;
  color: #fff;
}

.products {
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}

.taplink-button {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #000;
  padding: 12px;
  margin: 8px 0;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.messengers {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.messengers a {
  flex: 1;
}

.footer {
  margin-top: 20px;
  font-size: 14px;
  color: #eee;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

body:not(.loaded) .wrapper {
  display: none;
}
