:root {
  /* New vibrant gaming color scheme - optimized for engagement */
  --primary: #ff6b35;        /* Energetic orange */
  --primary-dark: #e85a2a;
  --primary-light: #ff8c61;
  --secondary: #6c5ce7;      /* Electric purple */
  --secondary-dark: #5b4bcf;
  --accent: #00d4ff;         /* Cyber blue */
  --accent-dark: #00b8e6;
  --success: #00f2aa;        /* Neon green */
  
  --bg-dark: #0f0f1e;
  --bg-darker: #08081a;
  --bg-card: rgba(28, 28, 48, 0.85);
  --bg-card-hover: rgba(40, 40, 65, 0.95);
  --text-light: #f8f9fa;
  --text-muted: #b4b4c8;
  --header-h: 80px;
  
  /* Energetic gradients */
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --gradient-secondary: linear-gradient(135deg, #6c5ce7 0%, #a55eea 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  --gradient-gaming: linear-gradient(135deg, #ff6b35 0%, #6c5ce7 50%, #00d4ff 100%);
  --gradient-hero: linear-gradient(135deg, rgba(108, 92, 231, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%);
  
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(0, 212, 255, 0.4);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  background-image: 
    radial-gradient(at 20% 10%, rgba(108, 92, 231, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255, 107, 53, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 90%, rgba(0, 212, 255, 0.06) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-light);
  padding-top: var(--header-h);
  min-height: 100vh;
  line-height: 1.6;
}

/* Header - Gaming Style */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(15, 15, 30, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

header:hover {
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
  transition: all 0.4s ease;
}

.logo-img:hover {
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.9));
}

header h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.2rem;
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(108, 92, 231, 0.7));
  }
}

/* Search Bar - Enhanced */
.search-bar {
  flex: 1;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 0.85rem 1.2rem 0.85rem 3.5rem;
  border: 2px solid rgba(108, 92, 231, 0.4);
  border-radius: 50px;
  background: rgba(28, 28, 48, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.search-bar input::placeholder {
  color: var(--text-muted);
  font-weight: 500;
}

.search-bar input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 
    0 0 25px rgba(255, 107, 53, 0.3),
    inset 0 2px 8px rgba(0, 0, 0, 0.3);
  background: rgba(28, 28, 48, 1);
  transform: translateY(-1px);
}

.search-bar::before {
  content: '🔍';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
  opacity: 0.7;
}

.search-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.search-toggle:hover {
  transform: scale(1.3) rotate(15deg);
  filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.8));
}

/* Mobile Search */
@media (max-width: 768px) {
  header {
    padding: 0 1rem;
  }

  header h1 {
    font-size: 0.9rem;
  }

  .search-bar {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(15, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    max-width: 100%;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  .search-bar.active {
    display: block;
    animation: slideDown 0.3s ease;
  }

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

  .search-toggle {
    display: block;
  }
}

/* Section Titles */
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 3rem;
  margin-top: 3rem;
  text-align: center;
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: var(--gradient-gaming);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Hero Section - Attention Grabbing */
.hero {
  padding: 8rem 2rem 5rem;
  background: url('https://wallpapercave.com/uwp/uwp4616796.jpeg') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(15, 15, 30, 0.92) 0%, 
    rgba(108, 92, 231, 0.85) 40%,
    rgba(255, 107, 53, 0.8) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
  background: rgba(15, 15, 30, 0.7);
  backdrop-filter: blur(15px);
  padding: 3.5rem 2.5rem;
  border-radius: 30px;
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent)) 1;
  box-shadow: 
    0 10px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 950px;
}

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

.hero-content h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-shadow: 
    0 0 20px rgba(255, 107, 53, 1),
    0 0 40px rgba(108, 92, 231, 0.8),
    3px 3px 6px rgba(0, 0, 0, 0.9);
  filter: drop-shadow(0 5px 10px rgba(255, 107, 53, 0.4));
  animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% {
    text-shadow: 
      0 0 20px rgba(255, 107, 53, 1),
      0 0 40px rgba(108, 92, 231, 0.8),
      3px 3px 6px rgba(0, 0, 0, 0.9);
  }
  50% {
    text-shadow: 
      0 0 30px rgba(255, 107, 53, 1.2),
      0 0 60px rgba(0, 212, 255, 1),
      3px 3px 6px rgba(0, 0, 0, 0.9);
  }
}

.hero-desc {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 15px rgba(0, 0, 0, 0.7);
  font-weight: 600;
  line-height: 1.7;
}

/* Games Container */
.games-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2.5rem;
  padding: 2.5rem;
  max-width: 1700px;
  margin: 0 auto;
}

/* Game Cards - Ultra Modern Gaming Design */
.game-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(108, 92, 231, 0.2);
  box-shadow: var(--shadow-md);
  position: relative;
  animation: fadeIn 0.6s ease backwards;
}

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

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-gaming);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.game-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-gaming);
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.game-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 107, 53, 0.4);
  border-color: var(--primary);
}

.game-card:hover::before {
  opacity: 0.15;
}

.game-card:hover::after {
  opacity: 1;
  animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, #6c5ce7 0%, #764ba2 100%);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.game-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.1) saturate(1.2);
}

.game-card h4 {
  padding: 1.4rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-card:hover h4 {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
  transform: scale(1.05);
}

/* Responsive Game Cards */
@media (max-width: 768px) {
  .games-container {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.8rem;
    padding: 1.5rem;
  }

  .game-card {
    border-radius: 16px;
  }

  .game-card h4 {
    font-size: 0.95rem;
    padding: 1rem 0.8rem;
  }

  .hero-content {
    padding: 2.5rem 1.5rem;
  }
}

/* Footer - Gaming Themed - Perfect & Responsive */
.site-footer {
  margin-top: 120px;
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.98) 0%, rgba(28, 28, 48, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent)) 1;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-wrapper {
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 3rem 2rem;
  align-items: start;
}

/* Footer Left Section */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}

.brand-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-gaming);
  border-radius: 50%;
  padding: 2px;
  box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
  transition: all 0.4s ease;
}

.brand-logo-wrapper:hover {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 0 35px rgba(255, 107, 53, 0.7);
}

.footer-logo {
  width: 56px;
  height: 56px;
  background: var(--bg-darker);
  border-radius: 50%;
  padding: 8px;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.footer-brand-name {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.4rem;
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin: 0;
  animation: pulse-glow 3s ease-in-out infinite;
}

.footer-tagline {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.dev-company {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.dev-company strong {
  color: var(--primary);
  font-weight: 700;
}

/* Footer Right Section */
.footer-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-gaming);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-column:hover h4::after {
  width: 100%;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
  width: fit-content;
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gaming);
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
  transform: translateX(8px);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.footer-column a:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 2rem 2rem 2.5rem;
  margin-top: 2.5rem;
  border-top: 2px solid rgba(108, 92, 231, 0.2);
  background: rgba(8, 8, 26, 0.5);
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.8;
}

.footer-bottom .copyright {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.footer-bottom strong {
  color: var(--primary);
  font-weight: 700;
}

.footer-bottom .brand-highlight {
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: none;
}

.footer-bottom .powered-by {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Footer - Tablet */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem 2.5rem 2rem;
  }

  .footer-left {
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-right {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .footer-column {
    align-items: center;
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column a {
    display: block;
    width: 100%;
  }

  .footer-column a:hover {
    transform: translateX(0) scale(1.05);
  }
}

/* Responsive Footer - Mobile */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 80px;
  }

  .footer-container {
    gap: 2.5rem;
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-brand {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-brand-name {
    font-size: 1.2rem;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }

  .footer-right {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .footer-column {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.15);
  }

  .footer-column:last-child {
    border-bottom: none;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-bottom {
    padding: 1.5rem 1.5rem 2rem;
    margin-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.9rem;
  }

  .footer-bottom .copyright {
    font-size: 0.95rem;
  }
}

/* Responsive Footer - Small Mobile */
@media (max-width: 480px) {
  .footer-container {
    padding: 2.5rem 1rem 1rem;
  }

  .brand-logo-wrapper {
    width: 50px;
    height: 50px;
  }

  .footer-logo {
    width: 46px;
    height: 46px;
  }

  .footer-brand-name {
    font-size: 1rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .dev-company {
    font-size: 0.85rem;
  }

  .footer-column h4 {
    font-size: 0.95rem;
  }

  .footer-column a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 1.5rem 1rem 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* Policy & Contact Pages */
.policy-container,
.contact-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 3.5rem;
  background: rgba(28, 28, 48, 0.7);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  box-shadow: 
    0 10px 50px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(108, 92, 231, 0.2);
  border: 2px solid rgba(108, 92, 231, 0.2);
}

.policy-container h1,
.contact-container h1 {
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  text-align: center;
  background: var(--gradient-gaming);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.policy-container h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.policy-container p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-light);
}

.policy-container ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
  line-height: 1.9;
  color: var(--text-light);
}

.policy-container a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.policy-container a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Contact Form */
.contact-container .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.8rem;
}

.contact-container label {
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-container input,
.contact-container textarea {
  padding: 1.1rem 1.3rem;
  border: 2px solid rgba(108, 92, 231, 0.4);
  border-radius: 15px;
  background: rgba(15, 15, 30, 0.9);
  color: var(--text-light);
  font-size: 1.05rem;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.contact-container input:focus,
.contact-container textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 25px rgba(255, 107, 53, 0.4);
  background: rgba(15, 15, 30, 1);
  transform: translateY(-2px);
}

.contact-container textarea {
  resize: vertical;
  min-height: 160px;
}

.submit-btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-gaming);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 
    0 5px 20px rgba(255, 107, 53, 0.4),
    0 0 30px rgba(108, 92, 231, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 40px rgba(255, 107, 53, 0.6),
    0 0 50px rgba(108, 92, 231, 0.5);
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:active {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .policy-container,
  .contact-container {
    padding: 2.5rem 1.8rem;
    margin: 2rem 1rem;
  }

  .policy-container h1,
  .contact-container h1 {
    font-size: 2.2rem;
  }
}

/* Home Link */
.home-link-wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.home-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 2px solid transparent;
}

.home-link:hover {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.15);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.home-link .home-icon {
  display: none;
  font-size: 1.3rem;
}

.home-link .home-text {
  display: inline;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .home-link .home-text {
    display: none;
  }

  .home-link .home-icon {
    display: inline;
  }
}

/* Loading State */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
  .game-card:nth-child(1) { animation-delay: 0.05s; }
  .game-card:nth-child(2) { animation-delay: 0.1s; }
  .game-card:nth-child(3) { animation-delay: 0.15s; }
  .game-card:nth-child(4) { animation-delay: 0.2s; }
  .game-card:nth-child(5) { animation-delay: 0.25s; }
  .game-card:nth-child(6) { animation-delay: 0.3s; }
  .game-card:nth-child(7) { animation-delay: 0.35s; }
  .game-card:nth-child(8) { animation-delay: 0.4s; }
  .game-card:nth-child(n+9) { animation-delay: 0.45s; }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 6px;
  border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-light), var(--accent));
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}

::-moz-selection {
  background: var(--primary);
  color: white;
}