/* 
  Wantan Studio - Landing Page Styles
  Palette: Cream #fffdf9, Light Blue #b2d8d8, Soft Text #3a4750
*/

:root {
  --bg-cream: #fffdf9;
  --accent-blue: #b2d8d8;
  --accent-blue-dark: #97c2c2;
  --text-main: #3a4750;
  --text-muted: #64748b;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Layout --- */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  padding: 3rem 0;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Hero Section --- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 6rem;
  text-align: center;
}

.game-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  max-width: 600px;
  width: 100%;
  position: relative;
  transition: var(--transition);
  animation: slideUp 1s ease-out;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(178, 216, 216, 0.2);
}

.game-icon-container {
  width: 180px;
  height: 180px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.game-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.game-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.game-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* --- Button --- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--accent-blue);
  color: var(--text-main);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background-color: var(--accent-blue-dark);
  color: var(--white);
  transform: scale(1.05);
}

.btn-primary .badge {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

.btn-secondary {
  display: inline-block;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--accent-blue);
  transition: var(--transition);
  margin-top: 2rem;
}

.btn-secondary:hover {
  background-color: var(--accent-blue);
  color: var(--text-main);
}

/* --- Policy Content --- */

.policy-content {
  padding: 4rem 0 6rem;
  max-width: 800px;
  margin: 0 auto;
}

.policy-card {
  background: var(--white);
  padding: 4rem;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  text-align: left;
}

.policy-card section {
  margin-bottom: 2.5rem;
}

.policy-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.policy-card p, .policy-card ul {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-card ul {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.policy-card li {
  margin-bottom: 0.5rem;
}

.policy-card a {
  color: var(--accent-blue-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.last-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-footer {
  text-align: center;
  margin-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.03);
  padding-top: 2rem;
}

/* --- Footer --- */

footer {
  padding: 6rem 0 3rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.03);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-blue-dark);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.ad-ref {
  margin-top: 1rem;
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.3;
}

/* --- Animations --- */

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 640px) {
  header h1 { font-size: 2rem; }
  .game-card { padding: 2rem; }
  .game-title { font-size: 1.8rem; }
  .footer-links { flex-direction: column; gap: 1rem; }
}
