.elementor-6 .elementor-element.elementor-element-1e109c4{--display:flex;}.elementor-6 .elementor-element.elementor-element-38fa42e{margin:39px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-38fa42e */@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Rajdhani:wght@400;600;700&display=swap');

:root {
  --gold: #f5c518;
  --gold2: #e8a800;
  --gold-light: #ffe066;
  --dark: #07071a;
  --accent: #ff9100;
  --accent2: #ff6200;
  --text: #f0e6c8;
  --text-dim: #a89870;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── BACKGROUND ── */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255,145,0,0.07) 0%, transparent 50%),
    #07071a;
}

.bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 42%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 62% 8%,  rgba(255,255,255,0.50) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 32%, rgba(255,255,255,0.30) 0%, transparent 100%),
    radial-gradient(1px 1px at 47% 72%, rgba(255,255,255,0.50) 0%, transparent 100%),
    radial-gradient(1px 1px at 91% 67%, rgba(255,255,255,0.40) 0%, transparent 100%),
    radial-gradient(1px 1px at 17% 88%, rgba(255,255,255,0.30) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 72% 88%, rgba(245,197,24,0.70) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 37% 57%, rgba(245,197,24,0.50) 0%, transparent 100%);
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

/* ── CONTAINER ── */
.container {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  padding: 50px 24px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

/* ── LOGO SECTION ── */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeDown 0.9s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rings-wrapper {
  position: relative;
  width: 216px;
  height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 4 ANIMATED RINGS ── */
.ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2.5px solid transparent;
}

/* Ring 1 – outermost gold, slow CW */
.ring-1 {
  width: 216px;
  height: 216px;
  border-top-color: var(--gold);
  border-right-color: rgba(245,197,24,0.25);
  border-bottom-color: transparent;
  border-left-color: rgba(245,197,24,0.55);
  animation: cw 5s linear infinite;
  filter: drop-shadow(0 0 7px rgba(245,197,24,0.5));
}

/* Ring 2 – orange, medium CCW */
.ring-2 {
  width: 192px;
  height: 192px;
  border-top-color: transparent;
  border-right-color: var(--accent);
  border-bottom-color: rgba(255,145,0,0.4);
  border-left-color: transparent;
  animation: ccw 3.5s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,145,0,0.4));
}

/* Ring 3 – light gold, slow CCW */
.ring-3 {
  width: 168px;
  height: 168px;
  border-top-color: var(--gold-light);
  border-right-color: transparent;
  border-bottom-color: rgba(255,224,102,0.4);
  border-left-color: transparent;
  animation: cw 6.5s linear infinite;
  filter: drop-shadow(0 0 5px rgba(255,224,102,0.35));
}

/* Ring 4 – innermost, bright gold, fast CCW */
.ring-4 {
  width: 146px;
  height: 146px;
  border-top-color: transparent;
  border-right-color: rgba(245,197,24,0.85);
  border-bottom-color: var(--gold);
  border-left-color: rgba(245,197,24,0.4);
  animation: ccw 2.5s linear infinite;
  filter: drop-shadow(0 0 8px rgba(245,197,24,0.45));
}

@keyframes cw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes ccw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* ── CENTER LOGO CIRCLE ── */
.logo-circle {
  position: absolute;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #252040, #0d0c1f 75%);
  border: 2.5px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  z-index: 10;
  box-shadow:
    0 0 30px rgba(245,197,24,0.45),
    inset 0 0 22px rgba(245,197,24,0.10);
}

.logo-crown {
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 0 6px var(--gold));
  animation: floatCrown 2.5s ease-in-out infinite;
}

@keyframes floatCrown {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.logo-jai {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffe566 0%, #f5c518 50%, #c8870a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 2px;
}

.logo-club {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1.3;
}

/* ── BRAND NAME ── */
.brand-name {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe566 0%, #f5c518 50%, #c8870a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  text-align: center;
  filter: drop-shadow(0 0 14px rgba(245,197,24,0.4));
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.10);
  border: 1.5px solid rgba(245,197,24,0.35);
  border-radius: 30px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.2s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.15; }
}

/* ── HEADLINE ── */
.headline {
  text-align: center;
  font-family: 'Cinzel Decorative', cursive;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.28;
  background: linear-gradient(180deg, #ffffff 0%, #f5c518 55%, #e8a800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(245,197,24,0.3));
  animation: fadeUp 1s ease 0.35s both;
}

/* ── FEATURE PILLS ── */
.pills {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
  animation: fadeUp 1s ease 0.5s both;
}

.pill {
  display: flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(135deg, rgba(245,197,24,0.08) 0%, rgba(255,145,0,0.05) 100%);
  border: 1.5px solid rgba(245,197,24,0.22);
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.pill:hover::before {
  transform: translateX(100%);
}

.pill:hover {
  border-color: rgba(245,197,24,0.6);
  box-shadow: 0 0 22px rgba(245,197,24,0.15);
  transform: translateX(4px);
}

.pill-icon {
  font-size: 20px;
  filter: drop-shadow(0 0 6px var(--gold));
  flex-shrink: 0;
}

.pill-label {
  flex: 1;
}

.pill-arrow {
  color: var(--gold);
  opacity: 0.6;
  font-size: 20px;
  font-weight: 400;
}

/* ── STATS ROW ── */
.stats {
  display: flex;
  width: 100%;
  background: rgba(245,197,24,0.05);
  border: 1px solid rgba(245,197,24,0.18);
  border-radius: 16px;
  overflow: hidden;
  animation: fadeUp 1s ease 0.65s both;
}

.stat {
  flex: 1;
  padding: 16px 8px;
  text-align: center;
  border-right: 1px solid rgba(245,197,24,0.12);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(245,197,24,0.5));
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.5;
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ── CTA BUTTON ── */
.cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9500 0%, #ff6200 100%);
  border: none;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow:
    0 6px 32px rgba(255,145,0,0.45),
    0 2px 8px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1s ease 0.8s both;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 42px rgba(255,145,0,0.60), 0 2px 8px rgba(0,0,0,0.5);
}

.cta-btn:active {
  transform: translateY(0);
}

.tg-icon {
  font-size: 22px;
}

/* ── FOOTER NOTE ── */
.footer-note {
  font-size: 13px;
  color: rgba(245,197,24,0.45);
  text-align: center;
  letter-spacing: 0.5px;
  animation: fadeUp 1s ease 0.95s both;
}

/* ── SHARED ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}/* End custom CSS */