/*
Theme Name: LuckyClub
Theme URI: https://luckyclub.it.com/
Author: LuckyClub
Description: Bright social games landing theme for LuckyClub.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: luckyclub
*/

:root {
  --lc-bg: #06150f;
  --lc-bg-2: #0b2619;
  --lc-panel: rgba(9, 34, 25, 0.82);
  --lc-panel-solid: #0e2c20;
  --lc-green: #08c46f;
  --lc-lime: #c8ff5f;
  --lc-gold: #ffd45b;
  --lc-pink: #ff4eb8;
  --lc-orange: #ff8b32;
  --lc-ink: #f8fff8;
  --lc-muted: #bed1c5;
  --lc-line: rgba(255, 255, 255, 0.16);
  --lc-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
  --lc-radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--lc-ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 78, 184, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(255, 212, 91, 0.14), transparent 24rem),
    linear-gradient(150deg, #03110b 0%, var(--lc-bg) 42%, #10291c 100%);
}

body.admin-bar .lc-header {
  top: 32px;
}

a {
  color: inherit;
}

.lc-page {
  min-height: 100vh;
  overflow: hidden;
}

.lc-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.lc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 18, 12, 0.78);
  backdrop-filter: blur(18px);
}

.lc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.lc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lc-brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(255, 212, 91, 0.24);
}

.lc-nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lc-nav__links a,
.lc-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--lc-line);
  border-radius: 999px;
  color: var(--lc-ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

.lc-pill {
  color: #07130c;
  background: linear-gradient(135deg, var(--lc-lime), var(--lc-gold));
  border-color: rgba(255, 255, 255, 0.4);
}

.lc-hero {
  position: relative;
  min-height: clamp(620px, 92vh, 860px);
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 118px 0 86px;
}

.lc-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.lc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(7px) saturate(1.08) brightness(0.7);
  transform: scale(1.035);
}

.lc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 15, 9, 0.94) 0%, rgba(3, 15, 9, 0.72) 42%, rgba(3, 15, 9, 0.3) 100%),
    linear-gradient(0deg, var(--lc-bg) 0%, rgba(6, 21, 15, 0.24) 44%, rgba(6, 21, 15, 0.48) 100%);
}

.lc-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 21, 15, 0), var(--lc-bg));
}

.lc-hero__content {
  width: min(720px, 100%);
}

.lc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(200, 255, 95, 0.35);
  border-radius: 999px;
  color: var(--lc-lime);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(8, 196, 111, 0.1);
}

.lc-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lc-lime);
  box-shadow: 0 0 18px var(--lc-lime);
}

.lc-hero h1 {
  margin: 22px 0 18px;
  max-width: 12ch;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lc-hero p {
  max-width: 660px;
  margin: 0 0 30px;
  color: var(--lc-muted);
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.lc-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: #07130c;
  font-weight: 950;
  text-decoration: none;
  background: linear-gradient(135deg, var(--lc-lime), var(--lc-gold) 72%, #fff0a4);
  box-shadow: 0 16px 42px rgba(255, 212, 91, 0.23);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lc-button:hover,
.lc-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(255, 212, 91, 0.32);
}

.lc-button--ghost {
  color: var(--lc-ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--lc-line);
  box-shadow: none;
}

.lc-section {
  padding: 72px 0;
}

.lc-section--tight {
  padding-top: 34px;
}

.lc-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.lc-section__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lc-section__head p {
  width: min(420px, 100%);
  margin: 0;
  color: var(--lc-muted);
  line-height: 1.6;
}

.lc-games {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.lc-game-card {
  position: relative;
  min-height: clamp(260px, 34vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--lc-radius);
  background: #0b1c14;
  box-shadow: var(--lc-shadow);
  isolation: isolate;
}

.lc-game-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.lc-game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 14, 9, 0.05) 0%, rgba(3, 14, 9, 0.28) 46%, rgba(3, 14, 9, 0.88) 100%),
    linear-gradient(115deg, rgba(255, 78, 184, 0.16), transparent 45%, rgba(255, 212, 91, 0.13));
}

.lc-game-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.lc-game-card__content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.lc-game-card h3 {
  margin: 0;
  max-width: 12ch;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

.lc-note-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border-top: 1px solid var(--lc-line);
  border-bottom: 1px solid var(--lc-line);
  background: linear-gradient(90deg, rgba(8, 196, 111, 0.1), rgba(255, 212, 91, 0.09));
}

.lc-note-band p {
  margin: 0;
  color: var(--lc-muted);
  line-height: 1.55;
}

.lc-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  color: #07130c;
  font-weight: 950;
  background: var(--lc-gold);
}

.lc-game-page {
  min-height: calc(100vh - 72px);
  padding: 28px 0 58px;
}

.lc-game-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.lc-game-top h1 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.lc-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--lc-radius);
  background: #020705;
  box-shadow: var(--lc-shadow);
}

.lc-frame::before {
  content: "";
  display: block;
  padding-top: min(68vh, 56.25%);
}

.lc-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #020705;
}

.lc-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
  color: var(--lc-muted);
  line-height: 1.75;
}

.lc-content h1,
.lc-content h2 {
  color: var(--lc-ink);
  line-height: 1.1;
}

.lc-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #03110b;
}

.lc-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  padding: 42px 0;
}

.lc-footer h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.lc-footer p {
  margin: 0 0 14px;
  color: var(--lc-muted);
  line-height: 1.62;
}

.lc-footer a {
  color: var(--lc-lime);
  font-weight: 750;
}

.lc-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.lc-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 255, 248, 0.64);
  font-size: 0.92rem;
}

@media (max-width: 782px) {
  body.admin-bar .lc-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .lc-shell {
    width: min(100% - 28px, 1120px);
  }

  .lc-nav {
    min-height: 66px;
  }

  .lc-nav__links a:not(.lc-pill) {
    display: none;
  }

  .lc-hero {
    min-height: 700px;
    padding: 112px 0 62px;
  }

  .lc-hero h1 {
    max-width: 10ch;
  }

  .lc-section {
    padding: 54px 0;
  }

  .lc-section__head,
  .lc-game-top,
  .lc-note-band,
  .lc-footer__bottom {
    align-items: start;
    flex-direction: column;
    display: flex;
  }

  .lc-games,
  .lc-footer__grid {
    grid-template-columns: 1fr;
  }

  .lc-game-card {
    min-height: 300px;
  }

  .lc-game-card__content {
    align-items: start;
    flex-direction: column;
  }

  .lc-button {
    width: 100%;
  }
}
