/* ============================================
   HOT GAMING ZONE - ENHANCED GAMING STYLESHEET
   ============================================ */

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff4444;
  --primary-hover: #ff6666;
  --secondary-color: #ff6b6b;
  --accent-color: #ffaa00;
  --dark-bg: rgba(10, 10, 20, 0.95);
  --light-bg: rgba(20, 20, 40, 0.9);
  --card-bg: rgba(30, 30, 50, 0.95);
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --border-color: #444444;
  --glow-color: rgba(255, 68, 68, 0.5);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background: #0a0a14;
  background-image: 
    radial-gradient(at 20% 30%, rgba(255, 68, 68, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(255, 170, 0, 0.1) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(138, 43, 226, 0.05) 0px, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background: var(--primary-color);
  color: white;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: var(--dark-bg);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 68, 68, 0.1);
  border-bottom: 2px solid rgba(255, 68, 68, 0.2);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-color);
  text-decoration: none;
  text-shadow: 0 0 20px var(--glow-color), 0 0 40px var(--glow-color);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    text-shadow: 0 0 20px var(--glow-color), 0 0 40px var(--glow-color);
  }
  50% {
    text-shadow: 0 0 30px var(--glow-color), 0 0 60px var(--glow-color), 0 0 80px var(--glow-color);
  }
}

.logo:hover {
  transform: scale(1.05);
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 20px var(--glow-color);
}

/* Language Selector */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-btn {
  background: var(--light-bg);
  border: 2px solid rgba(255, 68, 68, 0.3);
  color: var(--text-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.language-btn:hover {
  border-color: var(--primary-color);
  background: rgba(255, 68, 68, 0.1);
  box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
}

.current-lang-flag {
  font-size: 1.2rem;
}

.current-lang-name {
  font-weight: 500;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.language-menu.active + .language-btn .dropdown-arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--card-bg);
  border: 2px solid rgba(255, 68, 68, 0.3);
  border-radius: 15px;
  padding: 0.5rem;
  min-width: 180px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.language-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: var(--text-color);
  font-family: inherit;
  transition: all 0.3s ease;
}

.language-option:hover {
  background: rgba(255, 68, 68, 0.1);
  transform: translateX(5px);
}

.language-option.active {
  background: rgba(255, 68, 68, 0.2);
  border-left: 3px solid var(--primary-color);
}

.lang-flag {
  font-size: 1.3rem;
}

.lang-name {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Hide Google Translate default widget and all UI */
#google_translate_element {
  display: none !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

.goog-te-balloon-frame {
  display: none !important;
}

#goog-gt-tt,
.goog-gt-tt,
.goog-te-balloon-frame div,
.goog-te-ftab,
.goog-te-menu-frame {
  display: none !important;
  visibility: hidden !important;
}

/* Remove Google Translate top spacing */
body {
  top: 0 !important;
  position: static !important;
}

body.translated-ltr {
  top: 0 !important;
  margin-top: 0 !important;
}

/* Hide text highlight from Google Translate */
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* Scrollbar for language menu */
.language-menu::-webkit-scrollbar {
  width: 6px;
}

.language-menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.language-menu::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.language-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
  opacity: 0.3;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 0 40px rgba(255, 68, 68, 0.3);
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
  position: relative;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Game Hero */
.game-hero {
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.game-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 68, 68, 0.2) 0%, transparent 50%);
  animation: pulse 3s ease-in-out infinite;
}

.game-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.game-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
  text-align: center;
}

.value-proposition {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), #cc0000);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 68, 68, 0.6), 0 0 40px rgba(255, 68, 68, 0.4);
  border-color: var(--accent-color);
}

.btn:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.btn-small {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

/* ============================================
   GAME CARDS
   ============================================ */

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.game-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 68, 68, 0.2);
  position: relative;
  animation: fadeInUp 0.6s ease-out backwards;
  animation-delay: calc(var(--animation-order, 0) * 0.1s);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 170, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.game-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 68, 68, 0.3);
  border-color: var(--primary-color);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-image {
  transform: scale(1.1);
}

.game-card-content {
  padding: 1.5rem;
}

.game-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--glow-color);
}

.game-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-item:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
  animation: none;
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SECTIONS
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

section.container {
  position: relative;
  z-index: 5;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  box-shadow: 0 0 20px var(--glow-color);
}

.text-center {
  text-align: center;
}

/* ============================================
   GAMEPLAY VIDEO
   ============================================ */

.gameplay-video {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 68, 68, 0.2);
  border: 3px solid rgba(255, 68, 68, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.gameplay-video:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 68, 68, 0.4);
  transform: scale(1.02);
}

/* ============================================
   SCREENSHOTS GALLERY
   ============================================ */

.screenshots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: flex-start;
}

.screenshot-item {
  flex: 0 1 calc(50% - 1rem);
  max-width: 450px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 68, 68, 0.2);
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  background: var(--card-bg);
}

.screenshot-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.2), rgba(255, 170, 0, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.screenshot-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 68, 68, 0.3);
  border-color: var(--primary-color);
}

.screenshot-item:hover::before {
  opacity: 1;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.screenshot-item:hover img {
  transform: scale(1.08);
}

/* Center screenshots when less than 4 */
.screenshots-grid:has(.screenshot-item:nth-child(1):nth-last-child(1)),
.screenshots-grid:has(.screenshot-item:nth-child(2):nth-last-child(1)),
.screenshots-grid:has(.screenshot-item:nth-child(3):nth-last-child(1)) {
  justify-content: center;
}

@media (max-width: 992px) {
  .screenshot-item {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-item {
  background: var(--light-bg);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--text-color);
  transition: all 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: rgba(255, 68, 68, 0.1);
  color: var(--primary-color);
}

.faq-question span:last-child {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-secondary);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* ============================================
   SIMILAR GAMES
   ============================================ */

.similar-games {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.similar-game-link {
  background: var(--light-bg);
  color: var(--text-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.similar-game-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 68, 68, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.similar-game-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 68, 68, 0.3);
}

.similar-game-link:hover::before {
  width: 200%;
  height: 200%;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveGrid 15s linear infinite;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--dark-bg);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid rgba(255, 68, 68, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links a:hover::after {
  width: 100%;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-media a {
  display: inline-block;
  transition: all 0.3s ease;
}

.social-media img {
  width: 32px;
  height: 32px;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}

.social-media a:hover img {
  filter: brightness(1.2);
  transform: translateY(-5px) scale(1.1);
}

.social-link {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px) rotate(10deg) scale(1.2);
}

footer p {
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 2rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .game-hero h1 {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .game-hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 3rem 1rem;
  }
}

/* ============================================
   LOADING ANIMATIONS
   ============================================ */

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
  display: none;
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a14;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), #8a2be2);
  border-radius: 10px;
  border: 2px solid #0a0a14;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-hover), #9932cc);
}
