@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --orange: #ff6a00;
  --orange-2: #e85d04;
  --orange-rgb: 255, 106, 0;
  --orange-glow: rgba(255, 106, 0, 0.45);
  --dark-bg: #040404;
  --dark-card: #0a0a0a;
  --dark-card-hover: #111111;
  --glass-white: rgba(255, 255, 255, 0.04);
  --border-white: rgba(255, 255, 255, 0.08);
  --text-white: #f0f0f0;
  --text-gray: #9a9a9a;
  --text-muted: #555555;
  --blue-discord: #5865F2;
  --red-youtube: #FF0000;
  --green-lime: #00FF66;
  --gold: #d4af37;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff8c33;
}

/* CUSTOM SELECTION */
::selection {
  background: var(--orange);
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff8c33;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* BACKGROUND GRUNGE EFFECTS & GLOWS */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(var(--orange-rgb), 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(var(--orange-rgb), 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.bg-grid-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.container {
  width: min(1400px, calc(100% - 40px));
  margin: auto;
  position: relative;
  z-index: 5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* HEADER STYLE */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(4, 4, 4, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 106, 0, 0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.menu a {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.menu a:hover {
  opacity: 1;
  color: var(--orange);
  text-shadow: 0 0 10px rgba(var(--orange-rgb), 0.5);
}

.menu a.active {
  opacity: 1;
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* BUTTONS */
.btn-discord-nav {
  background: #4f64d4;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(79, 100, 212, 0.2);
}

.btn-discord-nav:hover {
  background: #3c4eb8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 100, 212, 0.4);
}

.btn-login-nav {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid #10b981;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 9px 22px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.btn-login-nav:hover {
  background: #10b981;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cart-icon-btn {
  font-size: 18px;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.cart-icon-btn:hover {
  color: var(--orange);
}

/* DECORATIVE BARBED WIRE DIVIDER */
.barbed-wire-divider {
  position: relative;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0;
  pointer-events: none;
  z-index: 10;
}

.barbed-wire-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent);
}

.barbed-wire-graphics {
  width: 100%;
  max-width: 1200px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='40' viewBox='0 0 100 40'%3E%3Cpath d='M0 20 Q 25 5, 50 20 T 100 20 M0 20 Q 25 35, 50 20 T 100 20' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Cpath d='M25 15 L 28 25 M28 15 L 25 25 M75 15 L 78 25 M78 15 L 75 25' fill='none' stroke='rgba(255,106,0,0.4)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.65;
}

/* Bullet accents on divider */
.barbed-wire-bullets {
  position: absolute;
  left: 10%;
  display: flex;
  gap: 10px;
  transform: translateY(-5px);
}

.bullet-3d {
  width: 25px;
  height: 6px;
  background: linear-gradient(90deg, #d4af37, #8a6d1c);
  border-radius: 1px 3px 3px 1px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transform: rotate(-15deg);
}

.bullet-3d::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 0;
  width: 5px;
  height: 6px;
  background: #c0c0c0;
  border-radius: 0 50% 50% 0;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient mesh background for hero */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.06) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-40px, 40px) scale(1.2);
    opacity: 0.8;
  }
}

.hero-left-content {
  width: 100%;
  max-width: 680px;
  position: relative;
  z-index: 5;
}

/* PREMIUM HERO VISUAL */
.hero-right-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  /* Behind the left content */
  pointer-events: none;
  perspective: 1000px;
}

.hero-premium-render {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  /* Ultimate luxury touch: Smoothly fade the image into the dark background */
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  filter: contrast(1.15) brightness(1.05) saturate(1.1);
  opacity: 0.95;
  animation: premiumFloat 8s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes premiumFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

.hero-visual-overlay {
  display: none;
}

/* FLOATING GEOMETRIC PARTICLES */
.floating-shape {
  position: absolute;
  z-index: 3;
  opacity: 0.25;
  pointer-events: none;
  filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.8));
}

.shape-square {
  width: 50px;
  height: 50px;
  border: 2px solid var(--orange);
  top: 15%;
  left: 20%;
  animation: floatSpin 20s ease-in-out infinite alternate;
}

.shape-circle {
  width: 80px;
  height: 80px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  bottom: 20%;
  right: 15%;
  animation: floatSpinReverse 25s ease-in-out infinite alternate;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid var(--orange);
  opacity: 0.15;
  top: 55%;
  left: 15%;
  animation: floatBounce 18s ease-in-out infinite alternate;
}

.shape-cross {
  width: 40px;
  height: 40px;
  top: 25%;
  right: 25%;
  position: absolute;
  animation: floatSpin 22s ease-in-out infinite alternate;
}

.shape-cross::before,
.shape-cross::after {
  content: '';
  position: absolute;
  background: var(--orange);
}

.shape-cross::before {
  top: 0;
  left: 18px;
  width: 4px;
  height: 40px;
}

.shape-cross::after {
  top: 18px;
  left: 0;
  width: 40px;
  height: 4px;
}

/* Luxury 3D Hardware Accelerated Keyframes */
@keyframes floatSpin {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate3d(30px, -40px, 50px) rotate(180deg) scale(1.1);
  }

  100% {
    transform: translate3d(-20px, 20px, -20px) rotate(360deg) scale(0.9);
  }
}

@keyframes floatSpinReverse {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate3d(-40px, 30px, 40px) rotate(-180deg) scale(0.9);
  }

  100% {
    transform: translate3d(20px, -20px, -30px) rotate(-360deg) scale(1.1);
  }
}

@keyframes floatBounce {
  0% {
    transform: translate3d(0, 0, 0) rotate(10deg);
  }

  50% {
    transform: translate3d(20px, -50px, 30px) rotate(-15deg);
  }

  100% {
    transform: translate3d(-15px, -10px, -10px) rotate(5deg);
  }
}

/* TYPEWRITER CURSOR (AUTHENTIC TERMINAL STYLE) */
.tw-cursor {
  display: inline-block;
  width: 30px;
  height: 8px;
  background-color: var(--orange);
  margin-left: 8px;
  vertical-align: baseline;
  box-shadow: 0 0 10px rgba(var(--orange-rgb), 0.8);
}

.tw-cursor.blinking {
  animation: smoothBlink 1s step-end infinite;
}

@keyframes smoothBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* HERO BOTTOM DECORATIONS */
.hero-bottom-decorations {
  position: relative;
  width: 100%;
  height: 350px;
  z-index: 10;
  pointer-events: none;
  overflow: visible;
  margin: 20px 0 40px;
}

/* Yaprak: large palm frond image */
.decor-leaf-left {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%) scaleX(-1);
  width: 300px;
  z-index: 15;
}

.decor-leaf-left img {
  width: 100%;
  height: auto;
  filter: drop-shadow(5px 10px 25px rgba(0, 0, 0, 0.9));
}

.decor-leaf-right {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 300px;
  z-index: 15;
}

.decor-leaf-right img {
  width: 100%;
  height: auto;
  filter: drop-shadow(5px 10px 25px rgba(0, 0, 0, 0.9));
}

/* Zincir: barbed wire stretching full width */
.decor-divider-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 60px;
  transform: translateY(-50%);
  z-index: 10;
}

.decor-barbed-wire {
  display: none;
}

.decor-chain {
  width: 100%;
  height: 60px;
  background: url('zincir.png') repeat-x center / auto 100%;
  filter: drop-shadow(0 0 12px rgba(255, 106, 0, 0.3)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.9));
}

/* Mermi: two bullets */
.decor-bullets {
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 140px;
  z-index: 16;
}

.decor-bullets img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.9));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--orange-rgb), 0.1);
  border: 1px solid rgba(var(--orange-rgb), 0.3);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(var(--orange-rgb), 0.15);
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 70px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  display: none;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 35px;
  max-width: 680px;
}

.hero-action-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-btn.discord {
  background: var(--blue-discord);
  color: #fff;
}

.hero-btn.discord:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

.hero-btn.youtube {
  background: var(--red-youtube);
  color: #fff;
}

.hero-btn.youtube:hover {
  background: #cc0000;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.hero-btn.all-scripts {
  background: var(--orange);
  color: #fff;
}

.hero-btn.all-scripts:hover {
  background: #e65f00;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
}

/* 3D VIDEO SLIDER ON HERO */
.hero-slider-wrapper {
  margin-top: 30px;
}

.hero-slider-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.video-frame-card {
  background: var(--dark-card);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Rotating orange border setup */
  border: 2px solid transparent;
  background-clip: padding-box;
}

.video-frame-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  border-radius: 10px;
  background: conic-gradient(from var(--card-angle, 0deg), var(--orange), transparent 40%, var(--orange) 80%, transparent);
  animation: rotateCardBorder 3s linear infinite;
}

@property --card-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateCardBorder {
  to {
    --card-angle: 360deg;
  }
}

.video-frame-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.5s ease;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--orange-rgb), 0.4);
}

.video-frame-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 25px rgba(var(--orange-rgb), 0.25);
  transform: translateY(-4px) scale(1.02);
}

.video-frame-card:hover img {
  opacity: 0.8;
  transform: scale(1.08);
}

.video-frame-card:hover .video-play-btn {
  background: #fff;
  color: var(--orange);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.video-frame-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

/* 3D LUXURY CHARACTER RENDERS */
.hero-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-character-3d-box {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 600px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.character-render-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 40px rgba(var(--orange-rgb), 0.15));
  position: relative;
  z-index: 5;
  pointer-events: none;
  transform: translateZ(50px);
  transition: all 0.1s ease;
}

.character-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-20px);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(var(--orange-rgb), 0.25) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

/* BEST SELLING SCRIPTS SECTION */
.best-selling-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

/* Category Sidebar Navigation */
.sidebar-nav-container {
  position: relative;
  z-index: 10;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav-btn {
  background: var(--dark-card);
  border: 1px solid var(--border-white);
  padding: 18px 24px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: left;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-nav-btn:hover {
  background: var(--dark-card-hover);
  border-color: rgba(var(--orange-rgb), 0.3);
  padding-left: 30px;
}

.sidebar-nav-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-color: var(--orange);
  box-shadow: 0 10px 25px rgba(var(--orange-rgb), 0.35);
  color: #fff;
  transform: translateX(5px);
}

.sidebar-nav-btn .badge-count {
  font-size: 10px;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.sidebar-character-overlay {
  margin-top: 35px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-white);
  position: relative;
  aspect-ratio: 3/4;
}

.sidebar-character-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(85%);
  transition: all 0.5s ease;
}

.sidebar-character-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(transparent, var(--dark-bg));
}

.sidebar-character-overlay:hover img {
  transform: scale(1.05);
}

/* PREMIUM PRODUCT CARDS GRID */
.products-2x2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.script-card-premium {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid var(--border-white);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  text-decoration: none;
  color: inherit;
  display: block;
}

.script-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(var(--orange-rgb), 0.12) 0%, transparent 60%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.script-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--orange-rgb), 0.35);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(var(--orange-rgb), 0.15);
}

.script-card-premium:hover::before {
  opacity: 1;
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--border-white);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.script-card-premium:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-ribbon {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(var(--orange-rgb), 0.95);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(var(--orange-rgb), 0.3);
}

.card-ribbon.open-source-ribbon {
  background: var(--green-lime);
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 255, 102, 0.3);
}

.card-premium-body {
  padding: 25px;
}

.card-title-3d {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-desc-3d {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 20px;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.price-old-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  text-decoration: line-through;
  color: var(--red-youtube);
  margin-right: 8px;
}

.price-current-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--green-lime);
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}

.card-actions-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-card-action {
  padding: 12px 18px;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-card-action.open-source {
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.05);
  color: #d4af37;
}

.btn-card-action.open-source:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.25);
}

.btn-card-action.add-cart {
  background: var(--orange);
  color: #fff;
  border: none;
}

.btn-card-action.add-cart:hover {
  background: #ff7d22;
  box-shadow: 0 6px 18px rgba(var(--orange-rgb), 0.35);
}

/* VALUES & TOP BUYERS SECTION */
.values-buyers-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.values-list-card {
  background: var(--dark-card);
  border: 1px solid var(--border-white);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.values-list-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
}

.value-row-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.value-row-item:last-child {
  margin-bottom: 0;
}

.value-bar-accent {
  width: 4px;
  height: 50px;
  border-radius: 2px;
  flex-shrink: 0;
}

.value-bar-accent.red {
  background: var(--red-youtube);
}

.value-bar-accent.blue {
  background: var(--blue-discord);
}

.value-bar-accent.orange {
  background: var(--orange);
}

.value-bar-accent.green {
  background: var(--green-lime);
}

.value-item-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.value-item-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* TOP BUYERS CARD */
.buyers-card-premium {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid var(--border-white);
  border-radius: 16px;
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.buyers-section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.leaderboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.leaderboard-row:hover {
  background: rgba(var(--orange-rgb), 0.05);
  border-color: rgba(var(--orange-rgb), 0.2);
}

.leaderboard-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #222, #111);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  color: var(--orange);
}

.user-name-bold {
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.user-bought-item {
  font-size: 12px;
  color: var(--text-gray);
}

/* STAT CIRCLES GRID */
.stat-circles-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.stat-circle-box {
  text-align: center;
}

.stat-radial-outer {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(var(--orange-rgb), 0.15);
  border-top-color: var(--orange);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 15px rgba(var(--orange-rgb), 0.1);
}

.stat-radial-number {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}

.stat-radial-label {
  font-size: 11px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* OZZICO ALL SCRIPTS SECTION */
.all-products-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 45px;
}

/* WIDE SOCIAL CTA CARDS */
.social-cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.social-cta-card {
  border-radius: 12px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.social-cta-card.discord-cta {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(88, 101, 242, 0.3) 100%);
  border: 1px solid rgba(88, 101, 242, 0.3);
}

.social-cta-card.youtube-cta {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(255, 0, 0, 0.25) 100%);
  border: 1px solid rgba(255, 0, 0, 0.3);
}

.social-cta-card:hover {
  transform: translateY(-5px);
}

.social-cta-card.discord-cta:hover {
  box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3);
}

.social-cta-card.youtube-cta:hover {
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.25);
}

.cta-left-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 5;
}

.cta-social-logo {
  font-size: 36px;
}

.cta-text-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.cta-text-info p {
  font-size: 12.5px;
  color: var(--text-gray);
}

.cta-action-btn {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 6px;
  color: #fff;
  transition: all 0.3s ease;
  z-index: 5;
}

.discord-cta .cta-action-btn {
  background: var(--blue-discord);
}

.youtube-cta .cta-action-btn {
  background: var(--red-youtube);
}

.center-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-large-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 45px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-large-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 10px 30px rgba(var(--orange-rgb), 0.25);
  transform: translateY(-2px);
}

/* FOOTER */
.site-footer-premium {
  background: #020202;
  border-top: 1px solid var(--border-white);
  padding: 70px 0 0 0;
  position: relative;
}

.footer-columns-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-widget h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list li a {
  font-size: 13.5px;
  color: var(--text-gray);
  transition: all 0.3s ease;
}

.footer-links-list li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Centralized Big Logo Widget */
.footer-big-logo-widget {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-big-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: 2px;
  color: #fff;
}

.footer-big-logo span {
  color: var(--orange);
}

/* SLANTED WARNING WARNING TAPE FOOTER BAR */
.slanted-warning-banner {
  position: relative;
  width: 100%;
  height: 48px;
  background: #ffcc00;
  /* Neon yellow-orange warning */
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
}

.warning-tape-track {
  display: flex;
  white-space: nowrap;
  animation: scrollWarningTape 20s linear infinite;
}

.warning-tape-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.warning-tape-text::before {
  content: '///';
  font-weight: 900;
  color: #000;
}

@keyframes scrollWarningTape {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .hero-left-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 50px !important;
  }

  .hero-desc {
    margin: 0 auto 35px;
  }

  .hero-action-buttons {
    justify-content: center;
  }

  .hero-couple-render {
    display: none;
  }

  .best-selling-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-character-overlay {
    display: none;
  }

  .values-buyers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .all-products-4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-cta-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-columns-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .products-2x2-grid {
    grid-template-columns: 1fr;
  }

  .all-products-4col {
    grid-template-columns: 1fr;
  }

  .hero-video-grid {
    grid-template-columns: 1fr;
  }

  .stat-circles-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}