 body {
font-family: 'Inter', system-ui, sans-serif;
margin: 0;
 
}
 

 .hero {
     background: linear-gradient(135deg, #007bff, #4e54c8);
     color: white;
     text-align: center;
     padding: 100px 20px;
 }

 .hero h1 {
     font-size: 2.8rem;
     margin-bottom: 15px;
 }

 .hero p {
     font-size: 1.2rem;
     margin-bottom: 25px;
 }

 .hero .cta-btn {
     background: #fff;
     color: #007bff;
     padding: 12px 25px;
     border-radius: 6px;
     font-weight: 600;
     text-decoration: none;
     transition: 0.3s;
 }

 .hero .cta-btn:hover {
     background: #e8e8e8;
 }


 .game-section {
     padding: 60px 20px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-title {
     text-align: center;
     font-size: 2rem;
     margin-bottom: 40px;
     color: #333;
 }

 .game-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
     margin-top: 10px;
 }
 
 

 .game-card {
     background: white;
     border-radius: 10px;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     transition: transform 0.3s;
     text-align: center;
 }

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

 .game-card img {
     width: 100%;
     height: 160px;
     object-fit: cover;
 }

 .game-card h3 {
     margin: 15px 0;
     font-size: 1.1rem;
 }

 .game-card a {
     display: inline-block;
     margin-bottom: 15px;
     text-decoration: none;
     color: #007bff;
     font-weight: 500;
 }
 .a-section{
     
     padding: 100px 20px;
      
 }

