@import url('https://fonts.googleapis.com/css2?family=PaytoneOne&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold: #FFD700;
  --gold-light: #FFE766;
  --gold-dark: #B8960C;
  --red: #CC0000;
  --red-bright: #FF1A1A;
  --dark: #0A0A0A;
  --dark2: #111111;
  --dark3: #1A1A1A;
  --dark4: #222222;
  --white: #FFFFFF;
  --grey: #AAAAAA;
  --grey-light: #DDDDDD;
  --green: #00C853;
  --whatsapp: #25D366;
  --navy: #0D1B4B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== HEADER ===== */

.site-logo{
  height:42px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.footer-logo{
  height:50px;
  width:auto;
  max-width:220px;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
  overflow:hidden;
}

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--grey-light);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

nav a:hover, nav a.active { color: var(--gold); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: 0.5px;
  transition: all 0.3s !important;
  box-shadow: 0 0 18px rgba(255,215,0,0.25);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,215,0,0.45) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}

.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; border-radius: 2px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(10,10,10,0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  padding: 18px 5%;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ===== PAGE WRAPPER ===== */
.page-wrap { padding-top: 68px; min-height: 100vh; }

/* ===== SECTION SHARED ===== */
section { padding: 90px 5%; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; font-weight: 700;
}

.section-title {
  font-family: 'PaytoneOne', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: 0.5px; line-height: 1.1;
  margin-bottom: 14px;
}

.section-title .gold {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 15px; color: var(--grey);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
  font-weight: 400;
}

.divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 18px; border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.3px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; box-shadow: 0 0 22px rgba(255,215,0,0.28);
  border: none; cursor: pointer;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(255,215,0,0.5); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.3px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.25); transition: all 0.3s;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,0.05); }

.btn-red {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.3px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; box-shadow: 0 0 22px rgba(204,0,0,0.3);
  border: none; cursor: pointer;
}

.btn-red:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(204,0,0,0.5); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}

.whatsapp-tooltip {
  background: var(--dark2); border: 1px solid rgba(37,211,102,0.3);
  border-radius: 10px; padding: 7px 13px; font-size: 12px; font-weight: 600;
  color: var(--white); white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.whatsapp-btn {
  width: 56px; height: 56px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: white; text-decoration: none;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45); transition: all 0.3s; position: relative;
}

.whatsapp-btn::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.28);
  animation: ripple 2s linear infinite;
}

.whatsapp-btn::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.12);
  animation: ripple 2s linear 0.6s infinite;
}

@keyframes ripple {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.65); }

/* ===== FOOTER ===== */
footer {
  background: #050505;
  border-top: 1px solid rgba(255,215,0,0.1);
  padding: 65px 5% 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand p {
  font-size: 13px; color: var(--grey); line-height: 1.8;
  margin: 16px 0 22px; max-width: 270px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 36px; height: 36px; background: var(--dark3);
  border: 1px solid rgba(255,215,0,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); font-size: 14px; text-decoration: none; transition: all 0.3s;
}

.social-link:hover { background: rgba(255,215,0,0.08); color: var(--gold); border-color: rgba(255,215,0,0.3); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 13px; color: var(--grey); text-decoration: none;
  transition: color 0.25s; font-weight: 500;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

.disclaimer {
  max-width: 1200px; margin: 20px auto 0;
  padding: 14px 18px;
  background: rgba(255,215,0,0.03); border: 1px solid rgba(255,215,0,0.08);
  border-radius: 8px; font-size: 11px; color: rgba(255,255,255,0.18);
  line-height: 1.6; text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }

/* ===== TRUST CARDS ===== */
.trust-card {
  background: var(--dark2); border: 1px solid rgba(255,215,0,0.08);
  border-radius: 16px; padding: 30px 26px; transition: all 0.35s;
  position: relative; overflow: hidden;
}

.trust-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0); transition: transform 0.35s;
}

.trust-card:hover { transform: translateY(-6px); border-color: rgba(255,215,0,0.22); box-shadow: 0 18px 45px rgba(0,0,0,0.3); }
.trust-card:hover::before { transform: scaleX(1); }

.trust-icon {
  width: 58px; height: 58px; background: rgba(255,215,0,0.08);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px; border: 1px solid rgba(255,215,0,0.12); transition: all 0.3s;
}

.trust-card:hover .trust-icon { background: rgba(255,215,0,0.14); box-shadow: 0 0 18px rgba(255,215,0,0.18); }

.trust-card h3 {
  font-size: 17px; font-weight: 800; margin-bottom: 9px; color: var(--white);
}

.trust-card p { font-size: 13px; color: var(--grey); line-height: 1.7; }

.trust-num {
  position: absolute; top: 18px; right: 20px;
  font-family: 'PaytoneOne', sans-serif; font-size: 44px; color: rgba(255,215,0,0.05); line-height: 1;
}

/* ===== WEBSITE CARDS ===== */
.website-card {
  background: var(--dark3); border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px; padding: 26px; transition: all 0.35s;
  position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block;
}

.website-card::before {
  content: ''; position: absolute; top:0;left:0;right:0; height:3px;
  background: linear-gradient(90deg,var(--gold),var(--red));
  transform:scaleX(0); transition:transform 0.35s; transform-origin:left;
}

.website-card:hover { transform:translateY(-6px); border-color:rgba(255,215,0,0.32); box-shadow:0 20px 48px rgba(0,0,0,0.4); }
.website-card:hover::before { transform:scaleX(1); }

.wcard-header { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:16px; }

.wcard-icon {
  width:50px; height:50px; background:linear-gradient(135deg,rgba(255,215,0,0.14),rgba(204,0,0,0.08));
  border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:22px;
}

.wcard-badge { font-size:10px; letter-spacing:1px; text-transform:uppercase; padding:3px 10px; border-radius:50px; font-weight:700; }
.badge-official { background:rgba(0,200,83,0.12); color:var(--green); border:1px solid rgba(0,200,83,0.28); }
.badge-live { background:rgba(204,0,0,0.12); color:#FF5555; border:1px solid rgba(204,0,0,0.28); }

.wcard-name { font-size: 18px; font-weight: 800; color:var(--white); margin-bottom:5px; }
.wcard-url { font-size:12px; color:var(--gold); margin-bottom:12px; opacity:0.8; }
.wcard-desc { font-size:13px; color:var(--grey); line-height:1.65; margin-bottom:18px; }

.wcard-link {
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:700; color:var(--gold);
  text-transform:uppercase; letter-spacing:1px; transition:gap 0.2s;
}

.website-card:hover .wcard-link { gap:10px; }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
}

@media(max-width:768px) {
  nav { display:none; }
  .hamburger { display:flex; }
  section { padding:65px 5%; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-bottom-links { justify-content:center; }
  .whatsapp-float { bottom:18px; right:18px; }
}
