* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    text-align: center;
    padding: 2rem 1rem;
    background-image: url(spaceship/assets1/star.png);
    background-color: #0a1d25;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  header p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  
  .special-offer {
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.1), rgba(0, 210, 255, 0.1));
  border-left: 4px solid var(--primary-color);
  margin: 1rem auto;
  padding: 1rem;
  max-width: 800px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeIn 1s ease;
  text-decoration: none;
  color: white;
}

.offer-btn {
  padding: 0.5rem 1.5rem;
  background: var(--primary-color);
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
}
  
  .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 ;
  }
  
  #ad{
    background-color: white;
    height: fit-content;
    width: fit-content;
  }
  .game-card {
    background-image: url(spaceship/assets1/star.png);
    background-color: #0a1d25;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.1);
  }
  
  .game-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .game-card img:hover {
    transform: scale(1.05);
  }
  
  .game-card h2 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
  }
  
  .play-btn {
    display: inline-block;
    margin: 0.5rem 0 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #00d2ff;
    color: #000;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
    z-index: 999;
  }
  
  .play-btn:hover {
    background: #3a7bd5;
    color: #fff;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background: #111;
    font-size: 0.9rem;
    color: white;
    height: 151px;
    text-decoration: none;
  }
  
 