* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: #0a0a0a;
  color: #eee;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

:root {
  --bg-dark: #0a0a0a;
  --bg-medium: #151515;
  --bg-light: #1f1f1f;
  --accent: #00fff0;
  --highlight: #ff00ff;
  --text-light: #eee;
  --transition: 0.4s ease;
}

.site-header {
  background: var(--bg-medium);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .logo {
  font-family: "Orbitron", sans-serif;
  color: var(--accent);
  font-size: 1.5rem;
  text-decoration: none;
}
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem;
  transition: color var(--transition);
}
.main-nav a:hover {
  color: var(--highlight);
}

.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.hero-content {
  z-index: 2;
}
.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}
.hero p {
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
  color: var(--text-light);
}
.btn {
  display: inline-block;
  background: var(--highlight);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  transition: transform var(--transition);
}
.btn:hover {
  transform: scale(1.05);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(
        90deg,
        rgba(0, 255, 240, 0.2) 2px,
        transparent 2px
      )
      0 0 / 50px 50px,
    linear-gradient(0deg, rgba(255, 0, 255, 0.2) 2px, transparent 2px) 0 0 /
      50px 50px;
  animation: moveLines 10s linear infinite;
}
@keyframes moveLines {
  to {
    background-position: 50px 50px, 50px 50px;
  }
}

.about-section {
  background: var(--bg-light);
  padding: 4rem 0;
}
.about-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--highlight);
  text-align: center;
  margin-bottom: 1rem;
}
.about-section p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-section {
  background: var(--bg-medium);
  padding: 4rem 0;
  overflow: hidden;
}
.gallery-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
}
.carousel {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  width: calc(10 * 300px * 2);
  animation: scrollGallery 20s linear infinite;
}
.carousel-item {
  flex: 0 0 300px;
  height: 180px;
  margin-right: 1rem;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition);
}
.carousel-item:hover {
  transform: scale(1.05);
}
@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.parallax-section {
  position: relative;
  height: 50vh;
  background: url("../assets/images/gallery1.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.parallax-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}
.parallax-section p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

.games-section {
  background: var(--bg-light);
  padding: 4rem 0;
}
.games-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--highlight);
  text-align: center;
  margin-bottom: 2rem;
}
.games-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.game-card {
  background: var(--bg-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.game-card .thumb {
  width: 100%;
  padding-top: 56%;
  background-size: cover;
  background-position: center;
}
.game-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  text-align: center;
  padding: 1rem;
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.contact-section {
  background: var(--bg-medium);
  color: var(--text-light);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 20, 231, 0.1),
    transparent 60%
  );
  transform: translateX(-50%);
  animation: pulseBg 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulseBg {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.6;
  }
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--accent);
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-size: 1.1rem;
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 3rem;
}

.contact-item {
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.contact-item h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-cta {
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  color: var(--text-dark);
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

.contact-cta h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.contact-cta p {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1rem;
  }
  .contact-title {
    font-size: 2rem;
  }
  .contact-intro {
    font-size: 1rem;
  }
  .contact-grid {
    gap: 1rem;
  }
  .contact-item {
    padding: 1.25rem;
  }
  .contact-cta {
    padding: 2rem 1rem;
  }
  .contact-cta h3 {
    font-size: 1.5rem;
  }
  .contact-cta p {
    font-size: 0.9rem;
  }
}

.site-footer {
  background: var(--bg-medium);
  color: var(--text-light);
  padding: 2rem 0;
  text-align: center;
}
.site-footer .logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0;
}
.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-nav a:hover {
  color: var(--highlight);
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.alt-parallax {
  position: relative;
  background: url("../assets/images/gallery2.jpg") center/cover no-repeat fixed;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  overflow: hidden;
}
.alt-parallax-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  pointer-events: none;
}
.alt-parallax-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.alt-parallax-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--highlight);
  margin-bottom: 1rem;
  animation: slideInLeft 1s ease-out;
}
.alt-parallax-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.5;
  animation: fadeIn 1.5s ease-out 0.5s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .alt-parallax {
    height: 40vh;
    padding-left: 2rem;
    justify-content: center;
    text-align: center;
  }
  .alt-parallax-title {
    font-size: 2rem;
  }
  .alt-parallax-text {
    font-size: 0.95rem;
  }
}

.contact-detail-section {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 2rem;
}
.contact-detail-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-detail-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--accent);
}
.contact-detail-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}
.contact-detail-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.7;
}
.contact-detail-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 3rem 0;
}
.contact-detail-grid .contact-item {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-detail-grid .contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.contact-detail-grid .contact-item h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}
.contact-detail-grid .contact-item p,
.contact-detail-grid .contact-item a {
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-detail-grid .contact-item a {
  color: var(--accent);
  text-decoration: none;
}
.contact-detail-grid .contact-item a:hover {
  text-decoration: underline;
}

.contact-detail-cta {
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-detail-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.contact-detail-cta h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}
.contact-detail-cta .btn-primary {
  background: #000;
  color: var(--accent);
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-detail-cta .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .contact-detail-title {
    font-size: 2.5rem;
  }
  .contact-detail-intro {
    font-size: 1.1rem;
  }
  .contact-detail-text p {
    font-size: 0.95rem;
  }
  .contact-detail-grid {
    gap: 1rem;
  }
  .contact-detail-cta h3 {
    font-size: 1.75rem;
  }
}

.about-detail-section {
  position: relative;
  background: var(--bg-dark);
  padding: 6rem 2rem;
  overflow: hidden;
}
.about-detail-section .container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  color: var(--text-light);
}
.about-detail-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px var(--accent);
  animation: glowText 2s ease-in-out infinite alternate;
}
@keyframes glowText {
  to {
    text-shadow: 0 0 20px var(--highlight);
  }
}
.about-detail-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}
.about-detail-content p:nth-child(1) {
  animation-delay: 0.2s;
}
.about-detail-content p:nth-child(2) {
  animation-delay: 0.4s;
}
.about-detail-content p:nth-child(3) {
  animation-delay: 0.6s;
}
.about-detail-content p:nth-child(4) {
  animation-delay: 0.8s;
}
.about-detail-content p:nth-child(5) {
  animation-delay: 1s;
}
.about-detail-content p:nth-child(6) {
  animation-delay: 1.2s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.neon-shape {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  pointer-events: none;
}
.shape1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  border-color: var(--accent);
  animation: float1 6s ease-in-out infinite;
}
.shape2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 10%;
  border-color: var(--highlight);
  animation: float2 8s ease-in-out infinite;
}
@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-15px, 15px) scale(1.05);
  }
}

@media (max-width: 768px) {
  .about-detail-title {
    font-size: 2.25rem;
  }
  .about-detail-content p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .shape1,
  .shape2 {
    display: none;
  }
}

.faq-section {
  background: var(--bg-medium);
  padding: 5rem 2rem;
}

.faq-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.75rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 8px var(--accent);
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.5rem;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
}

.faq-question::after {
  content: "⌄";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  color: var(--highlight);
  transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  background: var(--bg-medium);
}

.faq-answer p {
  margin: 1rem 0 0;
  line-height: 1.6;
  color: var(--text-light);
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2.25rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  .faq-question::after {
    right: 1rem;
  }
  .faq-answer {
    padding: 0 1rem 1rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
  }
}

.promo-text-section {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 5rem 2rem;
  text-align: center;
}

.promo-text-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 20%,
    var(--accent) 40%,
    var(--highlight) 60%,
    transparent 80%
  );
  animation: slideGradient 6s linear infinite;
  mix-blend-mode: screen;
}

@keyframes slideGradient {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.promo-text-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.promo-text-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--accent), 0 0 16px var(--highlight);
  animation: glowTitle 2s ease-in-out infinite alternate;
}

@keyframes glowTitle {
  to {
    text-shadow: 0 0 16px var(--accent), 0 0 32px var(--highlight);
  }
}

.promo-text-content {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  animation: fadeInText 1s ease forwards;
}

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

.promo-text-btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulseBtn 2s ease-in-out infinite;
}

.promo-text-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px var(--highlight), 0 0 24px var(--accent);
}

@keyframes pulseBtn {
  0%,
  100% {
    box-shadow: 0 0 8px var(--accent);
  }
  50% {
    box-shadow: 0 0 16px var(--highlight);
  }
}

@media (max-width: 768px) {
  .promo-text-title {
    font-size: 2.25rem;
  }
  .promo-text-content {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .promo-text-btn {
    padding: 0.6rem 1.5rem;
  }
}

/* Detailed Subscriptions Section */
.subs-detail-section {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 2rem;
  overflow: hidden;
}
.subs-shape {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  pointer-events: none;
}
.shape-a {
  width: 180px;
  height: 180px;
  top: 10%;
  right: 5%;
  border-color: var(--accent);
  animation: floatSubsA 7s ease-in-out infinite;
}
.shape-b {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 8%;
  border-color: var(--highlight);
  animation: floatSubsB 9s ease-in-out infinite;
}
@keyframes floatSubsA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-15px, 20px) scale(1.1);
  }
}
@keyframes floatSubsB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -10px) scale(1.05);
  }
}

.subs-detail-section .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.subs-detail-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--highlight);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--highlight);
}
.subs-detail-intro {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.plan-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.plan-card {
  background: var(--bg-light);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--highlight);
}
.plan-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.bronze-icon {
  background-image: url("assets/icons/bronze.png");
}
.silver-icon {
  background-image: url("assets/icons/silver.png");
}
.gold-icon {
  background-image: url("assets/icons/gold.png");
}
.platinum-icon {
  background-image: url("assets/icons/platinum.png");
}
.elite-icon {
  background-image: url("assets/icons/elite.png");
}

.plan-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.plan-desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.plan-rate {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--highlight);
}
.plan-rate span {
  font-size: 1rem;
  font-weight: normal;
  margin-left: 4px;
  color: var(--text-light);
}

.plan-btn {
  display: inline-block;
  background: var(--highlight);
  color: #000;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.plan-btn:hover {
  background: var(--accent);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .subs-detail-title {
    font-size: 2.25rem;
  }
  .subs-detail-intro {
    font-size: 1rem;
  }
  .plan-card {
    padding: 1.5rem 1rem;
  }
  .plan-name {
    font-size: 1.3rem;
  }
  .plan-rate {
    font-size: 1.5rem;
  }
}

/* Games Section — полностью без градиента, только сетка */
.games-section {
  background: var(--bg-dark);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.games-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* вертикальные линии */ repeating-linear-gradient(
      to right,
      rgba(155, 48, 255, 0.15) 0,
      rgba(155, 48, 255, 0.15) 1px,
      transparent 1px,
      transparent 60px
    ),
    /* горизонтальные линии */
      repeating-linear-gradient(
        to bottom,
        rgba(57, 255, 20, 0.15) 0,
        rgba(57, 255, 20, 0.15) 1px,
        transparent 1px,
        transparent 60px
      );
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

.games-section .container {
  position: relative;
  z-index: 2;
}

.games-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.game-card {
  position: relative;
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(45deg, var(--accent), var(--highlight));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover::before {
  opacity: 1;
}
.game-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 0 20px var(--accent), 0 0 30px var(--highlight);
}

.thumb {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  transition: filter var(--transition), transform var(--transition);
}
.game-card:hover .thumb {
  filter: brightness(1);
  transform: scale(1.05);
}

.game-card h3 {
  margin: 1rem;
  font-family: "Orbitron", sans-serif;
  color: var(--highlight);
  text-align: center;
  text-shadow: 0 0 6px var(--accent);
}
.game-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0.5rem auto 0;
  animation: glowLine 1.5s ease-in-out infinite alternate;
}
@keyframes glowLine {
  to {
    background: var(--highlight);
    box-shadow: 0 0 8px var(--highlight);
  }
}

@media (max-width: 768px) {
  .games-section {
    padding: 4rem 1rem;
  }
  .game-card:hover {
    transform: translateY(-6px);
  }
  .thumb {
    height: 140px;
  }
  .game-card h3 {
    font-size: 1.1rem;
  }
}

.membership-section {
  position: relative;
  background: var(--bg-dark);
  padding: 6rem 2rem;
  overflow: hidden;
}
.membership-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    var(--accent),
    var(--highlight),
    var(--accent)
  );
  background-size: 400% 400%;
  animation: moveGradient 8s linear infinite;
  opacity: 0.15;
  z-index: 1;
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.membership-section .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.membership-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 2rem;
  text-shadow: 0 0 8px var(--accent);
  animation: glowTitle 2s ease-in-out infinite alternate;
}
@keyframes glowTitle {
  to {
    text-shadow: 0 0 16px var(--highlight);
  }
}

.membership-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership-list li {
  position: relative;
}

.membership-list a {
  display: block;
  position: relative;
  padding: 1.25rem 1rem;
  color: var(--text-light);
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  transition: color var(--transition);
}

.membership-list a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--highlight);
  transform: skewX(-20deg);
  transition: transform 0.5s ease;
  z-index: 0;
}

.membership-list a:hover::before {
  transform: translateX(200%) skewX(-20deg);
}

.membership-list a span,
.membership-list a {
  position: relative;
  z-index: 1;
}

.membership-list a:hover {
  color: #ff00ff;
}

@media (max-width: 768px) {
  .membership-section {
    padding: 4rem 1rem;
  }
  .membership-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
  .membership-list {
    grid-template-columns: 1fr;
  }
  .membership-list a {
    font-size: 1rem;
    padding: 1rem;
  }
}

.reviews-section {
  position: relative;
  background: var(--bg-dark);
  padding: 6rem 2rem;
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      to right,
      rgba(155, 48, 255, 0.15) 0,
      rgba(155, 48, 255, 0.15) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(155, 48, 255, 0.15) 0,
      rgba(155, 48, 255, 0.15) 1px,
      transparent 1px,
      transparent 60px
    );
  background-size: 60px 60px;
  z-index: 1;
}

.reviews-section .container {
  position: relative;
  z-index: 2;
}

.reviews-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.75rem;
  color: var(--highlight);
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 8px var(--highlight);
  animation: glowHeader 2.5s ease-in-out infinite alternate;
}

@keyframes glowHeader {
  to {
    text-shadow: 0 0 16px var(--accent), 0 0 32px var(--highlight);
  }
}

.reviews-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.reviews-grid blockquote {
  position: relative;
  background: var(--bg-light);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.reviews-grid blockquote:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px var(--accent);
}

.reviews-grid blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--highlight));
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}

.reviews-grid blockquote:hover::before {
  transform: translateX(-50%) scaleY(1);
}

.reviews-grid blockquote cite {
  display: block;
  margin-top: 1.25rem;
  text-align: right;
  font-style: normal;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 4rem 1rem;
  }
  .reviews-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.about-section {
  position: relative;
  background: var(--bg-dark);
  padding: 6rem 2rem;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      to right,
      rgba(155, 48, 255, 0.1) 0,
      rgba(155, 48, 255, 0.1) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(0, 153, 255, 0.1) 0,
      rgba(0, 153, 255, 0.1) 1px,
      transparent 1px,
      transparent 80px
    );
  background-size: 80px 80px;
  animation: shiftGrid 20s linear infinite;
  z-index: 1;
}

@keyframes shiftGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 80px 80px, -80px -80px;
  }
}

.about-section .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--accent), 0 0 16px var(--highlight);
  animation: glowText 3s ease-in-out infinite alternate;
}

@keyframes glowText {
  to {
    text-shadow: 0 0 16px var(--accent), 0 0 32px var(--highlight);
  }
}

.about-section p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 1rem;
  padding: 0 1rem;
  position: relative;
}

.about-section p::before,
.about-section p::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: var(--highlight);
  opacity: 0.7;
}

.about-section p::before {
  top: -10px;
  left: calc(50% - 60px);
}

.about-section p::after {
  bottom: -10px;
  right: calc(50% - 60px);
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1rem;
  }
  .about-section h2 {
    font-size: 2.25rem;
  }
  .about-section p {
    font-size: 1rem;
  }
}

/* 1. Hero Section (фон через HTML) */
.game-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

.game-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.game-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  animation: overlayFade 1s forwards;
  z-index: 2;
}

@keyframes overlayFade {
  to {
    background: rgba(0, 0, 0, 0.6);
  }
}

.game-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: contentFade 1s 0.5s ease-out forwards;
}

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

.game-hero__content h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--accent);
}

.game-hero__content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.game-hero__btn {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}

.game-hero__btn:hover {
  transform: translateY(-3px);
  background: var(--highlight);
}

@media (max-width: 768px) {
  .game-hero {
    height: 60vh;
  }
  .game-hero__content h1 {
    font-size: 2.5rem;
  }
}
.overview-cards {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.overview-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px var(--highlight);
}
.overview-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconGlow 1.5s infinite alternate;
}
@keyframes iconGlow {
  to {
    color: var(--highlight);
    text-shadow: 0 0 8px var(--highlight);
  }
}
.overview-card h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.overview-card p {
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .game-hero {
    height: 60vh;
  }
  .game-hero__content h1 {
    font-size: 2.5rem;
  }
  .game-overview {
    padding: 4rem 1rem;
  }
  .game-overview h2 {
    font-size: 2.25rem;
  }
}

.game-story {
  position: relative;
  background: radial-gradient(
    circle at center,
    rgba(155, 48, 255, 0.2),
    rgba(0, 0, 0, 1)
  );
  padding: 6rem 2rem;
  overflow: hidden;
}
.story-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-light);
}
.game-story h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  animation: pulseText 2s ease-in-out infinite alternate;
}
@keyframes pulseText {
  to {
    text-shadow: 0 0 12px var(--highlight), 0 0 24px var(--accent);
  }
}
.game-story p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.story-list {
  list-style: none;
  padding: 0;
}
.story-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.story-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--highlight);
  animation: bounceBullet 1.5s ease-in-out infinite alternate;
}
@keyframes bounceBullet {
  to {
    transform: translateY(-5px);
  }
}

.story-deco {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: floatCircle 6s ease-in-out infinite;
}
.deco-circle--small {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 15%;
}
.deco-circle--large {
  width: 200px;
  height: 200px;
  bottom: 5%;
  right: 10%;
  background: var(--highlight);
  opacity: 0.3;
  animation-duration: 8s;
}
@keyframes floatCircle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

.game-screenshots {
  position: relative;
  background: linear-gradient(135deg, #000, #111);
  padding: 6rem 2rem;
  overflow: hidden;
}
.shots-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.game-screenshots h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--highlight);
  margin-bottom: 2rem;
  text-shadow: 0 0 8px var(--highlight);
}
.shots-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.shot-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  position: relative;
}
.shot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform var(--transition);
}
.shot-item:hover img {
  transform: scale(1.1) rotate(2deg);
}
.shots-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(
      to right,
      rgba(155, 48, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(57, 255, 20, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveGrid 15s linear infinite;
}
@keyframes moveGrid {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 40px;
  }
}

.game-overview {
  position: relative;
  background: var(--bg-dark);
  padding: 6rem 2rem;
  overflow: hidden;
}

.game-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(155, 48, 255, 0.1),
    transparent 70%
  );
  animation: rotateGlow 20s linear infinite;
  z-index: 1;
}
@keyframes rotateGlow {
  from {
    transform: rotate(0deg) scale(1.1);
  }
  to {
    transform: rotate(360deg) scale(1.1);
  }
}

.game-overview .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.game-overview h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.75rem;
  color: var(--highlight);
  margin-bottom: 3rem;
  text-shadow: 0 0 8px var(--highlight);
  animation: pulseTitle 2.5s ease-in-out infinite alternate;
}
@keyframes pulseTitle {
  to {
    text-shadow: 0 0 16px var(--accent), 0 0 32px var(--highlight);
  }
}

.overview-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  perspective: 1000px;
}

.overview-card {
  position: relative;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  width: 280px;
  transform-style: preserve-3d;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(45deg, var(--accent), var(--highlight));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.overview-card:hover::after {
  opacity: 1;
}

.overview-card:hover {
  transform: rotateY(8deg) rotateX(4deg) scale(1.05);
  box-shadow: 0 0 20px var(--accent), 0 0 30px var(--highlight);
}

.overview-card i {
  display: block;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: pulseIcon 1.5s ease-in-out infinite alternate;
}
@keyframes pulseIcon {
  to {
    color: var(--highlight);
    text-shadow: 0 0 8px var(--highlight);
  }
}

.overview-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
  position: relative;
}
.overview-card h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: var(--accent);
  animation: glowLine 1.5s ease-in-out infinite alternate;
}
@keyframes glowLine {
  to {
    background: var(--highlight);
    box-shadow: 0 0 8px var(--highlight);
  }
}

.overview-card p {
  font-family: "Montserrat", sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .game-overview {
    padding: 4rem 1rem;
  }
  .game-overview h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
  .overview-cards {
    gap: 1.5rem;
  }
  .overview-card {
    width: 100%;
  }
  .overview-card h3 {
    font-size: 1.3rem;
  }
  .overview-card i {
    font-size: 2.5rem;
  }
}

.subs-spotlight {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subs-spotlight__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7);
}
.subs-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  animation: spotlightFade 1.2s forwards;
  z-index: 2;
}
@keyframes spotlightFade {
  to {
    background: rgba(0, 0, 0, 0.6);
  }
}
.subs-spotlight__content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  animation: spotlightContent 1s 0.5s ease-out forwards;
}
@keyframes spotlightContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.subs-spotlight__content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--accent);
}
.subs-spotlight__content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.subs-spotlight__btn {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition);
}
.subs-spotlight__btn:hover {
  transform: translateY(-3px);
  background: var(--highlight);
}

.subs-spotlight__deco {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}
.deco-circle--1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 15%;
}
.deco-circle--2 {
  width: 200px;
  height: 200px;
  bottom: 5%;
  right: 10%;
  background: var(--highlight);
  animation-duration: 8s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.subs-details {
  background: var(--bg-dark);
  padding: 6rem 2rem;
}
.subs-details .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.subs-details h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.75rem;
  color: var(--highlight);
  margin-bottom: 3rem;
  text-shadow: 0 0 8px var(--highlight);
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  perspective: 800px;
}
.feature-card {
  background: var(--bg-light);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: rotateY(8deg) scale(1.05);
  box-shadow: 0 0 20px var(--accent), 0 0 30px var(--highlight);
}
.feature-card i {
  display: block;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  animation: iconPulse 1.5s ease-in-out infinite alternate;
}
@keyframes iconPulse {
  to {
    color: var(--highlight);
    text-shadow: 0 0 8px var(--highlight);
  }
}
.feature-card h3 {
  font-size: 1.25rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .subs-spotlight__content h2 {
    font-size: 2.5rem;
  }
  .subs-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}


.title_background {
  position: relative;
  background: var(--bg-dark);
  padding: 5rem 0;
  overflow: hidden;
}
.title_background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, var(--accent) 2px, transparent 0),
    radial-gradient(circle at 75% 70%, var(--highlight) 2px, transparent 0);
  background-size: 60px 60px;
  opacity: 0.15;
  pointer-events: none;
}
.title_background .title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.75rem;
  color: var(--highlight);
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 8px var(--highlight);
  position: relative;
}
.title_background .title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
  animation: neonPulse 1.5s ease-in-out infinite alternate;
}
@keyframes neonPulse {
  to {
    box-shadow: 0 0 12px var(--accent), 0 0 24px var(--highlight);
  }
}

.text_background {
  position: relative;
  background: var(--bg-light);
  padding: 4rem 0;
}
.text_background .text {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  background: rgba(0,0,0,0.2);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  position: relative;
}
.text_background .text::before {
  content: "❝";
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .title_background {
    padding: 3rem 0;
  }
  .title_background .title {
    font-size: 2.25rem;
  }
  .text_background {
    padding: 3rem 0;
  }
  .text_background .text {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
  }
}