* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header */
.header {
  background: linear-gradient(135deg, #ff1919 0%, #cc1414 100%);
  color: #fff;
  padding: 60px 20px 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.header-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.header h1 {
  margin: 0 0 12px 0;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.subtitle {
  font-size: 1.15rem;
  margin: 0 0 24px 0;
  opacity: 0.95;
  font-weight: 400;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item strong {
  font-weight: 700;
}

/* Sections */
.games-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff1919;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(255, 25, 25, 0.2);
}

.section-subtitle {
  color: #999;
  font-size: 1rem;
  font-weight: 400;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.games-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Game Cards */
.game-card {
  background: #191919;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  padding: 28px 24px 24px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #222;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff1919, #ff3333);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 25, 25, 0.25);
  border-color: #ff1919;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card.featured {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border: 2px solid #ff1919;
}

.game-card.featured::before {
  opacity: 1;
  height: 6px;
}

/* Badge */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff1919;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 25, 25, 0.4);
}

.badge.new {
  background: linear-gradient(135deg, #ff1919, #ff3333);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
/* Game Card Content */
.game-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 16px auto;
  display: block;
  background: #0a0a0a;
  border: 3px solid #ff1919;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 25, 25, 0.2);
}

.game-card:hover .game-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(255, 25, 25, 0.4);
  border-color: #fff;
}

.game-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.game-desc {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0 0 16px 0;
  line-height: 1.5;
  min-height: 42px;
}

.games-grid.compact .game-card h3 {
  font-size: 1.1rem;
}

.games-grid.compact .game-icon {
  width: 64px;
  height: 64px;
}

.games-grid.compact .game-desc {
  display: none;
}

/* Buttons */
.button-link {
  display: inline-block;
  background: linear-gradient(135deg, #ff1919, #ff3333);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 25, 25, 0.3);
  position: relative;
  overflow: hidden;
}

.button-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.button-link:hover::before {
  left: 100%;
}

.button-link:hover {
  background: linear-gradient(135deg, #ff3333, #ff1919);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 25, 25, 0.5);
}

.button-link:active {
  transform: translateY(0);
}

/* Share Container */
.share-container {
  max-width: 600px;
  margin: 60px auto 40px auto;
  padding: 32px 20px;
  text-align: center;
  background: #191919;
  border-radius: 16px;
  border: 1px solid #222;
}

.share-container span {
  display: block;
  margin-bottom: 20px;
}

.share-container a {
  transition: transform 0.2s ease;
  display: inline-block;
}

.share-container a:hover {
  transform: scale(1.1);
}

.share-container button {
  margin: 0 8px;
  vertical-align: middle;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background: #ff1919;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.share-container button:hover {
  background: #ff3333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 25, 25, 0.4);
}

/* Footer */
.footer {
  background: #191919;
  border-top: 1px solid #222;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.developer-info {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.developer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #ff1919;
  box-shadow: 0 4px 12px rgba(255, 25, 25, 0.3);
}

.developer-info h3 {
  margin: 0 0 4px 0;
  color: #ff1919;
  font-size: 1.2rem;
  font-weight: 700;
}

.developer-info p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #ff1919;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff3333;
  text-decoration: underline;
}

.footer-divider {
  color: #444;
}

.footer-text {
  color: #666;
  font-size: 0.9rem;
}

/* Feedback Section */
.feedback-section {
  margin-top: 60px;
  padding: 40px 20px;
}

.feedback-section .section-title {
  color: #ff1919;
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.feedback-form {
  background: #191919;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(255, 25, 25, 0.15);
  padding: 32px 24px;
  border: 1px solid #222;
}
/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ff1919;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid #ff1919;
  background: #0a0a0a;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff3333;
  box-shadow: 0 0 0 3px rgba(255, 25, 25, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #ff1919, #ff3333);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 25, 25, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff3333, #ff1919);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 25, 25, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .stats {
    gap: 12px;
  }

  .stat-item {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .games-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }

  .game-card {
    padding: 20px 16px;
  }

  .developer-info {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 40px 16px 30px 16px;
  }

  .header h1 {
    font-size: 1.75rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .games-grid.compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-icon {
    width: 64px;
    height: 64px;
  }

  .button-link {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .share-container {
    padding: 24px 16px;
  }
}
