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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  overflow: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, #fff9e6 0%, #ffe6b3 50%, #fff9e6 100%);
  z-index: -2;
}

#godrays-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.details-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  z-index: 1;
}

.logo-container {
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 120px;
  height: 120px;
  display: block;
  border-radius: 20px;
}

.app-name {
  font-size: 42px;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
  text-align: center;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.tagline {
  font-size: 18px;
  color: #666;
  margin: -8px 0 0 0;
  text-align: center;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
  margin: 0;
  padding: 0;
}

.social-buttons {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #2c2c2c;
}
.social-btn svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}
.social-btn:active {
  transform: translateY(-2px) scale(1.05);
}

.app-store-btn {
  margin-top: 16px;
  padding: 16px 16px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 240px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #2c2c2c;
}
.app-store-btn .store-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.app-store-btn span {
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
.app-store-btn:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}
.app-store-btn:active {
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .app-name {
    font-size: 36px;
  }
  .tagline {
    font-size: 16px;
  }
  .logo {
    width: 100px;
    height: 100px;
  }
  .app-store-btn {
    min-width: 200px;
    padding: 14px 24px;
  }
}/*# sourceMappingURL=style.css.map */