/*
Theme Name: Flukyone Gateway Pro
Theme URI: https://flukyone105.com/en/home
Author: Flukyone Engineering
Author URI: https://flukyone105.com
Description: Official FlukyOne gateway theme — exact brand colors, typography and UI patterns from flukyone105.com
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: flukyone-gateway-pro
*/

/* ══════════════════════════════════════════════
   FLUKYONE EXACT BRAND DESIGN SYSTEM
   Kaynak: flukyone105.com computed styles
   ══════════════════════════════════════════════ */
:root {
  /* ── Arka planlar ── */
  --bg-1:           #01091c;   /* primary dark bg */
  --bg-2:           #01091c;
  --bg-3:           #01091c;
  --bg-4:           #081b47;   /* card / sidebar active bg */
  --bg-5:           #06231e;

  /* ── Brand renkleri ── */
  --brand-1:        #07a0f0;   /* FlukyOne mavi */
  --brand-hover:    #0880c8;
  --brand-light:    #66ffbd;   /* textDefaultLight */
  --accent-yellow:  #ffd726;   /* jackpot sarısı */

  /* ── Metin ── */
  --text-default:   #07a0f0;   /* link/accent metin */
  --text-primary:   #abb2ba;   /* body metin */
  --text-light:     #f4f4f4;
  --text-muted:     #9d9d9d;
  --text-white:     #ffffff;

  /* ── Butonlar ── */
  --btn-register-bg:    #3498fe;   /* Register butonu - canlı mavi */
  --btn-register-hover: #267ad0;
  --btn-login-bg:       #081b47;   /* Login butonu - koyu lacivert */
  --btn-login-hover:    #0d2460;

  /* ── Pill / category chips ── */
  --chip-bg:        #081b47;
  --chip-color:     #f4f4f4;
  --chip-radius:    999px;

  /* ── Sidebar ── */
  --sidebar-bg:     #01091c;
  --sidebar-hover:  #081b47;
  --sidebar-active: #ffffff;
  --sidebar-text:   #ffffff;
  --sidebar-active-text: #000000;

  /* ── Kartlar / paneller ── */
  --card-bg:        #081b47;
  --card-border:    rgba(7, 160, 240, 0.12);
  --card-hover-border: rgba(7, 160, 240, 0.45);
  --skeleton:       #081b47;

  /* ── Çizgiler / ayırıcılar ── */
  --line:           #262626;
  --border:         rgba(255, 255, 255, 0.07);

  /* ── Input ── */
  --input-bg:       #e6e6e6;
  --input-hover:    #d1d1d1;
  --input-text:     #757575;
  --input2-bg:      #000000;
  --input2-border:  #7c7c7c;
  --input2-focus:   #07a0f0;
  --input2-text:    #ffffff;

  /* ── Border radius ── */
  --radius-sm:   8px;
  --radius-md:   12px;   /* rounded-1 */
  --radius-lg:   16px;   /* rounded-2 / rounded-card */
  --radius-pill: 999px;

  /* ── Jackpot / özel ── */
  --jackpot-bg:      linear-gradient(0deg, #101c37, #223c7a);
  --jackpot-caption: #ffd726;
  --jackpot-border:  #1961a4;

  /* ── Transition ── */
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

/* ══════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--bg-1);
}

body {
  font-family: Roboto, 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  background-color: var(--bg-1);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(7,160,240,.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(8,27,71,.6), transparent);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ══════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════ */
.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1140px, 94%);
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   HEADER  — FlukyOne header'ı ile birebir
   ══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 9, 28, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--text-white);
  letter-spacing: .01em;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Header butonları — Login: koyu lacivert, Register: canlı mavi */
.btn-header-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-login-bg);
  color: var(--text-white);
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-size: .88rem;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition);
}
.btn-header-login:hover { background: var(--btn-login-hover); }

.btn-header-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--btn-register-bg);
  color: var(--text-white);
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(52,152,254,.35);
}
.btn-header-register:hover {
  background: var(--btn-register-hover);
  box-shadow: 0 4px 20px rgba(52,152,254,.5);
}

/* Live badge */
.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--brand-1);
  background: rgba(7, 160, 240, .12);
  border: 1px solid rgba(7, 160, 240, .3);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.header-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-1);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

/* ══════════════════════════════════════════════
   TRUST BAR  — site badge şeridi
   ══════════════════════════════════════════════ */
.trust-bar {
  background: rgba(8, 27, 71, .5);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-icon { font-size: .9rem; }

/* ══════════════════════════════════════════════
   NAV TABS  — Home / Slot Games / Live Casino / Sports
   ══════════════════════════════════════════════ */
.nav-tabs {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-tabs::-webkit-scrollbar { display: none; }

.nav-tabs-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
  cursor: pointer;
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
}

.nav-tab:hover { color: var(--text-white); }

.nav-tab.active,
.nav-tab:focus {
  color: var(--brand-1);
  border-bottom-color: var(--brand-1);
}

/* ══════════════════════════════════════════════
   CATEGORY CHIPS  — Providers / Popular Slots / etc.
   ══════════════════════════════════════════════ */
.chip-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--chip-bg);
  color: var(--chip-color);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--chip-radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
}

.chip:hover,
.chip.active {
  border-color: var(--brand-1);
  background: rgba(7,160,240,.15);
  color: var(--brand-1);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  padding: 48px 0 36px;
}

.hero article {
  background: linear-gradient(135deg, rgba(8,27,71,.9) 0%, rgba(1,9,28,.95) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

.hero article::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(7,160,240,.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero article > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-1);
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-white);
}

h1 em {
  font-style: normal;
  color: var(--brand-1);
}

.hero-copy {
  margin: 0 0 28px;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 58ch;
}

/* ══════════════════════════════════════════════
   BUTTONS  — FlukyOne gerçek buton sistemi
   ══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 12px 24px;
}

/* Primary = Register mavi (#3498fe) */
.btn-primary {
  background: var(--btn-register-bg);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(52,152,254,.35);
  animation: pulse-blue 2.2s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--btn-register-hover);
  box-shadow: 0 6px 24px rgba(52,152,254,.55);
  transform: translateY(-1px);
}

@keyframes pulse-blue {
  0%,100% { box-shadow: 0 4px 16px rgba(52,152,254,.35); }
  50%      { box-shadow: 0 4px 28px rgba(52,152,254,.6); }
}

/* Secondary = Login lacivert (#081b47) */
.btn-secondary {
  background: var(--btn-login-bg);
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,.12);
}
.btn-secondary:hover {
  background: var(--btn-login-hover);
  border-color: rgba(7,160,240,.4);
}

/* Ghost outline */
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover {
  border-color: var(--brand-1);
  color: var(--brand-1);
  background: rgba(7,160,240,.08);
}

/* Large */
.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* CTA grubu */
.cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ══════════════════════════════════════════════
   PROGRESS / SECURITY STATUS
   ══════════════════════════════════════════════ */
.progress-wrap {
  margin-top: 24px;
}

.progress-track {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
  height: 4px;
  overflow: hidden;
  max-width: 340px;
}

#progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-1), var(--accent-yellow));
  border-radius: var(--radius-pill);
}

.security-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: .82rem;
  color: var(--text-muted);
  background: rgba(8,27,71,.6);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

.loader {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  border-top-color: var(--brand-1);
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════
   SECTION HEADER
   ══════════════════════════════════════════════ */
.section { padding: 32px 0; }

.section-head {
  text-align: center;
  margin-bottom: 24px;
}

.section-eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand-1);
  margin-bottom: 8px;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 8px;
  line-height: 1.2;
}

h2 + p {
  color: var(--text-primary);
  font-size: .92rem;
  margin: 0;
}

/* ══════════════════════════════════════════════
   CARDS  — FlukyOne card sistemi (#081b47 bg)
   ══════════════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(7,160,240,.12);
}

.card:hover::after { opacity: 1; }

.card-icon {
  font-size: 1.7rem;
  margin-bottom: 10px;
  display: block;
}

.card h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-white);
}

.card p {
  font-size: .86rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand-1);
  transition: gap var(--transition);
}

.card-cta:hover { gap: 9px; }

/* Game card (dar) */
.card-game {
  padding: 16px 12px;
  text-align: center;
  align-items: center;
}

.card-game h2 {
  font-size: .88rem;
  text-align: center;
  white-space: pre-line;
}

.game-tag {
  display: inline-block;
  background: rgba(7,160,240,.15);
  border: 1px solid rgba(7,160,240,.3);
  color: var(--brand-1);
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Highlight rengi — sarı (jackpot/bonus highlight) */
.highlight { color: var(--accent-yellow); font-weight: 700; }
.highlight-blue { color: var(--brand-1); font-weight: 700; }

/* ══════════════════════════════════════════════
   PAYMENT BADGES
   ══════════════════════════════════════════════ */
.payment-bar {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.payment-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.payment-badge {
  background: rgba(8,27,71,.8);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-primary);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-md);
}

/* ══════════════════════════════════════════════
   CTA SECTION  — büyük kapanış kutusu
   ══════════════════════════════════════════════ */
.cta-section { padding: 40px 0; }

.cta-box {
  background: linear-gradient(135deg, rgba(8,27,71,.95), rgba(1,9,28,.98));
  border: 1px solid rgba(7,160,240,.2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(7,160,240,.1), transparent 70%);
  pointer-events: none;
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); margin-bottom: 12px; }

.cta-box > p {
  color: var(--text-primary);
  max-width: 50ch;
  margin: 0 auto 28px;
  font-size: .96rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer {
  margin-top: auto;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 28px 0 16px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-links a:hover { color: var(--brand-1); }

.footer-legal {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .74rem;
  color: #4b5563;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   STICKY CTA (mobil alt buton)
   ══════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(to top, var(--bg-1) 55%, transparent);
  z-index: 50;
  display: flex;
  justify-content: center;
}

.sticky-cta .btn {
  width: min(420px, 100%);
  min-height: 50px;
  font-size: .96rem;
  border-radius: var(--radius-md);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .sticky-cta {
    position: static;
    padding: 0;
    background: transparent;
    display: inline-flex;
  }
  .sticky-cta .btn { width: auto; min-width: 220px; }

  body { padding-bottom: 0; }
}

@media (max-width: 959px) {
  body { padding-bottom: 74px; }
}

@media (max-width: 480px) {
  .header-inner { gap: 8px; }
  .trust-items { justify-content: flex-start; gap: 6px 14px; }
  h1 { font-size: 1.65rem; }
}

/* ══════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
