/* General Reset */
* {
  margin: 0;
  padding: 0;
 
  /* font-family: 'Arial', sans-serif; */
}

body {
  background: #0a0a0a00;
  color: #fff;
  overflow-x: hidden;
}

/* Hero: fixed background video with scroll zoom */
.hero-section1 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 110px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  transform: smooth; /* Prevent transforms that break fixed positioning */
}



.hero-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
}

/* Preloader */

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
















/* Navbar */
.navbar {
  background-color: #161616;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  height: 25px;
  max-width: 100%;
  position: fixed;
  top: -100px; /* Hide initially for animation */
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.8s ease-out forwards;
}

/* Keyframe for slide-in */
@keyframes slideDown {
  from {
    top: -100px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* Logo */
.logo img {
  height: 30px;
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #aaa;
}

.arrow {
  margin-left: 4px;
  font-size: 14px;
}

/* Animated Button */
.login-btn {
  background-color: #d35400;
  color: white;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}



.dp-wrapper {
  position: relative;
  cursor: pointer;
}

.dp {
  width: 40px;
  height: 40px;
 
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  border-radius: 50%;
  
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  overflow: hidden;
}
.imgdp {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover; 
  display: block;
}



.dp-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  box-shadow: 0 8px 12px rgba(0,0,0,0.5);
  
  flex-direction: column;
  min-width: 150px;
  z-index: 1000;
  padding: 5px 0;
}

.dp-dropdown button {
  background: none;
  border: none;
  padding: 10px 16px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}

.dp-dropdown button:hover {
  background-color: #333;
}



/* 🔸 Animated Background on Hover */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #3e3e3e, #b1b1b1, #000000);
  background-size: 100% 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.navbar:hover::before {
  animation: navSweep 3s ease-out forwards;
  opacity: 0.15;
}

/* Background Sweep Animation */
@keyframes navSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .game-section, .hero, .pricing-container {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .game-section, .hero, .pricing-container {
    padding-top: 80px;
  }
}


/* Hamburger (Mobile Only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1101;
}
.nav-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Slide-out Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 220px;
  background: #161616;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  gap: 20px;
  transition: right 0.4s ease-in-out;
  z-index: 1100;
}
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-menu a:hover {
  color: #f97316;
  padding-left: 8px;
}

/* Active states */
.mobile-menu.active {
  right: 0;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Responsive control */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}








.comment-actions span:hover {
  background: #292929;
  color: #ffcc00;
  border-color: #ffcc00;
  box-shadow: 0 0 10px #ffcc00;
}

.cancel-reply-btn {
  background: #333;
  color: #ffcc00;
  border: 1px solid #555;
  margin-top: 10px; /* Add some space */
}

.cancel-reply-btn:hover {
  background: #444;
  color: #fff;
}

.comment-controls {
  max-width: 700px;
  margin: 1.5rem auto -0.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.comment-controls label {
  font-size: 0.9rem;
  color: #aaa;
}

#sortComments {
  background: #222;
  color: #ffcc00;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 5px 8px;
  cursor: pointer;
}

.replies-container {
  margin-left: 40px; /* Indent replies */
  border-left: 2px solid #333;
  padding-left: 15px;
}

.reply-card {
  margin-top: 1rem;
  border-color: #4a4a4a; /* Subtler border for replies */
  box-shadow: 0 0 10px #333;
}

.reply-indicator {
  margin-right: 8px;
  color: #aaa;
  font-weight: normal;
}










/* Advanced Background Animation with Glow */
/* Advanced Background Animation */
.background-animation {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(-45deg, #1f1e2834, #00000047, #3636366a, #00000029, #3e3e3e33, #00000037);
  background-size: 600% 600%;
  animation: gradientShift 20s ease-in-out infinite;
  z-index: -1;
  filter: blur(0);
  opacity: 0.9;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}



/* Hero Section */
.hero-section1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 70vh;
  text-align: center;
  padding-top: 5rem;
}
.hero-section1 h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-section1 p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


/* Features Section */
.features-section {
  background-image: url('../images/');
  background-size: cover;
  background-position: center;
  align-items: center;
  position: relative;
  filter: blur(0);
  padding: clamp(3rem, 6vw, 6rem) 2rem;
  align-items: center;
  overflow: hidden;
  
}
.features-section::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 240px;
  height: 240px;
  background: conic-gradient(from 180deg at 50% 50%, rgba(65, 65, 65, 0.28), rgba(41, 41, 41, 0.18), rgba(85, 85, 85, 0.28));
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
  transform: translateZ(0);
}
.features-section h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.25rem;
}
.features-section .feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
    text-align: center;

}
.feature-card {
  position: relative;
  background: rgba(17, 17, 17, 0.66);
  border: 1px solid rgba(120, 120, 120, 0.3);
  border-radius: 16px;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform, box-shadow;
  overflow: hidden;
    text-align: center;

}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(82, 82, 82, 0.5), rgba(45, 45, 45, 0.4));
  mask: 
    linear-gradient(0deg, #000 0%, #000 100%) content-box no-repeat,
    linear-gradient(0deg, #000 0%, #000 100%) border-box no-repeat;
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;

}
.feature-card::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(56, 56, 56, 0.35), transparent 60%);
  filter: blur(24px);
  transform: translateZ(0);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.6);
  box-shadow: 0 18px 40px rgba(255,106,0,0.18), inset 0 0 40px rgba(255,106,0,0.06);
}
.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
}
.feature-card p {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #cfcfcf;
  line-height: 1.65;
  font-size: clamp(0.92rem, 2vw, 1rem);
  margin: 0;
}
.feature-card:hover h3 {
  text-shadow: 0 2px 12px rgba(255,106,0,0.35);
}
@media (max-width: 540px) {
  .features-section {
    padding: 3rem 1rem;
  }
}


/* Reviews Section */
.testimonials {
  padding: 5rem 2rem;
  text-align: center;
}
.reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.review-card {
  background: #111;
  border: 2px solid orange;
  padding: 1rem;
  border-radius: 15px;
  width: 250px;
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
}
.review-card .avatar {
  width: 40px;
  height: 40px;
  background: orange;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-weight: bold;
}
.rev text {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 100px!important;
}
/* Stars Background */
#stars, #stars2, #stars3 {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 20%, rgba(255,255,255,0.08) 1px, transparent 2px), radial-gradient(circle at 75% 60%, rgba(255,255,255,0.06) 1.5px, transparent 3px);
  background-size: 300px 300px, 200px 200px;
  z-index: -1;
  animation: moveStars 200s linear infinite;
}

#stars2 {
  animation: moveStars 400s linear infinite;
  opacity: 0.5;
}

#stars3 {
  animation: moveStars 600s linear infinite;
  opacity: 0.2;
}

@keyframes moveStars {
  from { background-position: 0 0; }
  to { background-position: 10000px 5000px; }
}


/* Section Animations */
section {
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}











.glow-btn {
 background: linear-gradient(90deg, #ff9900, #cc0000);
      color: #fff;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 12px #ff660066;
      margin: 5px;

}
.glow-btn:hover {
   transform: scale(1.05);
      box-shadow: 0 0 22px #ffcc003d;
}







/* Comments Section - Black/Gray Glass Design */

.comments-section {
  position: relative;
  background: #0a0a0a;
  padding: 4rem 2rem;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 20px 20px 0 0;
  border-top: #424242 3px dotted;
  overflow: hidden;
  min-height: 600px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Black/Gray Glass Background */
.holo-comment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(100, 100, 100, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(60, 60, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(80, 80, 80, 0.05) 0%, transparent 40%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  z-index: 0;
  animation: subtleGlow 12s ease-in-out infinite alternate;
  will-change: opacity, filter;
}

@keyframes subtleGlow {
  0% {
    opacity: 1;
    filter: brightness(1) contrast(1);
  }
  50% {
    opacity: 1.05;
    filter: brightness(1.05) contrast(1.02);
  }
  100% {
    opacity: 1;
    filter: brightness(1) contrast(1);
  }
}

/* Main Container - Split Layout - Exact Sizing */
.comment-main-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
  align-items: start;
}

/* Left Panel: Comment Form - Black/Gray Glass - Exact Sizing */
.comment-form-panel {
  background: rgba(25, 25, 25, 0.75);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(150, 150, 150, 0.25);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 420px; /* match grid column to avoid layout overflow */
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow, border-color;
  height: 530px;
}

.comment-form-panel:hover {
  border-color: rgba(200, 200, 200, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 0 80px rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.comment-form-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(150, 150, 150, 0.05) 0%, transparent 70%);
  animation: rotate 25s linear infinite;
  pointer-events: none;
  will-change: transform;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.comment-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Form Styles */
.holo-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.holo-input,
.holo-textarea {
  background: rgba(30, 30, 30, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(150, 150, 150, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: border-color, box-shadow, background;
  box-sizing: border-box;
}

.holo-input::placeholder,
.holo-textarea::placeholder {
  color: rgba(200, 200, 200, 0.6);
}

.holo-input:focus,
.holo-textarea:focus {
  outline: none;
  border-color: rgba(200, 200, 200, 0.6);
  box-shadow: 
    0 0 15px rgba(255, 255, 255, 0.08),
    inset 0 0 10px rgba(255, 255, 255, 0.03);
  background: rgba(35, 35, 35, 0.8);
}

.holo-textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}

.holo-textarea {
  min-height: 120px;
  resize: vertical;
}

.holo-input::placeholder,
.holo-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Rating Container - Black/Gray Glass */
.holo-rating-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 15px;
  background: rgba(25, 25, 25, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(150, 150, 150, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.star-rating {
  display: flex;
  gap: 5px;
  font-size: 1.8rem;
}

.star {
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
}

.star:hover,
.star.hover {
  color: #ffd700;
  transform: scale(1.2);
  text-shadow: 0 0 10px #ffd700;
}

.star.selected {
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

/* Form Buttons */
.holo-form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.holo-btn-cancel {
  flex: 1;
  background: rgba(60, 60, 60, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(150, 150, 150, 0.4);
  border-radius: 8px;
  padding: 10px 18px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, background, border-color;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.holo-btn-cancel:hover {
  background: rgba(80, 80, 80, 0.9);
  border-color: rgba(200, 200, 200, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



.cancel-reply-btn {
  display: none !important;
}

/* Bottom Icons Row */
.comment-form-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(100, 150, 255, 0.2);
}

.icon-item {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
}

.icon-item:hover {
  color: rgba(100, 200, 255, 1);
  transform: scale(1.2);
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.rating-stars-display {
  display: flex;
  gap: 3px;
}

.star-display {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
}

.star-display.filled {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Right Panel: Comments List - Black/Gray Glass - Exact Sizing */
.comment-list-panel {
  background: rgba(20, 20, 20, 0.7);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(150, 150, 150, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.6),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  max-height: 540px;
  overflow-y: auto;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, border-color;
  flex: 1;
  min-width: 0;
}

.comment-list-panel:hover {
  border-color: rgba(180, 180, 180, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.7),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

/* Custom Scrollbar */
.comment-list-panel::-webkit-scrollbar {
  width: 8px;
}

.comment-list-panel::-webkit-scrollbar-track {
  background: rgba(20, 20, 35, 0.5);
  border-radius: 10px;
}

.comment-list-panel::-webkit-scrollbar-thumb {
  background: rgba(100, 150, 255, 0.5);
  border-radius: 10px;
}

.comment-list-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 200, 255, 0.7);
}

/* Comment Controls - Exact Sizing */
.comment-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(150, 150, 150, 0.2);
}

.comment-controls label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.holo-select {
  background: rgba(20, 20, 35, 0.7);
  border: 1px solid rgba(100, 150, 255, 0.4);
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.holo-select:focus {
  outline: none;
  border-color: rgba(100, 200, 255, 0.8);
  box-shadow: 0 0 10px rgba(100, 200, 255, 0.3);
}

/* Comments List Container - Exact Spacing */
.comment-list-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual Comment Card - Black/Gray Glass - Exact Sizing */
.testimonial-card {
  background: rgba(28, 28, 28, 0.85);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 102, 0, 0.18);
  border-radius: 30px;
  padding: 18px 20px  ;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  will-change: transform, border-color, box-shadow;
  opacity: 1;
  transform: translateY(0);
  height: auto;
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: rgba(255, 140, 0, 0.5);
  box-shadow: 0 6px 24px rgba(255, 102, 0, 0.2);
  transform: translateY(-2px);
  
  border: #111111 7px solid;
  transition: display 0.3s will-change;
}

/* Comment Header - Exact Layout */
.comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff6600, #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 140, 0, 0.6);
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.4);
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
  line-height: 1;
}

.avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.6);
  border-color: rgba(255, 165, 0, 0.8);
}

.username {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.timestamp {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(200, 200, 200, 0.6);
  font-weight: 400;
  white-space: nowrap;
  order: 3;
}

/* Comment Text - Exact Sizing */
.comment-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.4;
  margin: 6px 0 8px 0;
  word-wrap: break-word;
}

/* Compact variant: quick class to opt into smaller, denser testimonial cards */
.testimonial-card.compact {
  padding: 6px 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* Fixed reply indicator inside the form panel (keeps form in place) */
.reply-indicator-fixed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  margin-bottom: 8px;
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,140,0,0.12);
  color: #fff;
  border-radius: 8px;
}
.reply-indicator-fixed .reply-indicator {
  color: #ffd88a;
  font-size: 0.95rem;
}
.reply-indicator-fixed .cancel-reply-btn {
  background: transparent;
  border: 1px solid rgba(255,140,0,0.12);
  color: #ffd88a;
  padding: 6px 8px;
  border-radius: 6px;
}

/* Rating Stars in Comment - Yellow/Gold */
.rating-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  align-items: center;
}

.star-icon {
  font-size: 1.1rem;
  color: rgba(150, 150, 150, 0.4);
  transition: all 0.2s ease;
}

.star-icon.filled {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.star-icon.filled.yellow-glow {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Comment Actions */
.comment-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.comment-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
  align-items: center;
}

.comment-actions span,
.comment-actions button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 4px;
  will-change: transform, color;
  position: relative;
  min-width: 28px;
  height: 28px;
  justify-content: center;
  line-height: 1;
}

.comment-actions span:hover,
.comment-actions button:hover {
  background: rgba(150, 150, 150, 0.12);
  color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.comment-actions button:active,
.comment-actions span:active {
  transform: scale(0.95);
}

.like-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.delete-btn {
  color: rgba(255, 100, 100, 0.8);
}

.delete-btn:hover {
  background: rgba(255, 100, 100, 0.15);
  color: rgba(255, 120, 120, 1);
}

.like-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Reply Form Container - Ultra Smooth */
.reply-form-wrapper {
  margin-top: 12px;
  margin-left: 50px;
  padding: 0;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  opacity: 1;
  transform: translateY(0);
}

.reply-form-wrapper .comment-form-panel {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 16px;
}

/* Ultra Smooth Transitions - NO FADE EFFECTS */
.holo-input,
.holo-textarea,
.holo-btn-post,
.holo-btn-cancel,
.testimonial-card,
.comment-actions button,
.comment-actions span,
.avatar,
.username,
.comment-text {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Rating Display - Bottom Row */
.rating-display {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.rating-stars-display {
  display: flex;
  gap: 2px;
  align-items: center;
}

.star-display {
  font-size: 1rem;
  color: rgba(150, 150, 150, 0.4);
  transition: all 0.2s ease;
}

.star-display.filled {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.comment-form-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(150, 150, 150, 0.2);
  flex-wrap: wrap;
}

.icon-item {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-item:hover {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.15);
}

.rating-display .rating-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .comment-main-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }
  
  .comment-form-panel {
    max-width: 100%;
  }
  
  .comment-list-panel {
    max-height: 600px;
  }
  
  .reply-form-wrapper {
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .comments-section {
    padding: 2rem 1rem;
  }
  
  .comment-form-panel,
  .comment-list-panel {
    padding: 1.5rem;
  }
  
  .comment-form-title {
    font-size: 1.4rem;
  }
  
  .comment-form-icons {
    flex-wrap: wrap;
  }
  
  .rating-display {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .comment-actions {
    justify-content: center;
    margin-top: 14px !important;
  }
  .timestamp {
    order: 2;
    margin-left: 0;
    margin-top: 6px !important;
  }
  .comment-form-panel {
  
    width: auto!important;
  }
  .comment-list-panel {
    max-height: 600px;
  }
  
  .reply-form-wrapper {
    margin-left: 0;
  }
}

.comments-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffcc00;
}

/* Featured Titles heading/subtitle styling */
#games .section-header-wrapper {
  margin-top: 80px;
  margin-bottom: 24px;
  padding: 0 16px;
}

#games .section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  margin: 0 0 8px 0;
}

#games .section-subtitle {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: #cfcfcf;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

#games .section-title:hover {
  text-shadow: 0 2px 12px rgba(255, 106, 0, 0.25);
}

@media (max-width: 768px) {
  #games .section-header-wrapper {
    margin-top: 60px;
    margin-bottom: 18px;
  }
  #games .section-title {
    letter-spacing: 0.2px;
  }
  #games .section-subtitle {
    padding: 0 8px;
  }
}

/* Remove glow effects in comments section */
.comments-section .testimonial-card,
.comments-section .star-rating,
.comments-section .avatar {
  box-shadow: none !important;
}

.comments-section .comment-actions span:hover {
  box-shadow: none !important;
  color: #ffcc00;
}

.comments-section input:focus,
.comments-section textarea:focus {
  box-shadow: none !important;
}

.comments-section .rating-stars .star-icon.filled {
  animation: none !important;
  text-shadow: none !important;
}

/* Post Comment button: remove glow */
.comments-section .glow-btn {
  box-shadow: none !important;
  transform: none !important;
  background: linear-gradient(90deg, #ff9900, #cc0000);
}

/* Optional: keep star interaction without glow */
.comments-section .star-rating {
  transition: none !important;
}


/* Form */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: linear-gradient(120deg, #222, #333, #222);
  color: white;
  animation: gradientMove 6s ease infinite;
}

input:focus, textarea:focus {
  box-shadow: 0 0 10px #ff5500;
  outline: none;
}



/* Comment Card */
.comment-grid {
  display: grid;
  gap: 1.5rem;
  padding-top: 2rem;
  margin: 0 auto;
  max-width: 700px;
}

.testimonial-card {
  background: #0c0c0c;
  border: 1px solid rgba(255,85,0,0.18);
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(255,85,0,0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  transform: none;
}

.testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 18px rgba(255,140,0,0.06);
}

/* Header */
.comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.avatar {
  background: #ff5500;
  color: black;
  font-weight: bold;
  padding: 0.5rem;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  box-shadow: 0 0 8px #ffcc00;
}

.username {
  display: none;
}

.timestamp {
  margin-left: auto;
  font-size: 0.8rem;
  color: #999;
  margin-top: -24px;
}

/* Comment Text */
.comment-text {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

/* Actions */
.comment-actions {
  margin-top: 10px;
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
  justify-content: flex-end; 
  margin-top: -40px;
}

.comment-actions span {
  padding: 5px 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #aaa;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.comment-actions span:hover {
  background: #292929;
  color: #ffcc00;
  border-color: #ffcc00;
  box-shadow: 0 0 10px #ffcc00;
}

/* Stars */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 1.5rem;
  color: #444;
  padding: 10px;
  border-radius: 10px;
  background: #111;
  box-shadow: 0 0 10px #ff5500;
  transition: all 0.3s ease;
}

.star-rating .star:hover,
.star-rating .star.hover,
.star-rating .star.selected {
  color: #ffcc00;
  transform: scale(1.2);
}

/* Animations */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Yellow animated stars for rating display */
.rating-stars {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}

.star-icon {
  font-size: 1.5rem;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
}

.star-icon.filled {
  color: #ffcc00;
  animation: glowStar 1.5s ease-in-out infinite alternate;
  text-shadow: 0 0 6px #ffcc00;
}

@keyframes glowStar {
  0% {
    transform: scale(1);
    text-shadow: 0 0 4px #ffcc00, 0 0 8px #ffaa00;
  }
  50% {
    transform: scale(1.15);
    text-shadow: 0 0 12px #ffcc00, 0 0 24px #ffaa00;
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 4px #ffcc00, 0 0 8px #ffaa00;
  }
}

/* Strong compact override for comments area to ensure consistent compact cards */



  .custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
  }

  .modal-content {
    background: linear-gradient(145deg, #111, #1a1a1a);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 25px #ff5500;
    max-width: 400px;
    width: 90%;
    animation: scaleIn 0.3s ease;
  }

  .modal-content h3 {
    margin-bottom: 0.8rem;
    color: #ffcc00;
  }

  .modal-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
  }

  .modal-textarea {
    width: 95%;
    padding: 10px;
    border-radius: 8px;
    background: #222;
    color: #fff;
    border: 1px solid #444;
    margin-bottom: 1rem;
    resize: vertical;
  }

  .modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  .confirm-btn,
  .cancel-btn {
    flex: 1;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .confirm-btn {
    background: linear-gradient(135deg, #ff5500, #ffcc00);
    color: #000;
    box-shadow: 0 0 10px #ff5500;
  }

  .confirm-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ffcc00;
  }

  .cancel-btn {
    background: #333;
    color: #ffcc00;
    border: 1px solid #555;
  }

  .cancel-btn:hover {
    background: #444;
    color: #fff;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  @keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.fade-out {
  animation: fadeOut 0.3s ease forwards;
}













