:root {
  --neon-red: #ff2a2a;
  --deep-black: #080808;
  --metal-grey: #555555;
  --light-grey: #e0e0e0;
  --bright-white: #ffffff;
}

body {
  background: var(--deep-black);
  color: var(--light-grey);
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Cyberpunk Grid Overlay */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 49%, rgba(255, 42, 42, 0.1) 50%, transparent 51%),
              linear-gradient(transparent 49%, rgba(255, 42, 42, 0.1) 50%, transparent 51%);
  background-size: 50px 50px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* Header Navigation */
.navbar {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--neon-red);
  padding: 1rem 0;
  z-index: 1000;
  position: fixed;
  width: 100%;
}

.navbar-brand, .nav-link {
  color: var(--bright-white) !important;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  text-shadow: 0 0 10px var(--neon-red);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-brand:hover, .nav-link:hover {
  color: var(--neon-red) !important;
  text-shadow: 0 0 15px var(--neon-red);
}

/* Navbar Logo Styling */
.navbar-logo {
  max-height: 80px; /* Adjust based on your logo's dimensions */
  transition: filter 0.3s ease;
}

.navbar-logo:hover {
  filter: drop-shadow(0 0 10px var(--neon-red));
}

/* Responsive adjustments for the logo */
@media (max-width: 768px) {
  .navbar-logo {
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    max-height: 50px;
  }
}

.dropdown-menu {
  background: rgba(8, 8, 8, 0.95);
  border: 1px solid var(--neon-red);
  border-radius: 8px;
  padding: 0;
}

.dropdown-item {
  color: var(--bright-white);
  text-shadow: 0 0 5px var(--neon-red);
  padding: 0.75rem 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background: var(--neon-red);
  color: var(--deep-black);
}

/* General Section Styling */
.section {
  padding: 7rem 1rem;
  background: var(--deep-black);
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--metal-grey);
  min-height: 60vh;
  width: 100%;
  display: block;
  opacity: 1;
  overflow: visible;
}

.section h2 {
  color: var(--bright-white);
  font-size: 3.5rem;
  text-shadow: 0 0 20px var(--neon-red);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* Welcome Section */
#welcome {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('path-to-welcome-bg-image.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}

.welcome-content {
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  background: rgba(8, 8, 8, 0.7);
  border: none;
  border-radius: 12px;
}

.welcome-content h1 {
  font-size: 5rem;
  color: var(--bright-white);
  text-shadow: 0 0 25px var(--neon-red);
  margin-bottom: 1.5rem;
}

.welcome-content p {
  font-size: 1.8rem;
  color: var(--bright-white);
  text-shadow: 0 0 8px var(--neon-red);
  font-weight: 400;
}

/* Canvas for Triangle and Particles */
#triangle-canvas, #particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#triangle-canvas {
  z-index: 2;
}

#particle-canvas {
  z-index: 1;
}

/* About Us Section */
#about {
  background-image: url('path-to-about-bg-image.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--neon-red);
}

.about-block {
  background: rgba(8, 8, 8, 0.9);
  border: 2px solid var(--neon-red);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  color: var(--bright-white);
  text-shadow: 0 0 5px var(--neon-red);
  opacity: 1;
  transform: scale(1);
  position: relative;
  z-index: 1;
}

.about-block h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--neon-red);
}

/* 6-D Process Section */
#six-d-process {
  background: var(--deep-black);
}

.process-block {
  background: var(--neon-red);
  color: var(--deep-black);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 1;
  transform: scale(1);
  position: relative;
  z-index: 1;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s ease;
  cursor: pointer; /* Added for better UX on touch devices */
}

.process-block:hover {
  box-shadow: 0 0 20px var(--neon-red);
}

.process-block h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.process-block p {
  font-size: 0.9rem;
  color: var(--light-grey);
  font-weight: 400;
  word-wrap: break-word;
  margin: 0;
  padding: 0 0.5rem;
  text-shadow: 0 0 3px var(--neon-red);
  line-height: 1.4;
}

.process-expandable {
  max-height: 0;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.95);
  border: 2px solid var(--neon-red);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 0 1.5rem;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  opacity: 0;
  width: 100%;
}

.process-block:hover .process-expandable,
.process-block.active .process-expandable {
  max-height: 300px;
  padding: 1.5rem;
  opacity: 1;
  box-shadow: 0 0 15px var(--neon-red);
  overflow-y: auto;
}

.process-expandable p {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlideIn 0.3s ease forwards;
}

/* Responsive adjustments for process-expandable */
@media (max-width: 768px) {
  .process-block:hover .process-expandable,
  .process-block.active .process-expandable {
    max-height: 400px;
  }
}

@media (max-width: 576px) {
  .process-block:hover .process-expandable,
  .process-block.active .process-expandable {
    max-height: 500px;
  }
}

/* Services Section with Animated Expandable Content */
#services {
  background: var(--deep-black);
}

.category-card {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--neon-red);
  color: var(--bright-white);
  border-radius: 12px;
  margin-bottom: 2rem;
  opacity: 1;
  transform: scale(0.95);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
}

.category-card.visible {
  transform: scale(1);
  box-shadow: 0 0 15px var(--neon-red);
}

.category-card:hover {
  box-shadow: 0 0 20px var(--neon-red);
}

.category-card h3 {
  font-size: 1.8rem;
  color: var(--bright-white);
  text-shadow: 0 0 10px var(--neon-red);
  font-weight: 500;
  margin-bottom: 0;
}

.services-expandable {
  max-height: 0;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.95);
  border: 2px solid var(--neon-red);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 0 1.5rem;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  opacity: 0;
}

.services-expandable.expanded {
  padding: 1.5rem;
  opacity: 1;
  box-shadow: 0 0 15px var(--neon-red);
  overflow: hidden;
}

.services-expandable .service-item {
  margin: 1rem 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlideIn 0.3s ease forwards;
}

.services-expandable.expanded .service-item:nth-child(1) { animation-delay: 0.1s; }
.services-expandable.expanded .service-item:nth-child(2) { animation-delay: 0.2s; }
.services-expandable.expanded .service-item:nth-child(3) { animation-delay: 0.3s; }
.services-expandable.expanded .service-item:nth-child(4) { animation-delay: 0.4s; }
.services-expandable.expanded .service-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
    width: 40px;
  }
  50% {
    box-shadow: 0 0 15px var(--neon-red), 0 0 30px var(--neon-red);
    width: 50px;
  }
  100% {
    box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
    width: 40px;
  }
}

.service-item .service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bright-white);
  text-shadow: 0 0 8px var(--neon-red);
  margin-bottom: 0.5rem;
  position: relative;
}

.service-item .service-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
  animation: pulseGlow 1.5s infinite ease-in-out;
}

.service-item .service-description {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--light-grey);
  text-shadow: 0 0 3px var(--neon-red);
  line-height: 1.4;
}

/* Contact Form Section */
#contact {
  background-image: url('path-to-contact-bg-image.jpg');
  background-size: cover;
  background-position: center;
}

.contact-card {
  background: rgba(8, 8, 8, 0.9);
  border: 2px solid var(--neon-red);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.form-control, .form-select {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid var(--neon-red);
  font-size: 1rem;
}

.form-control:focus, .form-select:focus, .form-control:active, .form-select:active {
  background: rgba(8, 8, 8, 0.9) !important;
  color: var(--bright-white) !important;
  border: 1px solid var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red);
}

.form-control:focus::placeholder, .form-select:focus::placeholder {
  color: var(--light-grey) !important;
  opacity: 0.7;
}

.form-label {
  color: var(--bright-white);
  text-shadow: 0 0 8px var(--neon-red);
  z-index: 2;
  font-size: 1rem;
}

.card-img-top {
  margin-bottom: 3em;
}

.btn-neon {
  background: transparent;
  border: 2px solid var(--bright-white);
  color: var(--bright-white);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  transition: all 0.4s ease;
  border-radius: 6px;
  text-shadow: 0 0 5px var(--neon-red);
}

.btn-neon:hover {
  background: var(--neon-red);
  color: var(--deep-black);
  box-shadow: 0 0 30px var(--neon-red);
  border-color: var(--neon-red);
}

/* Modal Styling */
.modal-content {
  background: rgba(8, 8, 8, 0.97);
  border: 2px solid var(--neon-red);
  color: var(--bright-white);
  border-radius: 10px;
  z-index: 1001;
}

.modal-header, .modal-body, .modal-footer {
  border-color: var(--metal-grey);
}

.modal-title {
  color: var(--bright-white);
  text-shadow: 0 0 10px var(--neon-red);
  font-weight: 500;
}

.btn-close-white {
  filter: invert(1);
}

/* Footer */
footer {
  background: rgba(8, 8, 8, 0.98);
  color: var(--bright-white);
  padding: 3rem 1rem;
  border-top: 2px solid var(--neon-red);
  text-shadow: 0 0 8px var(--neon-red);
  text-align: center;
  font-size: 1.2rem;
  position: relative;
  z-index: 5;
  width: 100%;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a, .social-icons a {
  color: var(--bright-white);
  text-shadow: 0 0 5px var(--neon-red);
  margin: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover, .social-icons a:hover {
  color: var(--neon-red);
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icons img {
  width: 30px;
  margin: 0.5rem;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-icons img:hover {
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(340deg) saturate(5);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section {
    padding: 6rem 1rem;
  }
  .section h2 {
    font-size: 3rem;
  }
  .welcome-content h1 {
    font-size: 4.5rem;
  }
  .welcome-content p {
    font-size: 1.6rem;
  }
  .about-block h3 {
    font-size: 1.8rem;
  }
  .category-card h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 5rem 1rem;
  }
  .section h2 {
    font-size: 2.8rem;
  }
  .navbar-brand, .nav-link {
    font-size: 1.1rem;
  }
  .welcome-content h1 {
    font-size: 4rem;
  }
  .welcome-content p {
    font-size: 1.6rem;
  }
  .about-block {
    padding: 1.5rem;
  }
  .about-block h3 {
    font-size: 1.6rem;
  }
  .process-block {
    min-height: 140px;
    padding: 1.2rem;
  }
  .process-block h3 {
    font-size: 1.4rem;
  }
  .process-block p {
    font-size: 0.85rem;
  }
  .category-card h3 {
    font-size: 1.5rem;
  }
  .service-item .service-title {
    font-size: 1.1rem;
  }
  .service-item .service-description {
    font-size: 0.9rem;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .btn-neon {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 1rem;
    min-height: auto;
  }
  .section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .navbar-brand, .nav-link {
    font-size: 1rem;
  }
  .dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
  }
  #welcome {
    height: auto;
    padding: 6rem 1rem;
  }
  .welcome-content {
    padding: 1.5rem;
    max-width: 100%;
  }
  .welcome-content h1 {
    font-size: 3rem;
  }
  .welcome-content p {
    font-size: 1.4rem;
  }
  .about-block {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .about-block h3 {
    font-size: 1.4rem;
  }
  .about-block p {
    font-size: 0.9rem;
  }
  .process-block {
    min-height: 120px;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  .process-block h3 {
    font-size: 1.3rem;
  }
  .process-block p {
    font-size: 0.85rem;
  }
  .category-card {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .category-card h3 {
    font-size: 1.4rem;
  }
  .service-item .service-title {
    font-size: 1rem;
  }
  .service-item .service-description {
    font-size: 0.85rem;
  }
  .contact-card {
    padding: 1.2rem;
  }
  .form-control, .form-select {
    font-size: 0.9rem;
  }
  .form-label {
    font-size: 0.9rem;
  }
  .btn-neon {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
  footer {
    padding: 2rem 1rem;
  }
  footer p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 3rem 0.5rem;
  }
  .section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .navbar-brand, .nav-link {
    font-size: 0.9rem;
  }
  .dropdown-menu {
    max-height: 250px;
  }
  .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  #welcome {
    padding: 5rem 0.5rem;
  }
  .welcome-content {
    padding: 1rem;
  }
  .welcome-content h1 {
    font-size: 2.5rem;
  }
  .welcome-content p {
    font-size: 1.2rem;
  }
  .about-block {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .about-block h3 {
    font-size: 1.2rem;
  }
  .about-block p {
    font-size: 0.85rem;
  }
  .process-block {
    min-height: 100px;
    padding: 0.8rem;
    margin-bottom: 1rem;
  }
  .process-block h3 {
    font-size: 1.2rem;
  }
  .process-block p {
    font-size: 0.8rem;
  }
  .category-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .category-card h3 {
    font-size: 1.2rem;
  }
  .service-item .service-title {
    font-size: 0.9rem;
  }
  .service-item .service-description {
    font-size: 0.8rem;
  }
  .contact-card {
    padding: 1rem;
  }
  .form-control, .form-select {
    font-size: 0.85rem;
  }
  .form-label {
    font-size: 0.85rem;
  }
  .btn-neon {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  .modal-body img {
    max-height: 200px;
    object-fit: cover;
  }
  .modal-body p {
    font-size: 0.85rem;
  }
  footer {
    padding: 1.5rem 0.5rem;
  }
  footer p {
    font-size: 0.9rem;
  }
  .social-icons img {
    width: 25px;
  }
}

/* Projects Page Styles */
#projects-hero {
  background: linear-gradient(135deg, rgba(255, 42, 42, 0.1) 0%, rgba(8, 8, 8, 0.8) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#projects-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 0 0 30px var(--neon-red);
  z-index: 10;
  position: relative;
  margin-bottom: 1rem;
}

#projects-hero p {
  font-size: 1.5rem;
  z-index: 10;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 42, 42, 0.5);
}

#projects-gallery {
  padding: 4rem 0;
}

#projects-gallery h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
  text-shadow: 0 0 20px var(--neon-red);
}

.project-card-large {
  background: rgba(85, 85, 85, 0.15);
  border: 2px solid var(--neon-red);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.project-card-large:hover {
  box-shadow: 0 0 30px rgba(255, 42, 42, 0.6);
  transform: translateY(-10px);
}

.project-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.5);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card-large:hover .project-image img {
  transform: scale(1.05);
}

.project-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card {
  background: rgba(85, 85, 85, 0.15);
  border: 2px solid var(--neon-red);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.2), transparent);
  transition: left 0.3s ease;
}

.project-card:hover {
  background: rgba(85, 85, 85, 0.3);
  box-shadow: 0 0 30px rgba(255, 42, 42, 0.6);
  transform: translateY(-10px);
}

.project-card:hover::before {
  left: 100%;
}

.project-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--neon-red);
}

.project-header h3 {
  color: var(--neon-red);
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 0 0 10px var(--neon-red);
}

.project-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content p {
  color: var(--light-grey);
  margin-bottom: 1.5rem;
  flex: 1;
}

.project-link {
  color: var(--neon-red);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.project-link:hover {
  text-shadow: 0 0 10px var(--neon-red);
  transform: translateX(5px);
}

#projects-cta {
  background: linear-gradient(135deg, rgba(255, 42, 42, 0.15) 0%, rgba(8, 8, 8, 0.9) 100%);
  padding: 3rem 0;
  text-align: center;
}

#projects-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--neon-red);
}

#projects-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--light-grey);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--neon-red);
  color: var(--deep-black);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 42, 42, 0.5);
}

.cta-button:hover {
  background: #ff5555;
  box-shadow: 0 0 40px rgba(255, 42, 42, 0.8);
  transform: scale(1.05);
}

/* Game Details Page Styles */
#game-hero {
  background: linear-gradient(135deg, rgba(255, 42, 42, 0.15) 0%, rgba(8, 8, 8, 0.9) 100%);
  padding: 8rem 0 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
}

.game-hero-image {
  flex: 0 0 40%;
}

.game-hero-image img {
  width: 100%;
  height: auto;
  border: 2px solid var(--neon-red);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 42, 42, 0.5);
}

.game-hero-text {
  flex: 1;
}

.game-hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 0 0 30px var(--neon-red);
  margin-bottom: 1rem;
}

.game-tagline {
  font-size: 1.5rem;
  color: var(--light-grey);
  text-shadow: 0 0 10px rgba(255, 42, 42, 0.5);
}

#game-details {
  padding: 4rem 0;
}

.details-block {
  background: rgba(85, 85, 85, 0.1);
  border-left: 4px solid var(--neon-red);
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.details-block h2 {
  color: var(--neon-red);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px var(--neon-red);
}

.details-block p {
  color: var(--light-grey);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  color: var(--light-grey);
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
}

.features-list li::before {
  content: '▸';
  color: var(--neon-red);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255, 42, 42, 0.2);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--neon-red);
  font-weight: 600;
  padding: 1rem 1rem 1rem 0;
  width: 30%;
}

.specs-table td {
  color: var(--light-grey);
  padding: 1rem;
}

.sidebar-widget {
  background: rgba(85, 85, 85, 0.15);
  border: 1px solid var(--neon-red);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  color: var(--neon-red);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px var(--neon-red);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 42, 42, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  color: var(--neon-red);
  font-weight: 600;
}

.info-value {
  color: var(--light-grey);
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

.gallery-preview img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border: 1px solid var(--neon-red);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-preview img:hover {
  box-shadow: 0 0 15px rgba(255, 42, 42, 0.6);
  transform: scale(1.05);
}

.widget-button {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0.8rem;
  background: var(--neon-red);
  color: var(--deep-black);
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
}

.widget-button:hover {
  background: #ff5555;
  box-shadow: 0 0 15px rgba(255, 42, 42, 0.6);
  transform: translateY(-2px);
  color: var(--deep-black);
}

@media (max-width: 768px) {
  .game-hero-content {
    flex-direction: column;
    gap: 2rem;
  }

  .game-hero-image {
    flex: 0 0 100%;
  }

  .game-hero-text h1 {
    font-size: 2.5rem;
  }

  .game-tagline {
    font-size: 1.2rem;
  }
}

/* Privacy Policy Modal Styles */
.privacy-modal-content {
  background: rgba(8, 8, 8, 0.95);
  border: 1px solid var(--neon-red);
  color: var(--light-grey);
}

.privacy-modal-content .modal-header {
  border-bottom: 1px solid var(--neon-red);
}

.privacy-modal-content .modal-title {
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--neon-red);
  font-weight: 700;
}

.privacy-modal-content .modal-body {
  color: var(--light-grey);
  font-size: 0.95rem;
  line-height: 1.6;
}

.privacy-modal-content h6 {
  color: var(--neon-red);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 8px rgba(255, 42, 42, 0.5);
  font-weight: 600;
}

.privacy-modal-content h6:first-child {
  margin-top: 0;
}

.privacy-modal-content p {
  margin-bottom: 1rem;
}

.privacy-modal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-modal-content li {
  margin-bottom: 0.5rem;
  color: var(--light-grey);
}

.policy-date {
  font-style: italic;
  color: var(--metal-grey);
  margin-bottom: 1.5rem;
}

.privacy-modal-content .modal-footer {
  border-top: 1px solid var(--neon-red);
}

.privacy-modal-content .btn-close {
  filter: brightness(1.2);
}

/* Privacy Policy Page Styles */
#privacy-hero {
  background: linear-gradient(135deg, rgba(255, 42, 42, 0.15) 0%, rgba(8, 8, 8, 0.9) 100%);
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

#privacy-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 0 0 30px var(--neon-red);
  z-index: 10;
  position: relative;
  margin-bottom: 1rem;
}

#privacy-hero p {
  font-size: 1.3rem;
  z-index: 10;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 42, 42, 0.5);
}

#privacy-content {
  padding: 3rem 0;
  min-height: 80vh;
}

.privacy-document {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(85, 85, 85, 0.05);
  border: 1px solid var(--neon-red);
  border-radius: 8px;
  padding: 3rem;
}

.policy-date {
  font-style: italic;
  color: var(--metal-grey);
  margin-bottom: 2rem;
  text-align: center;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: var(--neon-red);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 42, 42, 0.5);
}

.policy-section p {
  color: var(--light-grey);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-section li {
  color: var(--light-grey);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.back-link {
  margin-top: 3rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--neon-red);
}

.back-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--neon-red);
  color: var(--deep-black);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: #ff5555;
  box-shadow: 0 0 15px rgba(255, 42, 42, 0.6);
  transform: translateY(-2px);
  color: var(--deep-black);
}