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

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: url('assets/bg.png.png') no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 480px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* Welcome Image */
.welcome-image img {
  width: 260px;
  max-width: 100%;
  margin: 10px auto 10px;
}

/* Logo Image */
.logo-image img {
  width: 350px;
  max-width: 100%;
  margin: 10px auto 20px;
}

/* Grid Buttons */
.grid-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 20px 0;
}

.card-button {
  background: linear-gradient(145deg, #ffffff, #f6dcdc);
  color: #B41F24;
  text-align: center;
  padding: 20px 10px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}

.card-button:hover {
  transform: scale(1.05);
}

/* Social Buttons */
.social-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0;
}

.social-button {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp {
  background: #25D366;
}

.telegram {
  background: #0088cc;
}

/* CTA Buttons */
.cta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}

.cta-button {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.facebook {
  background: #0f378f;
}

.instagram {
  background: #cc0070;
}
