:root {
  --bg-dark: #111;
  --bg-light: #1a1a1a;
  --accent1: #39ff14;
  --accent2: #9b30ff;
  --text-light: #eee;
  --text-muted: #777;
  --transition: 0.3s ease;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-light);
  padding: 1rem 0;
}
.logo,
.footer-logo {
  font-family: "Press Start 2P", monospace;
  color: var(--accent2);
  font-size: 1.25rem;
}
.main-nav {
  display: flex;
}
.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  transition: max-height var(--transition);
}
.main-nav ul.open {
  max-height: 300px;
}
.main-nav a {
  font-weight: 600;
  transition: color var(--transition);
}
.main-nav a:hover {
  color: var(--accent1);
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
}
@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }
  .main-nav ul {
    display: none;
    flex-direction: column;
    background: var(--bg-light);
    width: 100%;
  }
  .main-nav ul.open {
    display: flex;
  }
}

.hero-parallax {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  text-align: center;
}
.hero-parallax .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-inner h1 {
  font-family: "Orb​itron", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent1);
  text-shadow: 0 0 8px var(--accent1);
}
.hero-inner p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.btn-primary {
  background: var(--accent1);
  color: #111;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 3rem 0 2rem;
  color: var(--accent2);
}
.games-section {
  background: var(--bg-light);
  padding: 4rem 0;
}
.games-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.game-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}
.game-thumb {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
}
.game-card h3 {
  margin: 1rem 0 0.5rem;
  color: var(--accent1);
}
.game-card p {
  padding: 0 0.75rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.game-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding-bottom: 1rem;
}
.btn-secondary {
  background: var(--accent2);
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.btn-secondary:hover {
  background: var(--accent1);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: var(--bg-light);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-content img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.subs-section {
  background: var(--bg-dark);
  padding: 4rem 0;
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 1px solid var(--bg-light);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  color: var(--accent2);
  text-align: left;
  cursor: pointer;
  position: relative;
}
.accordion-header::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition);
}
.accordion-item.active .accordion-header::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion-body {
  max-height: 0;
  padding: 0 1rem;
  background: var(--bg-light);
  transition: max-height var(--transition);
}
.accordion-item.active .accordion-body {
  max-height: 200px;
  padding: 1rem;
}
.accordion-body p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.contact-section {
  padding: 4rem 0;
  background: var(--bg-light);
  text-align: center;
}
.contact-section p {
  font-size: 1rem;
}
.contact-section a {
  color: var(--accent1);
  transition: color var(--transition);
}
.contact-section a:hover {
  color: var(--accent2);
}

.site-footer {
  background: var(--bg-dark);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
}
.site-footer .footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}
.site-footer a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.site-footer a:hover {
  color: var(--accent1);
}

@media (max-width: 768px) {
  .hero-parallax {
    padding: 6rem 0;
    background-attachment: scroll;
  }
  .hero-inner h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

.parallax-section {
  position: relative;
  overflow: hidden;
  height: 60vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/images/gallery1.jpg") center/cover no-repeat fixed;
  transform: translateZ(0);
  will-change: transform;
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

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

.parallax-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
  line-height: 1.4;
}

.parallax-graphic {
  position: relative;
  display: flex;
  justify-content: center;
}

.parallax-graphic img {
  width: 100%;
  max-width: 350px;
  margin-top: -10%;
  transition: transform var(--transition);
}

.parallax-graphic img:hover {
  transform: scale(1.05) rotate(-2deg);
}

@media (max-width: 992px) {
  .parallax-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .parallax-graphic {
    margin-top: -5%;
  }
}

@media (max-width: 600px) {
  .parallax-section {
    height: auto;
    padding: 4rem 0;
  }
  .parallax-bg {
    background-attachment: scroll;
  }
  .parallax-text h2 {
    font-size: 2rem;
  }
  .parallax-text p {
    font-size: 1rem;
  }
}

.reviews-marquee {
  background: var(--bg-dark);
  padding: 4rem 0;
  overflow: hidden;
}
.reviews-marquee .section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 12px var(--accent);
}

.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 2rem;
  animation: marquee-scroll 20s linear infinite;
}
.marquee-wrap:hover .marquee-content {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 auto;
  width: 260px;
  background: var(--bg-light);
  border: 2px solid var(--highlight);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 6px 18px var(--highlight);
}
.review-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.review-card cite {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .reviews-marquee .section-title {
    font-size: 2rem;
  }
  .marquee-content {
    gap: 1rem;
  }
  .review-card {
    width: 200px;
    padding: 1rem;
  }
}

.about-section {
  background: var(--bg-light);
  padding: 6rem 2rem;
  color: var(--text-light);
}

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

.about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-content h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  color: var(--accent);
  margin: 2rem 0 1rem;
  text-shadow: 0 0 6px var(--accent);
}

.about-values {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-values li {
  position: relative;
  padding-left: 1.8rem;
}

.about-values li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  text-shadow: 0 0 4px var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.about-cta {
  text-align: center;
  margin-top: 3rem;
}

.about-cta .btn-primary {
  background: var(--accent);
  color: #39ff14;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-cta .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(57, 255, 20, 0.6);
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  .about-section {
    padding: 4rem 1rem;
  }
  .about-content {
    padding: 0 1rem;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  background: var(--bg-dark);
  padding: 5rem 2rem;
  color: var(--text-light);
}
.faq-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 0 8px var(--accent);
}
.faq-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-card {
  perspective: 1000px;
  cursor: pointer;
}
.faq-card:focus {
  outline: none;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 220px;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--transition);
}
.faq-card:hover .card-inner,
.faq-card.is-flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.card-front {
  background: var(--bg-light);
  color: var(--text-light);
}
.card-front h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.card-back {
  background: var(--accent);
  color: #777;
  transform: rotateY(180deg);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
  .faq-section {
    padding: 3rem 1rem;
  }
  .card-inner {
    height: 200px;
  }
}

.game-hero {
  position: relative;
  height: 80vh;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  animation: overlayFade 1s ease forwards;
}
@keyframes overlayFade {
  to {
    background: rgba(0, 0, 0, 0.7);
  }
}
.game-hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: contentFade 1s 0.5s ease forwards;
}
@keyframes contentFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.game-hero__title {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  text-shadow: 0 0 12px #39ff14;
}
.game-hero__tagline {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  text-shadow: 0 0 8px #0099ff;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: #39ff14;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 6px #39ff14;
}

.game-description {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 2rem;
}
.game-description p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.game-specs {
  background: var(--bg-light);
  padding: 4rem 2rem;
}
.specs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.spec-card {
  background: var(--bg-dark);
  border: 2px solid var(--highlight);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}
.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px var(--highlight);
}
.spec-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0099ff;
}
.spec-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-light);
}

.game-reviews {
  background: var(--bg-dark);
  padding: 4rem 2rem;
}
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.review-item {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  opacity: 0;
  animation: reviewFade 0.8s forwards;
}
.review-item:nth-child(1) {
  animation-delay: 0.2s;
}
.review-item:nth-child(2) {
  animation-delay: 0.4s;
}
.review-item:nth-child(3) {
  animation-delay: 0.6s;
}
.review-item:nth-child(4) {
  animation-delay: 0.8s;
}
@keyframes reviewFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.review-item blockquote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.review-item cite {
  display: block;
  text-align: right;
  color: var(--highlight);
}

.game-cta {
  background: linear-gradient(135deg, #0099ff, #39ff14);
  padding: 5rem 2rem;
  text-align: center;
  color: #000;
}
.game-cta h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.game-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.game-cta .btn-primary {
  background: #000;
  color: #39ff14;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-cta .btn-primary:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .game-hero__title {
    font-size: 2.5rem;
  }
  .game-hero__tagline {
    font-size: 1rem;
  }
  .game-description,
  .game-specs,
  .game-reviews,
  .game-cta {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

.sub-hero {
  position: relative;
  height: 60vh;
  background: url("../assets/images/gallery6.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sub-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  animation: overlayIn 1s ease forwards;
}
@keyframes overlayIn {
  to {
    background: rgba(0, 0, 0, 0.8);
  }
}
.sub-hero__content {
  position: relative;
  text-align: center;
  color: var(--text-light);
  opacity: 0;
  transform: scale(0.9);
  animation: heroContent 0.8s 0.5s ease forwards;
}
@keyframes heroContent {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.sub-hero__title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}
.sub-hero__content p {
  font-size: 1.2rem;
  margin: 0.5rem 0 1.5rem;
  color: var(--highlight);
}
.sub-hero__icon {
  width: 80px;
  animation: iconBounce 2s infinite;
}
@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.sub-details {
  background: var(--bg-light);
  color: var(--text-light);
  padding: 4rem 2rem;
}
.sub-details p {
  max-width: 700px;
  margin: 1rem auto;
  line-height: 1.6;
}

.sub-features {
  background: var(--bg-dark);
  padding: 4rem 2rem;
}
.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.feature-card {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 16px var(--highlight);
}
.feature-card img {
  width: 50px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 4px var(--accent));
}
.feature-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.sub-compare {
  background: var(--bg-light);
  padding: 4rem 2rem;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.95rem;
}
.compare-table th {
  background: var(--bg-dark);
  color: var(--highlight);
}
.highlight-col {
  background: var(--accent);
  color: #eee;
  font-weight: 600;
}
@media (prefers-reduced-motion: no-preference) {
  .compare-table tr:hover td {
    animation: rowGlow 1s infinite alternate;
  }
  @keyframes rowGlow {
    from {
      box-shadow: 0 0 0 rgba(255, 153, 0, 0);
    }
    to {
      box-shadow: 0 0 12px rgba(255, 153, 0, 0.6);
    }
  }
}

.sub-cta {
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.sub-cta h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.sub-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.sub-cta .btn-primary {
  background: #000;
  color: var(--text-light);
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sub-cta .btn-primary:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .sub-hero__title {
    font-size: 2.25rem;
  }
  .sub-hero__icon {
    width: 60px;
  }
  .sub-details,
  .sub-features,
  .sub-compare,
  .sub-cta {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .compare-table th,
  .compare-table td {
    font-size: 0.85rem;
    padding: 0.5rem;
  }
}

.contact-section {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 2rem;
  text-align: center;
}

.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;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  justify-items: center;
}

.contact-item {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--highlight);
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.contact-item h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  line-height: 1.4;
}
.contact-item a {
  color: var(--highlight);
  text-decoration: none;
  font-weight: 600;
}
.contact-item a:hover {
  text-decoration: underline;
}

.contact-cta {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.contact-cta h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact-cta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.contact-cta .btn-primary {
  background: var(--accent);
  color: #39ff14;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-cta .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@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: 1rem;
  }
  .contact-cta {
    padding: 2rem 1rem;
  }
  .contact-cta h3 {
    font-size: 1.5rem;
  }
  .contact-cta p {
    font-size: 0.9rem;
  }
}

.title_background {
  background: var(--bg-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.title_background .container {
  text-align: center;
}
.title_background .title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin: 0;
}
.title_background .title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--highlight);
  border-radius: 2px;
}

.text_background {
  background: var(--bg-light);
  padding: 3rem 0;
}
.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}
.text_background .text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.75;
  white-space: pre-wrap;
  text-align: justify;
  padding: 0 1rem;
  position: relative;
}
.text_background .text::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 1rem;
  font-size: 4rem;
  color: var(--accent);
  font-family: serif;
  line-height: 1;
  transform: translateY(-20%);
}
.text_background .text::after {
  content: "”";
  position: absolute;
  bottom: 0;
  right: 1rem;
  font-size: 4rem;
  color: var(--accent);
  font-family: serif;
  transform: translateY(20%);
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 2rem;
  }
  .title_background .title::after {
    width: 60px;
    bottom: -0.4rem;
  }
  .text_background {
    padding: 2rem 0;
  }
  .text_background .text {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .text_background .text::before,
  .text_background .text::after {
    font-size: 3rem;
  }
}
