/* style.css for fy-google-xx */
:root {
  --primary-bg: #ffffff;
  --text-main: #000000;
  --text-secondary: #333333;
  --yellow-btn: #fcf113;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, Arial, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-main);
  overflow-x: hidden;
}



.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.btn-yellow {
  background-color: var(--yellow-btn);
  color: #000;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-yellow:hover {
  transform: scale(1.05);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12vh;
  text-align: center;
  position: relative;
  z-index: 20;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.2;
  margin: 0;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero p {
  font-size: 20px;
  margin-top: 30px;
  color: var(--text-secondary);
}

.btn-black {
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 15px 32px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}

.btn-black:hover {
  opacity: 0.8;
}

.btn-black svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}

.platforms {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}

.platform-icon:hover {
  border-color: #000;
  background: rgba(0,0,0,0.05);
}

.platform-icon svg {
  width: 20px;
  height: 20px;
  fill: #000;
}

/* Chat floating icon */
.chat-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  transition: transform 0.2s;
}
.chat-float:hover {
  transform: scale(1.1);
}

.chat-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Modals from h07-new */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  color: #333;
}
.modal-close {
  position: absolute; top: 15px; right: 15px;
  background: none; border: none; font-size: 20px; cursor: pointer;
}
.dl-modal-logo img { width: 64px; height: 64px; margin-bottom: 15px; }
.dl-modal-meta {
  display: flex; justify-content: center; gap: 15px; margin: 15px 0;
  font-size: 0.9rem; color: #666;
}
.modal-btn {
  background: #000; color: #fff; border: none; padding: 12px 30px;
  border-radius: 20px; font-size: 16px; cursor: pointer; margin-top: 10px;
}
.modal-body { text-align: left; }
.modal-body h3 { margin-top: 0; }
.modal-body ol { margin-bottom: 0; }
.modal-body li { margin-bottom: 10px; font-size: 14px; line-height: 1.5; }

@media (max-width: 768px) {
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
  .header { padding: 15px 20px; }
}

.showcase { margin-top: 60px; width: 100%; max-width: 1000px; padding: 0 20px; box-sizing: border-box; }
.showcase img { width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); }
.footer { background-color: #000; color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 40px 60px; margin-top: 50px; position: relative; z-index: 20; }
.footer-logo img { height: 30px; }
.footer-links a { color: #fff; text-decoration: none; margin-left: 30px; font-size: 14px; opacity: 0.8; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
@media (max-width: 768px) { .footer { flex-direction: column; gap: 20px; padding: 30px 20px; text-align: center; } .footer-links a { margin: 0 15px; } }
