/* ===== HOMEPAGE SPECIFIC STYLES - FIXED VERSION ===== */

/* ===== HERO SECTION - FIXED ===== */
.hero {
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  background: radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 153, 204, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  clip: rect(0, auto, 100vh, 0);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-dark);
  z-index: 5;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  z-index: 3;
}

.hero-visual {
  position: relative;
  z-index: 3;
  overflow: visible;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
  line-height: 1.1;
}

.hero-accent {
  color: var(--accent-bright);
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* ===== SERVER SHOWCASE - FIXED ===== */
.server-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  max-width: 100%;
  overflow: visible;
}

.server-card {
  background: rgba(44, 62, 80, 0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
  isolation: isolate;
}

.server-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 2s ease;
  z-index: -1;
}

.server-card.active::before {
  left: 100%;
}

.server-card.active {
  border-color: var(--accent-bright);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.server-status {
  width: 12px;
  height: 12px;
  background: var(--success);
  border-radius: 50%;
  margin-bottom: var(--spacing-sm);
  animation: pulse 2s infinite;
  position: relative;
  z-index: 2;
}

.server-card h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 2;
}

.server-card p {
  color: var(--accent-bright);
  font-weight: var(--font-weight-medium);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 2;
}

/* ===== SECTION ISOLATION - PREVENTS OVERLAY BLEEDING ===== */
/* ===== POPULAR GAME SERVERS - ULTRA ENHANCED ===== */

.games-showcase {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--primary-dark) 0%, rgba(10, 15, 30, 0.95) 100%);
  z-index: 10;
  isolation: isolate;
  overflow: hidden;
}

.games-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(0, 212, 255, 0.08), transparent 70%);
  pointer-events: none;
  animation: showcaseGlow 10s ease-in-out infinite;
}

@keyframes showcaseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.games-showcase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Section Header */
.games-showcase .section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 2;
}

.games-showcase .section-header h2 {
  font-size: 2.75rem;
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #007799 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
  animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)); }
}

.games-showcase .section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Games Grid - Enhanced */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 2;
}

/* Game Card - Ultra Enhanced */
.game-card {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.4), rgba(30, 45, 65, 0.6));
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.game-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent-bright);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.game-card.featured {
  border-color: var(--accent-bright);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.featured-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-medium));
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.5);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Game Image - Enhanced Box Display */
.game-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 25, 50, 0.8), rgba(25, 35, 60, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  border-bottom: 2px solid rgba(0, 212, 255, 0.1);
}

.game-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.game-image img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.game-card:hover .game-image img {
  transform: scale(1.15) rotate(3deg);
  filter: drop-shadow(0 12px 30px rgba(0, 212, 255, 0.4));
}

/* Game Overlay - Enhanced */
.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 150, 200, 0.85), rgba(0, 100, 150, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
  backdrop-filter: blur(5px);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-price {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-medium));
  color: var(--primary-dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-extrabold);
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: pricePopIn 0.3s ease-out;
}

@keyframes pricePopIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Game Info - Enhanced */
.game-info {
  padding: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.game-info h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
  transition: color 0.3s;
}

.game-card:hover .game-info h3 {
  color: var(--accent-bright);
}

.game-info p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Game Specs - Enhanced */
.game-specs {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.spec {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 150, 200, 0.1));
  color: var(--accent-bright);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s;
}

.game-card:hover .spec {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 150, 200, 0.15));
  border-color: var(--accent-bright);
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

/* View Details Button */
.view-details-btn {
  width: 100%;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-medium));
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

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

.view-details-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

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

/* Games Footer - Enhanced */
.games-footer {
  text-align: center;
  padding: var(--spacing-2xl);
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.3), rgba(30, 45, 65, 0.4));
  border-radius: var(--radius-xl);
  border: 2px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.games-footer p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.games-footer .btn {
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.games-footer .btn:hover {
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .games-showcase {
    padding: 60px 0;
  }
  
  .games-showcase .section-header h2 {
    font-size: 2rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .game-image {
    height: 180px;
  }
  
  .game-image img {
    width: 100px;
    height: 100px;
  }
}
/* ===== PRICING SECTION ===== */
.pricing {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.price-card {
  background: rgba(44, 62, 80, 0.3);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-bright);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.price-card.featured {
  border-color: var(--accent-bright);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price-header h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.price-header p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.price-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.currency {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--accent-bright);
  align-self: flex-start;
  margin-right: 0.25rem;
  margin-top: 0.5rem;
}

.amount {
  font-size: 3rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
  align-self: flex-end;
  margin-left: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-features {
  list-style: none;
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: var(--font-weight-bold);
}

.pricing-footer {
  text-align: center;
  padding: var(--spacing-xl);
}

.pricing-footer p {
  color: var(--text-secondary);
  margin: 0;
}

.pricing-footer a {
  color: var(--accent-bright);
  text-decoration: underline;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.feature-card {
  background: rgba(44, 62, 80, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: rgba(44, 62, 80, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.contact-item:hover {
  border-color: var(--accent-bright);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-medium));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-item p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-cta {
  text-align: center;
  padding: var(--spacing-xl);
  background: rgba(44, 62, 80, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.contact-cta h3 {
  font-size: 1.875rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.contact-cta p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-section h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--border-color);
}

.footer-copy p {
  color: var(--text-muted);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--accent-bright);
}

/* ===== ANIMATIONS - SAFE VERSIONS ===== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-5px);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .hero-actions {
    justify-content: center;
  }

  .server-showcase {
    gap: var(--spacing-sm);
    max-width: 100%;
  }

  .server-card {
    padding: var(--spacing-md);
  }

  .server-card h3 {
    font-size: 1.125rem;
  }

  .server-card p {
    font-size: 0.875rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .contact-info {
    gap: var(--spacing-md);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .server-showcase {
    gap: var(--spacing-sm);
  }

  .server-card {
    padding: var(--spacing-md);
  }

  .game-card {
    margin: 0 var(--spacing-sm);
  }

  .price-card,
  .feature-card,
  .contact-item {
    padding: var(--spacing-lg);
  }

  .price-amount .amount {
    font-size: 2.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }
}

/* ===== REMOVED PROBLEMATIC SCROLL EFFECTS ===== */
/* All scroll-based overlays, parallax effects, and problematic pseudo-elements have been removed */
/* The green overlay issue should now be resolved */
