/*
Theme Name: TIMUNA Link Theme
Theme URI: https://example.com/
Author: ChatGPT
Description: Theme WordPress satu halaman dengan menu edit untuk banner, logo, link referral, judul, dan deskripsi.
Version: 1.0.3
Requires at least: 5.8
Tested up to: 6.5
License: GPL-2.0-or-later
Text Domain: timuna-link-theme
*/

:root {
  --bg: #b60d4b;
  --card: rgba(255,255,255,.12);
  --text: #fff;
  --button: #f6f4f4;
  --button-text: #25111a;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Montserrat, Arial, sans-serif;
  background: radial-gradient(circle at top, rgba(255,255,255,.18), transparent 32%), var(--bg);
  color: var(--text);
}
a { color: inherit; }
.timuna-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
}
.timuna-card {
  width: min(100%, 460px);
  text-align: center;
}
.timuna-logo {
  width: min(160px, 48vw);
  max-height: 92px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  margin: 0 auto 16px;
  display: block;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
  background: rgba(255,255,255,.18);
  padding: 8px;
}
.timuna-banner-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  background: var(--card);
}
.timuna-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.timuna-title {
  margin: 22px 0 10px;
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.timuna-desc {
  margin: 0 auto 24px;
  max-width: 42rem;
  opacity: .95;
  font-size: 15px;
  line-height: 1.7;
}
.timuna-buttons { display: grid; gap: 12px; }
.timuna-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.timuna-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.24);
}
.timuna-footer { margin-top: 22px; font-size: 12px; opacity: .75; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
