/* LRXTeamTV — Red / Black / White Theme */

:root {
  --lrx-red: #ff0a1a;
  --lrx-red-hot: #ff2240;
  --lrx-red-dark: #8a0010;
  --lrx-black: #000000;
  --lrx-bg: #030303;
  --lrx-bg-2: #0a0a0a;
  --lrx-surface: #111111;
  --lrx-surface-2: #1a1a1a;
  --lrx-border: rgba(255, 255, 255, 0.08);
  --lrx-border-red: rgba(229, 9, 20, 0.4);
  --lrx-text: #ffffff;
  --lrx-muted: rgba(255, 255, 255, 0.6);
  --lrx-glow: 0 0 60px rgba(255, 10, 26, 0.45);
  --lrx-glow-sm: 0 0 30px rgba(255, 10, 26, 0.35);
  --lrx-glow-intense: 0 0 80px rgba(255, 10, 26, 0.55), 0 0 120px rgba(255, 10, 26, 0.25);
  --lrx-radius: 16px;
  --lrx-radius-lg: 24px;
  --lrx-font: "Inter", system-ui, sans-serif;
  --lrx-display: "Syne", sans-serif;
  --background-color: var(--lrx-bg);
  --default-color: var(--lrx-muted);
  --heading-color: var(--lrx-text);
  --accent-color: var(--lrx-red);
  --surface-color: var(--lrx-surface);
  --contrast-color: var(--lrx-text);
  --nav-color: rgba(255, 255, 255, 0.75);
  --nav-hover-color: var(--lrx-red-hot);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--lrx-font);
  background: var(--lrx-bg);
  color: var(--lrx-muted);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% -20%, rgba(255, 10, 26, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(255, 10, 26, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(255, 10, 26, 0.1), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.main, .header, .footer { position: relative; z-index: 1; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lrx-display);
  color: var(--lrx-text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { color: var(--lrx-red-hot); transition: color 0.25s ease, opacity 0.25s ease; }
a:hover { color: #fff; }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--lrx-red-dark), var(--lrx-red-hot), #fff);
  z-index: 10001;
  box-shadow: 0 0 12px var(--lrx-red-hot);
  transition: width 0.1s linear;
}

/* ─── INTRO ─── */
#lrx-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

#lrx-intro.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-flash {
  position: absolute;
  inset: 0;
  background: var(--lrx-red);
  opacity: 0;
  animation: introFlash 1.6s ease forwards;
  pointer-events: none;
}

@keyframes introFlash {
  0%, 100% { opacity: 0; }
  8% { opacity: 0.9; }
  20% { opacity: 0; }
  35% { opacity: 0.4; }
  50% { opacity: 0; }
}

#lrx-intro .intro-logo {
  font-family: "Bebas Neue", var(--lrx-display);
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.12em;
  text-shadow: var(--lrx-glow-intense);
  animation: introSlam 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: relative;
  display: inline-block;
}

.glitch-intro::before,
.glitch-intro::after,
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.glitch-intro::before,
.glitch-text::before {
  color: var(--lrx-red-hot);
  animation: glitchTop 2.5s infinite linear;
  clip-path: inset(0 0 65% 0);
}

.glitch-intro::after,
.glitch-text::after {
  color: #fff;
  animation: glitchBot 2s infinite linear;
  clip-path: inset(65% 0 0 0);
}

@keyframes glitchTop {
  0%, 92%, 100% { transform: translate(0); opacity: 0; }
  93% { transform: translate(-4px, 0); opacity: 0.8; }
  96% { transform: translate(4px, 0); opacity: 0.8; }
}

@keyframes glitchBot {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  91% { transform: translate(3px, 0); opacity: 0.7; }
  94% { transform: translate(-3px, 0); opacity: 0.7; }
}

#lrx-intro .intro-sub {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  color: var(--lrx-red-hot);
  animation: introSub 1s ease 0.3s both;
}

@keyframes introSub {
  from { opacity: 0; letter-spacing: 0.6em; }
  to { opacity: 1; letter-spacing: 0.35em; }
}

#lrx-intro .intro-bar {
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--lrx-red-hot), #fff, var(--lrx-red-hot), transparent);
  animation: introBar 1.2s ease 0.2s forwards, barPulse 1.5s ease infinite 1.2s;
  transform-origin: center;
}

@keyframes introSlam {
  from { opacity: 0; transform: scale(1.15) translateY(20px); filter: blur(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes introBar {
  from { width: 0; opacity: 0; }
  to { width: 160px; opacity: 1; }
}

@keyframes barPulse {
  0%, 100% { box-shadow: 0 0 8px var(--lrx-red); }
  50% { box-shadow: 0 0 24px var(--lrx-red-hot); }
}

/* ─── HEADER ─── */
#header {
  background: rgba(3, 3, 3, 0.7) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lrx-border) !important;
  box-shadow: none !important;
  padding: 14px 0 !important;
  transition: background 0.3s ease, border-color 0.3s ease;
}

body.scrolled #header {
  background: rgba(0, 0, 0, 0.92) !important;
  border-bottom-color: var(--lrx-border-red) !important;
}

#header .sitename {
  font-family: var(--lrx-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #fff !important;
  animation: none !important;
  transition: text-shadow 0.3s ease;
}

#header .sitename:hover {
  transform: none !important;
  text-shadow: var(--lrx-glow-sm);
}

#navmenu ul li a {
  font-family: var(--lrx-font);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--nav-color) !important;
  position: relative;
}

#navmenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--lrx-red);
  transition: width 0.3s ease;
}

#navmenu ul li a:hover,
#navmenu ul li a.active {
  color: #fff !important;
}

#navmenu ul li a:hover::after,
#navmenu ul li a.active::after {
  width: 100%;
}

.kick-cta {
  padding: 10px 20px !important;
  border-radius: 4px !important;
  background: var(--lrx-red) !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: var(--lrx-glow-sm) !important;
  animation: ctaPulse 2s ease infinite !important;
  border: none;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 10, 26, 0.4); }
  50% { box-shadow: 0 0 40px rgba(255, 10, 26, 0.7); }
}

.kick-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--lrx-glow) !important;
  color: #fff !important;
}

/* ─── BUTTONS ─── */
.btn-lrx {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-lrx-primary {
  background: var(--lrx-red);
  color: #fff;
  box-shadow: var(--lrx-glow-sm);
  border: none;
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-lrx-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.btn-lrx-primary:hover::after {
  left: 150%;
}

.btn-aggressive:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--lrx-glow-intense);
}

.btn-lrx-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--lrx-glow);
}

.btn-lrx-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-lrx-outline:hover {
  color: #fff;
  border-color: var(--lrx-red);
  background: rgba(229, 9, 20, 0.08);
  transform: translateY(-3px);
}

.btn-lrx-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--lrx-border);
}

.btn-lrx-ghost:hover {
  background: rgba(229, 9, 20, 0.12);
  border-color: var(--lrx-border-red);
  color: #fff;
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
  background: transparent !important;
}

.light-background {
  --background-color: var(--lrx-bg-2);
  background: var(--lrx-bg-2) !important;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lrx-red);
  margin-bottom: 10px;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-bottom: 48px !important;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  color: var(--lrx-text) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  position: static !important;
}

/* Eski template çizgisini kaldır — yazının üstüne biniyordu */
.section-title h2::after {
  display: none !important;
  content: none !important;
}

.section-title p,
.section-title .subtitle {
  color: var(--lrx-muted);
  font-size: 1.05rem;
  margin: 8px 0 0 !important;
}

/* ─── HERO — AGGRESSIVE ─── */
.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 76px 0 0;
  position: relative;
  overflow: hidden;
  background: #000;
  box-sizing: border-box;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  opacity: 0.35;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
}

.hero-slash {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lrx-red-hot), transparent);
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.hero-slash-1 {
  width: 60%;
  top: 22%;
  left: -10%;
  transform: rotate(-8deg);
  animation: slashPulse 4s ease infinite;
}

.hero-slash-2 {
  width: 45%;
  bottom: 28%;
  right: -5%;
  transform: rotate(6deg);
  animation: slashPulse 5s ease infinite 1s;
}

@keyframes slashPulse {
  0%, 100% { opacity: 0.3; transform: rotate(-8deg) scaleX(0.9); }
  50% { opacity: 0.8; transform: rotate(-8deg) scaleX(1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 10, 26, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 10, 26, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black, transparent);
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 10, 26, 0.22);
  top: -15%;
  right: -10%;
  animation: orbFloat 6s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 10, 26, 0.12);
  bottom: 5%;
  left: -8%;
  animation: orbFloat 8s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  top: 40%;
  left: 35%;
  animation: orbFloat 10s ease-in-out infinite 2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}

.hero-inner {
  z-index: 5;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding-bottom: 0;
  width: 100%;
}

.hero-inner > .row {
  width: 100%;
  --bs-gutter-y: 1.25rem;
}

.hero-content > * {
  opacity: 0;
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-tag { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.25s; }
.hero-divider { animation-delay: 0.4s; }
.hero-desc { animation-delay: 0.5s; }
.hero-actions { animation-delay: 0.65s; }
.hero-side { animation-delay: 0.35s; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 10, 26, 0.12);
  border: 1px solid rgba(255, 10, 26, 0.5);
  color: var(--lrx-red-hot);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.hero-tag-pulse {
  width: 8px;
  height: 8px;
  background: var(--lrx-red-hot);
  box-shadow: 0 0 12px var(--lrx-red-hot);
  animation: liveDot 1s ease infinite;
}

.hero-title {
  margin-bottom: 0;
  line-height: 0.9;
}

.hero-line {
  display: block;
  font-family: "Bebas Neue", var(--lrx-display);
  letter-spacing: 0.04em;
}

.hero-line-1 {
  font-size: clamp(3.2rem, 11vw, 7.5rem);
  color: #fff;
  text-shadow: 0 0 80px rgba(255, 10, 26, 0.5);
}

.hero-line-2 {
  font-size: clamp(2.8rem, 9vw, 6.2rem);
  color: var(--lrx-red-hot);
  position: relative;
  display: inline-block;
  text-shadow: var(--lrx-glow-intense);
}

.hero-divider {
  width: 80px;
  height: 4px;
  background: var(--lrx-red);
  margin: 14px 0;
  box-shadow: var(--lrx-glow-sm);
  animation: dividerGrow 1s ease 0.6s both;
}

@keyframes dividerGrow {
  from { width: 0; opacity: 0; }
  to { width: 80px; opacity: 1; }
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-side {
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.hero-frame {
  position: relative;
  margin-bottom: 12px;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.hero-frame-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 10, 26, 0.35), transparent 70%);
  z-index: 0;
  animation: frameGlow 3s ease infinite;
}

@keyframes frameGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-frame-border {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 10, 26, 0.6);
  z-index: 3;
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.hero-frame-img {
  width: 100%;
  display: block;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  filter: contrast(1.1) saturate(1.2);
}

.hero-frame-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  background: var(--lrx-red);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.discord-card-aggressive {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(88, 101, 241, 0.35);
  border-radius: 0;
  padding: 14px 18px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.discord-card-aggressive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88, 101, 241, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.discord-card-aggressive:hover {
  color: inherit;
  transform: translateX(8px);
  border-color: #5865f2;
  box-shadow: 0 0 40px rgba(88, 101, 241, 0.25);
}

.discord-card-aggressive:hover::before { opacity: 1; }

.discord-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(88, 101, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #5865f2;
}

.discord-card-aggressive h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.discord-card-aggressive p {
  font-size: 0.85rem;
  color: var(--lrx-muted);
}

.discord-arrow {
  margin-left: auto;
  color: #5865f2;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.discord-card-aggressive:hover .discord-arrow {
  transform: translate(4px, -4px);
}

.hero-marquee {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  left: 0;
  right: 0;
  z-index: 6;
  background: var(--lrx-red);
  padding: 10px 0;
  overflow: hidden;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  transform: translateY(-95px);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.hero-marquee-track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #fff;
  white-space: nowrap;
  padding-right: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── CARDS ─── */
.lrx-card {
  background: var(--lrx-surface);
  border: 1px solid var(--lrx-border);
  border-radius: var(--lrx-radius);
  padding: 28px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lrx-card:hover {
  transform: translateY(-6px);
  border-color: var(--lrx-border-red);
  box-shadow: var(--lrx-glow-sm);
}

.lrx-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid var(--lrx-border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lrx-red-hot);
  font-size: 1.4rem;
}

.lrx-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

/* ─── ABOUT ─── */
.about-img-wrap {
  position: relative;
  border-radius: var(--lrx-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lrx-border);
}

.about-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about-img-wrap img {
  width: 100%;
  display: block;
}

.feature-pill {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--lrx-surface);
  border: 1px solid var(--lrx-border);
  border-radius: var(--lrx-radius);
  height: 100%;
}

.feature-pill i {
  color: var(--lrx-red);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-pill h5 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-pill p {
  font-size: 0.9rem;
  margin: 0;
}

/* ─── PRINCIPLES SLIDER ─── */
.principle-card {
  background: var(--lrx-surface);
  border: 1px solid var(--lrx-border);
  border-radius: var(--lrx-radius);
  padding: 32px;
  min-height: 160px;
  display: flex;
  align-items: center;
}

.principle-card p {
  font-family: var(--lrx-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.slider-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--lrx-border);
  background: var(--lrx-surface);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

.slider-nav button:hover {
  border-color: var(--lrx-red);
  background: rgba(229, 9, 20, 0.15);
  color: var(--lrx-red-hot);
}

/* ─── STEPS ─── */
.step-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--lrx-surface);
  border: 1px solid var(--lrx-border);
  border-radius: var(--lrx-radius);
  margin-bottom: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
  border-color: var(--lrx-border-red);
  box-shadow: var(--lrx-glow-sm);
}

.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lrx-red), var(--lrx-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lrx-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.step-item h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step-item p {
  margin: 0;
  font-size: 0.92rem;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(0, 0, 0, 0.6));
  border: 1px solid var(--lrx-border-red);
  border-radius: var(--lrx-radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.2), transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--lrx-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
}

.cta-features i { color: var(--lrx-red-hot); }

/* ─── TESTIMONIALS ─── */
.testimonial-slide {
  background: var(--lrx-surface);
  border: 1px solid var(--lrx-border);
  border-radius: var(--lrx-radius-lg);
  padding: 48px;
}

.testimonial-slide h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--lrx-red-hot);
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--lrx-red) !important;
}

/* ─── GALLERY ─── */
.gallery-section .gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-columns: 280px;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0 20px;
  scroll-snap-type: x mandatory;
}

.gallery-section .gallery-track::-webkit-scrollbar { height: 4px; }
.gallery-section .gallery-track::-webkit-scrollbar-thumb {
  background: var(--lrx-red);
  border-radius: 4px;
}
.gallery-section .gallery-track {
  scrollbar-width: none;
}
.gallery-section .gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-section .g-item {
  border-radius: var(--lrx-radius);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--lrx-border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.gallery-section .g-item:hover {
  border-color: var(--lrx-border-red);
  transform: scale(1.02);
}

.gallery-section .g-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.gallery-section .g-item:hover img { opacity: 1; }

.g-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--lrx-border);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
}

.g-btn:hover {
  border-color: var(--lrx-red);
  background: rgba(229, 9, 20, 0.2);
}

.g-btn.hidden { opacity: 0; pointer-events: none; }
.g-left { left: 12px; }
.g-right { right: 12px; }

.full-gallery {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.full-gallery.active { display: flex; }

.full-inner {
  width: min(1100px, 94vw);
  max-height: 90vh;
  background: var(--lrx-surface);
  border: 1px solid var(--lrx-border);
  border-radius: var(--lrx-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.full-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: #fff;
}

.full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  overflow-y: auto;
  scrollbar-width: none;
}

.full-grid a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--lrx-border);
}

.full-grid::-webkit-scrollbar {
  display: none;
}

.full-grid.isotope-container {
  display: block;
}

.g-item.filtered-out {
  display: none !important;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gallery-filters li {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lrx-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lrx-border);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.gallery-filters li:hover,
.gallery-filters li.filter-active {
  color: #fff;
  border-color: var(--lrx-red-hot);
  background: rgba(255, 10, 26, 0.15);
  box-shadow: 0 0 20px rgba(255, 10, 26, 0.2);
}

.full-inner-premium {
  width: min(1200px, 96vw) !important;
}

.full-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--lrx-red-hot);
  margin-bottom: 4px;
}

.gallery-filters-modal {
  margin-bottom: 16px;
}

.g-masonry-item {
  width: 33.333%;
  padding: 6px;
}

.g-masonry-item a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--lrx-border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.g-masonry-item:hover a {
  border-color: var(--lrx-red-hot);
  transform: translateY(-4px);
}

.g-masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.g-masonry-item:nth-child(4n+1) img { height: 200px; }
.g-masonry-item:nth-child(4n+2) img { height: 260px; }
.g-masonry-item:nth-child(4n+3) img { height: 220px; }
.g-masonry-item:nth-child(4n) img { height: 300px; }

body.gallery-modal-open {
  overflow: hidden;
}

.close-full {
  background: var(--lrx-surface-2);
  border: 1px solid var(--lrx-border);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

/* ─── TEAM ─── */
.team-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--lrx-surface);
  border: 1px solid var(--lrx-border);
  border-radius: var(--lrx-radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--lrx-border-red);
  box-shadow: var(--lrx-glow-sm);
  transform: translateY(-4px);
}

.team-card.owner:hover { box-shadow: 0 0 30px rgba(229, 9, 20, 0.3); }
.team-card.mod:hover { box-shadow: 0 0 30px rgba(218, 178, 238, 0.2); }

.team-avatar {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid #28a745;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.team-name {
  font-family: var(--lrx-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}

.team-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lrx-red), #fff, var(--lrx-red));
  background-size: 200% 100%;
  animation: underlineShift 3s linear infinite;
}

@keyframes underlineShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.team-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

.team-role.owner { color: var(--lrx-red-hot); }
.team-role.mod { color: #dab2ee; }

.team-discord {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(88, 101, 242, 0.12);
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.team-discord:hover {
  background: rgba(88, 101, 242, 0.25);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
  transform: scale(1.1);
}

.team-discord i { color: #5865f2; font-size: 1.2rem; }

/* ─── KICK CARDS ─── */
#kick-yayincilar { padding: 100px 0; }

.kick-live-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.kick-live-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00e701;
  box-shadow: 0 0 12px #00e701;
  animation: liveDot 1.2s ease infinite;
}

.kick-live-badge span {
  color: #00e701;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.kick-card-col { display: flex; }

.kick-card {
  background: var(--lrx-surface);
  border: 1px solid var(--lrx-border);
  border-radius: var(--lrx-radius);
  padding: 24px;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.kick-card:hover {
  border-color: var(--lrx-border-red);
  box-shadow: var(--lrx-glow-sm);
  transform: translateY(-6px);
}

.kick-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.kick-card-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: block;
}

.kick-card-role.streamer { color: var(--lrx-red-hot); }
.kick-card-role.partner { color: #826bc2; }

.kick-card-media { margin-top: 12px; }

.kick-card-media img {
  width: 100%;
  max-width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--lrx-border);
}

.kick-card-links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kick-card-links a {
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.kick-card-links.compact { gap: 6px; }
.kick-card-links.compact a { font-size: 0.84rem; }

.kick-card-note {
  color: var(--lrx-muted);
  font-size: 0.88rem;
  margin: 0;
}

.link-kick { color: #00e701 !important; }
.link-tiktok { color: #ff4458 !important; }
.link-discord { color: #5865f2 !important; }
.link-youtube { color: #ff0000 !important; }
.link-tebex { color: #00e701 !important; }

/* ─── FAQ ─── */
.faq-item {
  background: var(--lrx-surface) !important;
  border: 1px solid var(--lrx-border) !important;
  border-radius: var(--lrx-radius) !important;
  margin-bottom: 12px !important;
  overflow: hidden;
  transition: border-color 0.3s ease !important;
}

.faq-item.faq-active {
  border-color: var(--lrx-border-red) !important;
}

.faq-item h3 {
  font-size: 1rem !important;
  color: #fff !important;
}

.faq-toggle {
  color: var(--lrx-red) !important;
}

.faq-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
}

/* ─── CONTACT ─── */
.contact-info-box {
  background: var(--lrx-surface) !important;
  border: 1px solid var(--lrx-border) !important;
  border-radius: var(--lrx-radius) !important;
  transition: all 0.3s ease !important;
}

.contact-info-box:hover {
  border-color: var(--lrx-border-red) !important;
  box-shadow: var(--lrx-glow-sm) !important;
}

.contact-info-box .icon-box {
  background: rgba(229, 9, 20, 0.12) !important;
  color: var(--lrx-red-hot) !important;
}

.contact-form-wrapper {
  background: var(--lrx-surface) !important;
  border: 1px solid var(--lrx-border) !important;
  border-radius: var(--lrx-radius-lg) !important;
  padding: 48px !important;
  box-shadow: var(--lrx-glow-sm) !important;
}

.contact-form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.form-control {
  background: var(--lrx-bg-2) !important;
  border: 1px solid var(--lrx-border) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 14px 16px 14px 44px !important;
}

.form-control:focus {
  background: var(--lrx-bg-2) !important;
  border-color: var(--lrx-red) !important;
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15) !important;
  color: #fff !important;
}

.form-control::placeholder { color: rgba(255, 255, 255, 0.35) !important; }

.input-with-icon { position: relative; }

.input-with-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lrx-red);
  z-index: 2;
}

.input-with-icon textarea + i,
.input-with-icon .message-icon {
  top: 18px;
  transform: none;
}

.btn-submit {
  background: linear-gradient(135deg, var(--lrx-red-hot), var(--lrx-red-dark)) !important;
  border: none !important;
  padding: 14px 48px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  box-shadow: var(--lrx-glow-sm) !important;
  transition: all 0.25s ease !important;
}

.btn-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--lrx-glow) !important;
}

.map-section img {
  border-radius: var(--lrx-radius-lg) !important;
  border: 1px solid var(--lrx-border) !important;
}

/* ─── FOOTER ─── */
.footer {
  background: #000 !important;
  border-top: 1px solid var(--lrx-border);
  padding: 40px 0 !important;
}

.footer .sitename { color: var(--lrx-red-hot) !important; }

/* ─── SCROLL TOP ─── */
.scroll-top {
  background: var(--lrx-red) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: var(--lrx-glow-sm) !important;
}

.scroll-top:hover {
  background: var(--lrx-red-hot) !important;
}

#preloader {
  background: #000 !important;
}

/* ─── OVERRIDE TEMPLATE ACCENT ─── */
.btn-primary,
.service-btn,
a.btn-primary {
  background: linear-gradient(135deg, var(--lrx-red-hot), var(--lrx-red-dark)) !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: var(--lrx-glow-sm) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff2a3d, var(--lrx-red)) !important;
  box-shadow: var(--lrx-glow) !important;
}

.section-title .description-title,
.service-heading span:last-child {
  color: var(--lrx-red-hot) !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .section { padding: 70px 0; }
  .cta-banner { padding: 36px; }
  .gallery-section .gallery-track {
    grid-auto-columns: 75%;
    grid-template-rows: 1fr;
  }
  .full-grid { grid-template-columns: repeat(2, 1fr); }
  .g-masonry-item { width: 50%; }
  .team-card { flex-direction: column; text-align: center; }
}

@media (max-width: 575px) {
  .gallery-section .gallery-track { grid-auto-columns: 90%; }
  .full-grid { grid-template-columns: 1fr; }
  .g-masonry-item { width: 100%; }
  .gallery-toolbar { flex-direction: column; align-items: stretch; }
  .hero-line-1 { font-size: 3.5rem; }
  .hero-line-2 { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-lrx { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   AGGRESSIVE ENHANCEMENTS
   ═══════════════════════════════════════ */

.section-aggressive {
  position: relative;
}

/* Bölüm üst çizgisi kaldırıldı — başlıklarla çakışıyordu */
.section-aggressive::before {
  display: none;
}

.lrx-card {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  border-radius: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.lrx-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--lrx-glow);
}

.lrx-card .icon {
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border-radius: 0;
}

.step-item {
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  border-radius: 0;
}

.step-item:hover {
  transform: translateX(8px);
  border-color: var(--lrx-red) !important;
}

.step-num {
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border-radius: 0;
}

.cta-banner {
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  border-radius: 0;
  animation: ctaBannerPulse 4s ease infinite;
}

@keyframes ctaBannerPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 10, 26, 0); }
  50% { box-shadow: inset 0 0 60px rgba(255, 10, 26, 0.08); }
}

.testimonial-slide {
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  border-radius: 0;
}

.team-card {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  border-radius: 0;
}

.kick-card {
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  border-radius: 0;
}

.kick-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--lrx-glow);
}

.principle-card {
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  border-radius: 0;
  transition: all 0.3s ease;
}

.principle-card:hover {
  border-color: var(--lrx-red);
  transform: scale(1.02);
}

.about-img-wrap {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  border-radius: 0;
}

.feature-pill {
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border-radius: 0;
  transition: all 0.25s ease;
}

.feature-pill:hover {
  border-color: var(--lrx-red);
  transform: translateX(6px);
}

.faq-item.faq-active {
  box-shadow: inset 4px 0 0 var(--lrx-red);
}

.contact-form-wrapper {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  border-radius: 0 !important;
}

/* Reveal on scroll */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

#header .sitename {
  transition: text-shadow 0.2s ease, letter-spacing 0.2s ease;
}

body.scrolled #header .sitename {
  text-shadow: 0 0 20px rgba(255, 10, 26, 0.5);
}

@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}
