@charset "utf-8";

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

body {
  font-family: "Rajdhani", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
}

/* Animated background with hexagon pattern */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      circle at 25% 25%,
      transparent 2%,
      rgba(255, 0, 0, 0.03) 2%,
      rgba(255, 0, 0, 0.03) 3%,
      transparent 3%
    ),
    radial-gradient(
      circle at 75% 75%,
      transparent 2%,
      rgba(255, 0, 0, 0.03) 2%,
      rgba(255, 0, 0, 0.03) 3%,
      transparent 3%
    );
  background-size: 80px 80px;
  animation: grid-move 30s linear infinite;
  z-index: -2;
}

/* Animated shapes */
.shapes-container {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
#google_translate_element {
  font-size: 14px;
}

.custom-language-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border: 1px solid #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #1a1a1a;
  min-width: 180px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 9999;
  margin-top: 5px;
  border: 1px solid #333;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: #2a2a2a;
}

.show {
  display: block;
}
.shape {
  position: absolute;
  opacity: 0.1;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border: 2px solid #ff0000;
  border-radius: 50%;
  top: 10%;
  left: 10%;
  animation: float-rotate 20s ease-in-out infinite;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid rgba(0, 178, 255, 0.2);
  top: 60%;
  right: 15%;
  animation: float-rotate 25s ease-in-out infinite reverse;
}
/* Hide Google Translate top bar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* Remove top spacing added by Google */
body {
    top: 0px !important;
}

/* Hide Google logo/tooltips */
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}
.skiptranslate{
	display:none !important;
}
/* Hide Google Translate gadget text */
.goog-te-gadget {
    font-size: 0 !important;
}
.topbar a{
	color: white;
    font-size: 17px;
    padding: 0 12px;
    text-decoration: none;
}
font[dir="auto"] {
  all: unset;
  display: contents;
}
/* Optional: hide translate popup */
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}

/* Prevent highlighted translated text */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}
.shape-square {
  width: 150px;
  height: 150px;
  border: 2px solid #ff0000;
  transform: rotate(45deg);
  bottom: 20%;
  left: 20%;
  animation: float-rotate 22s ease-in-out infinite;
}

@keyframes float-rotate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-30px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translateY(20px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translateY(-10px) rotate(270deg) scale(1.05);
  }
}

/* Gradient overlay */
.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 94, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(0, 178, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: -1;
  animation: gradient-shift 10s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

/* Floating particles */
.particle {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.particle::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ff0000;
  box-shadow:
    0 0 10px #ff0000,
    0 0 20px #ff0000;
  animation: float-up 15s linear infinite;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0px;
  background: rgb(52 2 8);
  backdrop-filter: blur(10px);
  z-index: 999999;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f00;
}
.topbar{
 text-align:center;
 Background:black;
}

nav.scrolled {
  box-shadow: 0 5px 30px rgba(255, 94, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:10px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: "Orbitron", monospace;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(45deg, #ff0000, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
}

@keyframes glow {
  0%,
  100% {
    filter: brightness(1);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
  }
  50% {
    filter: brightness(1.5);
    text-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
  }
}

/* Scrolling Marquee */
.marquee {
  background: #7c0000;
  color: #ffffff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  font-weight: bold;
  z-index: 99999;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: all 0.3s ease;
  padding: 6px 2px;
  font-family: "Orbitron", monospace;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.nav-links a.active {
  opacity: 1;
  color: #ff0000;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  border-color: #ff0000;
  box-shadow: inset 0 0 10px rgba(255, 94, 0, 0.5);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff0000, #ff0000);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 94, 0, 0.8);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #ff0000;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 20px 140px; /* top for navbar, bottom for CTA buttons */
  background-image: url("..//images/bg-hero-section.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9;
}

.text-rotator {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 260px; /* keeps layout stable when text changes */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Each Text Slide */
.text-set {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers all content horizontally */
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* Active Slide */
.text-set.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Main Heading */
.glitch-text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.1;
  white-space: normal; /* allows wrapping */
  overflow-wrap: break-word; /* prevents overflow */
  word-break: break-word;

  font-family: "Orbitron", monospace;
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em; /* reduced from 0.1em */
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Glitch pseudo elements should align perfectly */
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  animation: charFlyIn 0.5s ease-out forwards;
}

@keyframes charFlyIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.char.out {
  animation: charFlyOut 0.3s ease-in forwards;
}

@keyframes charFlyOut {
  to {
    opacity: 0;
    transform: translateY(-30px) rotateX(90deg);
  }
}

.subtitle {
  margin-top: 24px;
  max-width: 900px;
  width: 100%;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  text-align: center;
  opacity: 0.75;
  font-weight: 300;
}

.subtitle.visible {
  animation: subtitleFade 0.8s ease-out 0.5s forwards;
}

@keyframes subtitleFade {
  to {
    opacity: 0.6;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glitch-text::before {
  animation: glitch-1 0.5s infinite;
  color: #ff000080;
  z-index: -1;
  text-shadow: -2px 0 #ff000080;
}

.glitch-text::after {
  animation: glitch-2 0.5s infinite;
  color: #ff0000;
  z-index: -1;
  text-shadow: 2px 0 #ff0000;
}

@keyframes glitch-1 {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(33% 0 33% 0);
    transform: translate(-2px);
  }
  40% {
    clip-path: inset(66% 0 0 0);
    transform: translate(2px);
  }
  60% {
    clip-path: inset(0 0 66% 0);
    transform: translate(1px);
  }
  80% {
    clip-path: inset(25% 0 50% 0);
    transform: translate(-1px);
  }
}

@keyframes glitch-2 {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0);
  }
  20% {
    clip-path: inset(50% 0 25% 0);
    transform: translate(2px);
  }
  40% {
    clip-path: inset(0 0 75% 0);
    transform: translate(-2px);
  }
  60% {
    clip-path: inset(75% 0 0 0);
    transform: translate(-1px);
  }
  80% {
    clip-path: inset(40% 0 40% 0);
    transform: translate(1px);
  }
}

.subtitle {
  font-size: 1.5rem;
  margin: 20px 0;
  opacity: 0.6;
  animation: fade-in 1s ease-out 0.5s both;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.6;
  }
}

.cta-container {
  position: absolute;
  bottom: 190px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% - 40px);
  max-width: 700px;
  z-index: 100;
}

.cta-button {
  padding: 12px 30px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Orbitron", monospace;
  font-weight: 700;
}

.cta-primary {
  background: linear-gradient(45deg, #ec0000, #969da1);
  color: white;
  animation: pulse 2s infinite;
  box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 94, 0, 0.8);
  }
}

.cta-secondary {
  background: transparent;
  color: #f31b36;
  border: 2px solid #f31b36;
  box-shadow: inset 0 0 20px rgba(255, 94, 0, 0.1);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-secondary:hover {
  background: rgba(255, 94, 0, 0.1);
  color: white;
  transform: translateY(-2px);
  box-shadow:
    0 10px 40px rgba(255, 94, 0, 0.4),
    inset 0 0 30px rgba(255, 94, 0, 0.2);
  border-color: #ffffff;
}

@media (max-width: 992px) {
  .text-rotator {
    min-height: 220px;
  }

  .glitch-text {
    font-size: 2rem !important;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 20px 180px;
  }
  .hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 20px 140px; /* top for navbar, bottom for CTA buttons */
  background-image: url("..//images/bg-hero-section.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
  .cta-container {
    position: absolute;
    bottom: 90px;
  }
  .text-rotator {
    min-height: 240px;
  }

  .glitch-text {
    font-size: clamp(1.8rem, 10vw, 3.4rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
  }
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center !important;
        width: 200px !important;
        font-size: 13px !important;
    }
  .subtitle {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-container {
    bottom: 60px;
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .text-rotator {
    min-height: 260px;
  }

  .glitch-text {
    font-size: clamp(1.6rem, 11vw, 2.8rem);
  }

  .subtitle {
    font-size: 0.95rem;
  }
}

/* Features Section with Tabs */
.features {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 0px !important;
}

.section-title {
  font-family: "Orbitron", monospace;
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #ec0000, #ccdfe7bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.section_image {
  width: 100%;
  max-width: 600px;
  display: block;
  border-radius: 15px;
}

.features-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.feature-tabs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #ff00008c;
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.tab-item {
  padding: 15px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
}

.tab-item:hover {
  background: rgba(255, 94, 0, 0.1);
  border-color: rgba(255, 94, 0, 0.3);
}

.tab-item.active {
  background: linear-gradient(
    45deg,
    rgb(255 0 0 / 20%),
    rgb(197 210 215 / 20%)
  );
  border-color: #ff00008c;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.3);
}

.tab-icon {
  font-size: 1.5rem;
}

.feature-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #ff00008c;
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
  min-height: 400px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.6);
}

.game-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  display: block;
}

.game-card-content {
  padding: 18px 16px 20px;
}

.game-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: #fff;
}

.game-card-subtitle {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.5;
}

.content-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.content-panel.active {
  display: block;
}

.content-panel h3 {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-panel p {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  opacity: 0.8;
}

.feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #ff0000;
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ec0000, #ccdfe7bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color:white !important;
}

.about-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-graphic {
  width: 300px;
  height: 300px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.about-graphic::before,
.about-graphic::after {
  content: "";
  position: absolute;
  border: 2px solid #e91e1e;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
}

.about-graphic::before {
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.about-graphic::after {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: #000000;
  animation: rotate 15s linear infinite reverse;
  box-shadow: 0 0 30px rgb(247 247 247 / 50%);
}

/* Alternative graphic for second row */
.about-graphic-alt {
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  border-radius: 150px;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

.hexagon {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ec0000, #ccdfe7bd);
  opacity: 0.3;
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
}

.hexagon:nth-child(1) {
  width: 150px;
  height: 150px;
  animation: hexagon-rotate 8s linear infinite;
}

.hexagon:nth-child(2) {
  width: 100px;
  height: 100px;
  animation: hexagon-rotate 12s linear infinite reverse;
  opacity: 0.5;
}

.hexagon:nth-child(3) {
  width: 200px;
  height: 200px;
  animation: hexagon-rotate 15s linear infinite;
  opacity: 1;
  background-image: url(..//images/poker-chip.png);
  background-size: contain;
}

@keyframes hexagon-rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Contact Section */
.contact {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 94, 0, 0.2);
  border-radius: 10px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #ff0000;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 94, 0, 0.3);
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: "Rajdhani", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ff0000, #ff0000);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Orbitron", monospace;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 94, 0, 0.5);
}

.contact-info {
  padding: 40px;
}

.contact-info h3 {
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-item {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff0000, #ff0000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.info-details h4 {
  color: #ff0000;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.info-details p {
  opacity: 0.8;
}

/* Map Section */
.map-container {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 94, 0, 0.2);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  text-align: center;
  opacity: 0.6;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 94, 0, 0.1) 50%,
    transparent 60%
  );
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ========================================
   FOOTER
======================================== */
footer {
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.08), transparent 40%),
    #050505;
  border-top: 1px solid rgba(255, 0, 0, 0.15);
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* Main Footer Layout */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr; /* Logo on left, content on right */
  gap: 60px;
  align-items: start;
}

/* ========================================
   LEFT SIDE - LOGO
======================================== */
.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
}

.footer-logo-image {
  width: 180px;
  height: auto;
  display: block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.35));
}

.footer-logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.6));
}

/* ========================================
   RIGHT SIDE - CONTENT
======================================== */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* About Text */
.footer-text {
  margin: 0;
  max-width: 100%; /* Use full available width */
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

/* Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 0, 0, 0.15);
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "•";
  color: #ff0000;
  margin-right: 10px;
  font-size: 1.2rem;
}

.footer-links a:hover {
  color: #ff0000;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

/* Social Icons */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.social-links a {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
  transform: translateY(-3px);
}

/* Copyright */
.copyright {
  margin: 10px 0 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 0, 0, 0.15);
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   TABLET
======================================== */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ========================================
   MOBILE
======================================== */
@media (max-width: 768px) {
  footer {
    padding: 50px 20px 25px;
  }

  .footer-logo-image {
    width: 150px;
  }

  .footer-text {
    font-size: 1rem;
    line-height: 1.9;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .social-links a {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}
/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border-top: 1px solid #ff0000;
  padding: 10px 0;
  z-index: 1000;
}

.mobile-bottom-nav .mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.mobile-bottom-nav .mobile-nav-item:hover {
  color: #ff0000;
}

.mobile-bottom-nav .mobile-nav-item i {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Show bottom nav on mobile */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
  }
}

/* FAQ Styles */
.faq-content details {
  margin-bottom: 10px;
}

.faq-content summary {
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 5px;
}

.faq-content p {
  margin: 0;
  padding-left: 20px;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.download-buttons .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.download-buttons .cta-primary {
  background: linear-gradient(45deg, #ff0000, #ff0000);
  color: #fff;
}

.download-buttons .cta-primary:hover {
  background: linear-gradient(45deg, #cc0000, #cc0000);
  transform: translateY(-2px);
}

.download-buttons .cta-secondary {
  background: linear-gradient(45deg, #333, #666);
  color: #fff;
}

.download-buttons .cta-secondary:hover {
  background: linear-gradient(45deg, #222, #555);
  transform: translateY(-2px);
}

/* Custom Security Graphic */
.security-graphic {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-graphic::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 180px;
  border: 3px solid #ff0000;
  border-radius: 10px;
  box-shadow:
    0 0 30px rgba(255, 0, 0, 0.3),
    inset 0 0 20px rgba(255, 0, 0, 0.1);
}

.security-graphic::after {
  content: "🔒";
  position: absolute;
  font-size: 80px;
  z-index: 1;
  animation: lock-pulse 2s ease-in-out infinite;
}

@keyframes lock-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Custom Bonus Graphic */
.bonus-graphic {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-graphic::before,
.bonus-graphic::after {
  content: "🎁";
  position: absolute;
  font-size: 60px;
  animation: gift-bounce 2s ease-in-out infinite;
}

.bonus-graphic::before {
  animation-delay: 0s;
  left: 20%;
}

.bonus-graphic::after {
  animation-delay: 0.5s;
  right: 20%;
}

@keyframes gift-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

.bonus-visual .bonus-graphic {
  background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* Scanlines effect */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(transparent 50%, rgba(255, 94, 0, 0.01) 50%);
  background-size: 100% 4px;
  animation: scanlines 8s linear infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 30px #ff000080;
  }
  50% {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 94, 0, 0.7);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotating-img1{
	display:none !important;
}
.rotating-img2{
	display:block !important;
}
.nav-container .cta-button{    
		display:none;
}
.lang-item.active {
  font-weight: bold;
  color: #ffcc00;
  text-decoration: underline;
}
.topbar a:hover{
	color:red;
}
.logo-2{
	display:none;
}
.logo-1{
	display:block;
}
@media (max-width: 1068px) {
	.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
}
.logo-2 img{
	width:100px !important;
}

.logo-2{
	display:block;
}
.logo-1{
	display:none;
}
.download-layout {
    display: grid;
    grid-template-columns: auto !important;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.about-content-2 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto !important;
    gap: 48px;
    align-items: start;
    grid-auto-flow: row;
	
}
    .nav-container .cta-button {
               max-width: 75px;
        width: 142px;
        padding: 4px;
        font-size: 11px;
        display: block;
        text-align: center;
        font-size: 10px !important;
    }
    
.header-menu{
	    display: flex;
    gap: 20px;
    align-items: center;
}
 .menu-toggle {
    display: flex;
  }
.hero-content .subtitle{
	font-size:1.4rem !important;
 }
  nav {
    padding: 0px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 50px;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }
    .about-text h2 {
        line-height: 32px;
        font-size: 1.5rem;
    }

  .hero-content {
    padding: 0 20px;
  }

  .glitch-text {
    font-size: clamp(1.2rem, 4.9vw, 2.4rem);
  }

  .text-rotator {
    min-height: 150px;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-tabs {
    display: block;
    padding: 20px;
    max-width: 100%;
  }

  .tab-item {
    width: 100%;
    margin-bottom: 10px;
  }

  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .about-graphic {
    width: 200px;
    height: 200px;
  }

  .shape-circle,
  .shape-triangle,
  .shape-square {
    transform: scale(0.6);
  }

  .section-title {
    font-size: 1.8rem;
  }
 
}

.feature-strip {
  padding: 34px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 16px;
}
.feature-strip .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .hero-highlights,
    .feature-grid,
  .benefits-grid,
  .faq-grid {
	grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
  .game-grid
  {
	grid-template-columns: repeat(3, minmax(auto, 1fr));
  }
  .game-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
  #bonuses{
	  padding-bottom:70px !important;
  }
  .download-buttons .cta-button{
	  font-size: 12px !important;
  }
  .rotating-img1{
	display:block !important;
}
.rotating-img2{
	display:none !important;
}
}
.feature-pill i {
  color: #ff0000;
  font-size: 1.45rem;
}

.feature-pill span {
  color: #f4f4f4;
  font-weight: 600;
}

.about {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 24px 120px;
}

.about::before {
  content: "";
  position: absolute;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 0, 0.12), transparent 35%),
    radial-gradient(
      circle at 85% 30%,
      rgba(255, 255, 255, 0.05),
      transparent 35%
    ),
    radial-gradient(circle at 50% 100%, rgba(255, 0, 0, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Section title enhancement */
.about .section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
  font-size: 3rem;
  letter-spacing: 0.18em;
  text-shadow:
    0 0 25px rgba(255, 0, 0, 0.35),
    0 0 60px rgba(255, 0, 0, 0.15);
}

.about .section-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 0, 0.3),
    #ff0000,
    rgba(255, 255, 255, 0.9),
    #ff0000,
    rgba(255, 0, 0, 0.3),
    transparent
  );
  box-shadow:
    0 0 12px rgba(255, 0, 0, 0.8),
    0 0 30px rgba(255, 0, 0, 0.4);
}

/* Layout */
. .about-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: start;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* increase/decrease opacity */
  z-index: 1;
}
.about-content-2 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.25fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: start;
}

/* Main glass card */
.about-text {
  position: relative;
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 0, 0, 0.22);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 0, 0, 0.05);
  overflow: hidden;

}

/* Top accent line */
.about-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 0, 0.3),
    #ff0000,
    rgba(255, 255, 255, 0.85),
    #ff0000,
    rgba(255, 0, 0, 0.3),
    transparent
  );
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

/* Side glow */
.about-text::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.12), transparent 70%);
  pointer-events: none;
}

/* Intro badge (optional if you add data-label attribute) */
.about-text[data-label]::before {
  content: attr(data-label);
  position: absolute;
  top: 22px;
  left: 48px;
  font-family: "Orbitron", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255, 0, 0, 0.85);
  text-transform: uppercase;
}

/* Typography */
.about-text p {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
  font-weight: 400;
  color:white !important;
}

.about-text p:first-of-type {
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.92);
}

/* Subheading */
.about-text h3 {
  margin: 42px 0 28px;
  font-family: "Orbitron", monospace;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff, #ff0000 60%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(255, 0, 0, 0.25);
}

/* Benefits grid */
.about-text ul {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Benefit cards */
.about-text li {
  position: relative;
  padding: 18px 20px 18px 54px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 0, 0, 0.14);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 500;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  overflow: hidden;
}

.about-text li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1rem;
  color: #ff0000;
  text-shadow: 0 0 14px rgba(255, 0, 0, 0.7);
}

.about-text li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-text li:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(255, 0, 0, 0.12);
}

.about-text li:hover::after {
  opacity: 1;
}

/* Visual panel */
.about-visual {
  position: sticky;
  top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Futuristic shareholder graphic */
.about-graphic {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.12), transparent 55%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
  border: 1px solid rgba(255, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 60px rgba(255, 0, 0, 0.05);
}

/* Outer rotating ring */
.about-graphic::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 2px solid rgba(255, 0, 0, 0.28);
  border-top-color: #ff0000;
  border-right-color: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 0 25px rgba(255, 0, 0, 0.25),
    inset 0 0 25px rgba(255, 0, 0, 0.08);
  animation: rotate 18s linear infinite;
}

/* Center icon */
.about-graphic::after {
  content: "\f201";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.2),
    0 0 45px rgba(255, 0, 0, 0.35);
  animation: pulse 3s ease-in-out infinite;
}

/* Floating nodes */
.about-graphic span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff0000;
  box-shadow:
    0 0 10px #ff0000,
    0 0 20px rgba(255, 0, 0, 0.6);
}

.about-graphic span:nth-child(1) {
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbitPulse 2.5s ease-in-out infinite;
}

.about-graphic span:nth-child(2) {
  right: 14%;
  top: 50%;
  transform: translateY(-50%);
  animation: orbitPulse 2.5s ease-in-out 0.5s infinite;
}

.about-graphic span:nth-child(3) {
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbitPulse 2.5s ease-in-out 1s infinite;
}

.about-graphic span:nth-child(4) {
  left: 14%;
  top: 50%;
  transform: translateY(-50%);
  animation: orbitPulse 2.5s ease-in-out 1.5s infinite;
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.6;
  }
}
.mt-0{
	margin-top:0 !important;
}
/* Responsive */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 36px;
	text-align:center;
  }

  .about-visual {
    position: relative;
    top: auto;
    min-height: auto;
    order: -1;
  }

  .about-graphic {
    max-width: 340px;
  }
}
.rotatin-wheel{
	margin-top:80px !important;
}
@media (max-width: 768px) {
  .about {
    padding: 40px 18px 80px;
  }
  .topbar a {
    color: white;
    font-size: 15px;
    padding: 0 10px;
    text-decoration: none;
}
.rotatin-wheel{
	margin-top:0px !important;
}
  .about .section-title {
    margin-bottom: 40px;
    margin-top: 40px;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
  }

  .about-text {
    padding: 28px 22px;
    border-radius: 24px;
	text-align:center;
  }
  .content-panel.active {
    display: block;
    margin-right: 20px;
}
.feature-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
}
.content-panel h3 {
	margin-bottom: 40px;
    margin-top: 10px;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-align: center;
}
  .about-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-text h3 {
    margin: 32px 0 22px;
    font-size: 1.15rem;
  }

  .about-text ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-text li {
    padding: 16px 16px 16px 48px;
    border-radius: 14px;
    font-size: 0.96rem;
  }

  .about-graphic {
    max-width: 280px;
    border-radius: 24px;
  }

  .about-graphic::after {
    font-size: 3.8rem;
  }
}

/* ========================================
   PROMOTION HIGHLIGHTS - CARD STYLE
======================================== */
.promo-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.promo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.15);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.15);
}

.promo-card i {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 15px;
  display: block;
}

.promo-card h4 {
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   OPTIONAL DIFFERENT ANIMATION STYLE
======================================== */
.promo-graphic {
  position: relative;
}

.promo-graphic span:nth-child(5),
.promo-graphic span:nth-child(6) {
  position: absolute;
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-radius: 50%;
  animation: pulse-ring 4s linear infinite;
}

.promo-graphic span:nth-child(5) {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.promo-graphic span:nth-child(6) {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* ==========================================
   PROMOTION PAGE - PREMIUM STATIC DESIGN
   ========================================== */

.promotion-section {
  position: relative;
}

/* Two-column layout with visual on LEFT */
.promotion-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

/* ==========================================
   LEFT VISUAL CARD
   ========================================== */
.promotion-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 45px 35px;
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 20, 20, 0.12),
    rgba(0, 0, 0, 0.9)
  );
  border: 1px solid rgba(255, 0, 0, 0.25);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(255, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.18), transparent 55%),
    radial-gradient(
      circle at bottom right,
      rgba(255, 120, 0, 0.12),
      transparent 55%
    );
  pointer-events: none;
}

/* Badge */
.promo-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #ff4d4d;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Main bonus amount */
.promo-amount {
  position: relative;
  z-index: 1;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #ff4d4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(255, 0, 0, 0.25);
}

.promo-subtitle {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo-divider {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 2px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

/* Feature list inside card */
.promo-features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.promo-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 0, 0, 0.08);
}

.promo-feature i {
  font-size: 1.2rem;
  color: #ff3b3b;
}

.promo-feature span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================
   PROMOTION HIGHLIGHTS - IMPROVED STYLE
   ========================================== */
.promotion-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  margin: 35px 0 40px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 0, 0, 0.06);
  border-color: rgba(255, 0, 0, 0.18);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.08);
}

.highlight-item i {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 0, 0, 0.08);
  color: #ff3b3b;
  font-size: 1rem;
}

.highlight-item span {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
  .promotion-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .promotion-visual {
    order: -1;
  }

  .promo-card {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .promotion-highlights {
    grid-template-columns: 1fr;
  }

  .promo-card {
    padding: 35px 25px;
  }

  .promo-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .promo-features {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    padding: 14px 16px;
  }

  .highlight-item span {
    font-size: 0.9rem;
  }
}

/* ==========================================
   PREMIUM CORPORATE FEATURE STRIP
   ========================================== */

.about-highlights-premium {
  margin: 70px 0;
  padding: 55px 45px;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(12, 12, 18, 0.96),
    rgba(22, 22, 30, 0.92)
  );
  border: 1px solid rgba(255, 0, 0, 0.12);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.about-highlights-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 0, 0.1), transparent 45%),
    radial-gradient(
      circle at bottom left,
      rgba(255, 80, 80, 0.06),
      transparent 40%
    );
  pointer-events: none;
}

.about-highlights-premium > * {
  position: relative;
  z-index: 1;
}

/* Header */
.premium-strip-header {
  text-align: center;
  margin-bottom: 45px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.premium-strip-badge {
  display: inline-block;
  padding: 7px 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #ff3b3b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.premium-strip-header h3 {
  margin: 0 0 15px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-strip-header p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

/* Grid */
.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card */
.premium-feature-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 28px;
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: all 0.4s ease;
}

.premium-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.22);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 0 35px rgba(255, 0, 0, 0.08);
}

.feature-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 0, 0, 0.08),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.premium-feature-card:hover .feature-glow {
  opacity: 1;
}

.about-cta-banner {
  text-align: center;
}

/* Icon */
.feature-icon-wrapper {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff0000, #ff5e5e);
  box-shadow:
    0 12px 28px rgba(255, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.feature-icon-wrapper i {
  font-size: 1.7rem;
  color: #ffffff;
}

/* Content */
.feature-content {
  flex: 1;
  padding-right: 35px;
}

.feature-content h4 {
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.feature-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

/* Number */
.feature-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Orbitron", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 992px) {
  .premium-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-highlights-premium {
    padding: 40px 24px;
    border-radius: 24px;
    margin: 50px 0;
  }

  .premium-strip-header {
    margin-bottom: 35px;
  }

  .premium-feature-card {
    padding: 26px 22px;
    gap: 18px;
  }

  .feature-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .feature-icon-wrapper i {
    font-size: 1.4rem;
  }

  .feature-content {
    padding-right: 0;
  }

  .feature-number {
    font-size: 1.6rem;
    top: 14px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .premium-feature-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-number {
    display: none;
  }
}

.login-portal-section {
  position: relative;
  padding: 140px 20px 80px;
}

.login-portal-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.login-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.18);
  color: #ff3b3b;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.login-portal-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 28px;
  color: #ffffff;
  text-transform: uppercase;
}

.login-portal-title span {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #ff1a1a 50%, #b30000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-portal-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin-bottom: 36px;
}

/* Feature Pills */
.login-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.12);
}

.feature-pill i {
  color: #ff1a1a;
}

.login-download-buttons {
  justify-content: flex-start;
  margin-top: 10px;
}

/* Right Portal Card */
.login-portal-card {
  position: relative;
  padding: 45px 40px;
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.portal-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.portal-header {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.portal-logo-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #ff1a1a, #990000);
  box-shadow:
    0 0 35px rgba(255, 0, 0, 0.35),
    inset 0 2px 10px rgba(255, 255, 255, 0.15);
}

.portal-logo-circle i {
  font-size: 2rem;
  color: #ffffff;
}

.portal-header h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.45rem;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.portal-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.portal-status-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff1a1a;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
  flex-shrink: 0;
}

.portal-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff1a1a, #990000);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.25);
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.portal-login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(255, 0, 0, 0.35);
}

/* Information Section */
.login-info-section {
  padding: 30px 20px 0px;
}

.login-info-container {
  max-width: 1300px;
  margin: 0 auto;
}

.login-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.login-info-card {
  padding: 35px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  text-align: center;
  transition: all 0.35s ease;
}

.login-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.18);
  box-shadow: 0 20px 50px rgba(255, 0, 0, 0.08);
}

.info-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.18);
}

.info-icon i {
  font-size: 1.8rem;
  color: #ff1a1a;
}

.login-info-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.login-info-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.login-seo-text {
  max-width: 950px;
  margin: 0 auto;
  padding: 45px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.login-seo-text h3 {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.login-seo-text p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 1.05rem;
}

/* Mobile */
@media (max-width: 992px) {
  .login-portal-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .login-portal-content {
    text-align: center;
  }

  .login-feature-pills,
  .login-download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .login-portal-section {
    padding: 120px 20px 60px;
  }
.login-portal-description{
	line-height:1.2rem;
}
  .login-portal-card,
  .login-seo-text {
    padding: 30px 24px;
  }

  .login-portal-title {
    font-size: 1.4rem;
  }

  .login-feature-pills {
    gap: 10px;
  }

  .feature-pill {
    width: 100%;
    justify-content: center;
  }
}

.lottery4d-section {
  position: relative;
  padding: 120px 0 100px;
}

/* Hero Banner */
.lottery4d-hero {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.lottery4d-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.2);
  color: #ff4d4d;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-size: 0.82rem;
}

.lottery4d-badge i {
  font-size: 0.95rem;
}

.lottery4d-subtitle {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

/* Layout */
.lottery4d-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Content Card */
.lottery4d-content-card {
  position: relative;
  padding: 50px;
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 0, 0, 0.14);
  backdrop-filter: blur(22px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Feature Grid */
.lottery4d-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.lottery4d-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.lottery4d-feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.18);
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff1f1f, #cc0000);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(255, 0, 0, 0.25);
}

.lottery4d-feature span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* CTA */
.lottery4d-buttons {
  margin-top: 42px;
}

/* Visual */
.lottery4d-visual {
  position: sticky;
  top: 120px;
}

.lottery4d-graphic {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.18), transparent 50%),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 215, 0, 0.08),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
  border: 1px solid rgba(255, 0, 0, 0.15);
  backdrop-filter: blur(18px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 60px rgba(255, 0, 0, 0.05);
}

.lottery4d-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Number Balls */
.number-ball {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff1f1f, #b80000);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
  z-index: 2;
}

.ball-1 {
  top: 12%;
  left: 12%;
}
.ball-2 {
  top: 18%;
  right: 14%;
}
.ball-3 {
  bottom: 18%;
  left: 14%;
}
.ball-4 {
  bottom: 12%;
  right: 12%;
}

/* Provider Tags */
.provider-tag {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  z-index: 2;
}

.provider-1 {
  top: 34%;
  left: 8%;
}
.provider-2 {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}
.provider-3 {
  bottom: 32%;
  right: 8%;
}

/* Center Card */
.lottery4d-center-card {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  padding: 30px 24px;
  text-align: center;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 0, 0, 0.15);
  backdrop-filter: blur(18px);
  z-index: 3;
}

.center-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff1f1f, #b80000);
  color: #fff;
  font-size: 1.5rem;
}

.lottery4d-center-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #ffffff;
}

.lottery4d-center-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
  .lottery4d-layout {
    grid-template-columns: 1fr;
  }

  .lottery4d-visual {
    position: relative;
    top: auto;
    order: -1;
  }

  .lottery4d-graphic {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .lottery4d-section {
    padding: 90px 0 70px;
  }

  .lottery4d-content-card {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .lottery4d-features {
    grid-template-columns: 1fr;
  }

  .lottery4d-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

  .lottery4d-graphic {
    border-radius: 24px;
  }

  .number-ball {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .lottery4d-center-card {
    width: 180px;
    padding: 24px 18px;
  }

  .provider-tag {
    font-size: 0.62rem;
    padding: 6px 10px;
  }
}

.download-section {
  position: relative;
  padding: 120px 0 100px;
}

/* Hero */
.download-hero {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.2);
  color: #ff4d4d;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-size: 0.82rem;
}

.download-subtitle {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
}

/* Layout */
.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Content Card */
.download-content-card {
  position: relative;
  padding: 50px;
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 0, 0, 0.14);
  backdrop-filter: blur(22px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Features */
.download-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.download-feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.18);
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff1f1f, #b80000);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(255, 0, 0, 0.25);
}

.download-feature span {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Buttons */
.premium-download-buttons {
  margin-top: 42px;
}

/* Visual */
.download-visual {
  position: sticky;
  top: 120px;
}

.download-graphic {
	margin-bottom:120px !important;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 0, 0, 0.18), transparent 50%),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 215, 0, 0.08),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
  border: 1px solid rgba(255, 0, 0, 0.15);
  backdrop-filter: blur(18px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 60px rgba(255, 0, 0, 0.05);
}

.download-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Floating Orbs */
.platform-orb {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff1f1f, #b80000);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
  z-index: 2;
}

.orb-android {
  top: 12%;
  left: 12%;
}
.orb-ios {
  top: 18%;
  right: 14%;
}
.orb-cloud {
  bottom: 18%;
  left: 14%;
}
.orb-shield {
  bottom: 12%;
  right: 12%;
}

/* Tags */
.download-tag {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  z-index: 2;
}

.tag-1 {
  top: 34%;
  left: 8%;
}
.tag-2 {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}
.tag-3 {
  bottom: 32%;
  right: 8%;
}

/* Center Card */
.download-center-card {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  padding: 30px 24px;
  text-align: center;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 0, 0, 0.15);
  backdrop-filter: blur(18px);
  z-index: 3;
}

.device-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff1f1f, #b80000);
  color: #fff;
  font-size: 1.5rem;
}

.download-center-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #ffffff;
}

.download-center-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 992px) {
  .download-layout {
    grid-template-columns: 1fr;
  }

  .download-visual {
    position: relative;
    top: auto;
    order: -1;
  }

  .download-graphic {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .download-section {
    padding: 90px 0 70px;
  }

  .download-content-card {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .download-features {
    grid-template-columns: 1fr;
  }

  .download-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

  .download-graphic {
    border-radius: 24px;
  }

  .platform-orb {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .download-center-card {
    width: 180px;
    padding: 24px 18px;
  }

  .download-center-card h3 {
    font-size: 1rem;
  }

  .download-center-card p {
    font-size: 0.75rem;
  }

  .download-tag {
    font-size: 0.62rem;
    padding: 6px 10px;
  }
}

/* ==========================================================
   PROFESSIONAL DOWNLOAD SECTION
   Unique Design: Futuristic App Showcase (Not copied from 4D)
========================================================== */

.download-section {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

/* ----------------------------------------------------------
   HERO BANNER
---------------------------------------------------------- */
.download-hero {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow:
    0 10px 30px rgba(255, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.download-badge i {
  color: #ff3b3b;
  font-size: 1rem;
}

.download-subtitle {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 500;
}

/* ----------------------------------------------------------
   MAIN TWO-COLUMN LAYOUT
---------------------------------------------------------- */
.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   LEFT CONTENT CARD
---------------------------------------------------------- */
.download-content-card {
  position: relative;
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.download-content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.08), transparent 45%),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.02),
      transparent 55%
    );
  pointer-events: none;
}

.download-content-card .about-text {
  position: relative;
  z-index: 2;
}

.download-content-card .about-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 2;
  margin-bottom: 22px;
}

/* ----------------------------------------------------------
   FEATURE GRID
---------------------------------------------------------- */
.download-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
}

.download-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 0, 0.25);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.08);
}

.feature-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.22),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 0, 0, 0.18);
  color: #ff3b3b;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.download-feature span {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ----------------------------------------------------------
   DOWNLOAD BUTTONS
---------------------------------------------------------- */
.premium-download-buttons {
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.premium-download-buttons .cta-button {
  min-width: 240px;
}

.premium-download-buttons .cta-button i {
  margin-right: 8px;
}

/* ----------------------------------------------------------
   RIGHT VISUAL SHOWCASE
---------------------------------------------------------- */
.download-visual {
  position: relative;
}

.download-graphic {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.14), transparent 55%),
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.04),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
  border: 1px solid rgba(255, 0, 0, 0.18);
  backdrop-filter: blur(24px);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.5),
    inset 0 0 80px rgba(255, 0, 0, 0.05);
}

/* Animated Background Layers */
.download-graphic::before,
.download-graphic::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: pulseGlow 8s ease-in-out infinite;
}

.download-graphic::before {
  width: 180px;
  height: 180px;
  top: 40px;
  left: 40px;
  background: rgba(255, 0, 0, 0.22);
}

.download-graphic::after {
  width: 220px;
  height: 220px;
  right: 40px;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.06);
  animation-delay: 2s;
}

.download-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.05),
    rgba(255, 0, 0, 0.06)
  );
}

/* ----------------------------------------------------------
   CENTER APP CARD
---------------------------------------------------------- */
.download-center-card {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 230px;
  height: 230px;
  border-radius: 32px;
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 5;
}

.device-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 20px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.22),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 0, 0, 0.22);
  color: #ff3b3b;
  font-size: 2.3rem;
}

.download-center-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.download-center-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ----------------------------------------------------------
   FLOATING PLATFORM ORBS
---------------------------------------------------------- */
.platform-orb {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  z-index: 4;
  animation: floatOrb 6s ease-in-out infinite;
}

.orb-android {
  top: 60px;
  left: 70px;
  color: #3ddc84;
}

.orb-ios {
  top: 70px;
  right: 70px;
  color: #ffffff;
  animation-delay: 1s;
}

.orb-cloud {
  bottom: 85px;
  left: 65px;
  color: #4fc3ff;
  animation-delay: 2s;
}

.orb-shield {
  bottom: 70px;
  right: 65px;
  color: #ff4d4d;
  animation-delay: 3s;
}

/* ----------------------------------------------------------
   FLOATING TAGS
---------------------------------------------------------- */
.download-tag {
  position: absolute;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 6;
}

.tag-1 {
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.tag-2 {
  bottom: 30px;
  left: 50px;
}

.tag-3 {
  bottom: 30px;
  right: 40px;
}

/* ----------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------- */
@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}

/* ----------------------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------------------- */
@media (max-width: 992px) {
  .download-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .download-visual {
    order: -1;
  }

  .download-graphic {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .download-section {
    padding-top: 90px;
  }

  .download-content-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .download-features {
    grid-template-columns: 1fr;
  }

  .premium-download-buttons .cta-button {
    min-width: auto;
    width: 100%;
  }

  .download-graphic {
    max-width: 100%;
    border-radius: 28px;
  }

  .download-center-card {
    width: 200px;
    height: 200px;
    padding: 24px 20px;
  }

  .device-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .platform-orb {
    width: 58px;
    height: 58px;
    font-size: 1.3rem;
  }

  .download-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }

  .download-tag {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .download-hero {
    margin-bottom: 50px;
  }

  .download-content-card {
    padding: 28px 20px;
  }

  .download-center-card {
    width: 180px;
    height: 180px;
  }

  .download-center-card h3 {
    font-size: 1.15rem;
  }

  .download-center-card p {
    font-size: 0.85rem;
  }

  .platform-orb {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }

  .orb-android {
    top: 35px;
    left: 35px;
  }

  .orb-ios {
    top: 35px;
    right: 35px;
  }

  .orb-cloud {
    bottom: 55px;
    left: 30px;
  }

  .orb-shield {
    bottom: 55px;
    right: 30px;
  }

  .tag-2,
  .tag-3 {
    display: none;
  }
}

/* ==========================================================
   BANK PAYMENT SECTION
========================================================== */
.bank-payment-section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

.bank-payment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 255, 255, 0.08),
      transparent 40%
    ),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.08), transparent 40%);
  pointer-events: none;
}

.bank-payment-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bank-payment-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bank-payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #00f5ff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bank-payment-subtitle {
  max-width: 760px;
  margin: 1.5rem auto 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
}

.bank-payment-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom:20px;
}

.bank-payment-info,
.bank-logos-card {
  position: relative;
  padding: 2.5rem;
  border-radius: 32px;
  background: rgba(8, 12, 24, 0.75);
  border: 1px solid rgba(0, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bank-payment-info h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.bank-payment-info p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.bank-payment-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.payment-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-feature i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00f5ff, #7c3aed);
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}

.payment-feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.bank-logos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.25rem;
}

.bank-logo-item {
  position: relative;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: all 0.35s ease;
}

.bank-logo-item:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(0, 245, 255, 0.35);
  box-shadow:
    0 15px 35px rgba(0, 245, 255, 0.15),
    0 0 20px rgba(0, 245, 255, 0.08);
}

.bank-logo-item img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

/* Responsive */
@media (max-width: 1024px) {
  .bank-payment-content {
    grid-template-columns: 1fr;
  }

  .bank-payment-info,
  .bank-logos-card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .bank-payment-section {
    padding: 4rem 1.25rem;
  }

  .bank-payment-info,
  .bank-logos-card {
    padding: 2rem;
    border-radius: 24px;
	text-align:center;
  }

  .bank-payment-features {
    grid-template-columns: 1fr;
  }

  .bank-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .bank-logo-item {
    min-height: 90px;
    padding: 0.75rem;
  }

  .bank-logo-item img {
    max-height: 56px;
  }

  .bank-payment-info h3 {
    font-size: 1.35rem;
  }

  .bank-payment-subtitle {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .bank-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bank-payment-badge {
    font-size: 0.75rem;
    padding: 0.65rem 1.25rem;
  }
}

/* =========================
   CONTACT HUB (NO FORM)
========================= */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT PANEL */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 14px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

/* RIGHT PANEL */
.contact-info {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 14px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  font-family: "Orbitron", monospace;
  color: #ff0000;
  margin-bottom: 25px;
}

/* CONTACT METHODS */
.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 0, 0, 0.15);
  transition: 0.3s ease;
}

.contact-method:hover {
  transform: translateX(5px);
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.contact-method i {
  font-size: 22px;
  color: #ff0000;
}

/* INFO ITEMS (already consistent with login style) */
.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 12px;
  border-left: 2px solid rgba(255, 0, 0, 0.3);
}

.info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;
}

.info-details h4 {
  font-size: 1rem;
}

.info-details p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* MAP */
.map-container {
  margin-top: 30px;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 0, 0.15);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT HUB LEFT PANEL (PRO LEVEL UI)
========================= */

.contact-hub {
  background: linear-gradient(
    145deg,
    rgba(255, 0, 0, 0.05),
    rgba(0, 0, 0, 0.4)
  );
  border: 1px solid rgba(255, 0, 0, 0.25);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* glow border effect */
.contact-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 0, 0, 0.15),
    transparent 60%
  );
  pointer-events: none;
}

/* header */
.hub-header {
  margin-bottom: 30px;
}

.hub-subtitle {
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.75;
}

/* stats grid */
.hub-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 25px 0;
}

.hub-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.15);
  transition: 0.3s ease;
}

.hub-card:hover {
  transform: translateX(5px);
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

.hub-card i {
  font-size: 20px;
  color: #ff0000;
}

.hub-card h4 {
  margin: 0;
  font-size: 1.1rem;
}

.hub-card p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* status bar */
.hub-status {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  opacity: 0.8;
  padding: 12px 15px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 0, 0, 0.1);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 10px #00ff88;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

/* note box */
.hub-note {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.7;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 0, 0, 0.1);
}
