
       body {
              font-family: Arial, sans-serif;
            margin: 20px;
            padding: 0;
            background-color: #181818;
            color: #e0e0e0;
            display: flex;
            justify-content: center;
            min-height: 100vh;
        }
        .container {

            max-width: 900px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .header {
            font-size: 2rem;
            font-weight: bold;
            padding:0 15px;
            background: #222;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(255, 75, 43, 0.5);
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            color: #ffffff;
        }

        .header img {
            width: 40px;
            height: 40px;
            border-radius: 4px;
        }
        .game-info, .rules-section {
            background: #222;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(255, 75, 43, 0.3);
    
        }
        .game-info {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        .game-info img {
            width: 140px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(255, 75, 43, 0.3);
        }
        .details {
            flex-grow: 1;
        }
        .rules-box {
            border: 1px solid rgba(255, 75, 43, 0.5);
            padding: 10px;
            min-height: 100px;
            background-color: #292929;
            border-radius: 8px;
            box-shadow: inset 0 1px 5px rgba(255, 75, 43, 0.2);
        }
        li{
            margin-bottom: 10px;
        }
        .favourite{
            text-align: center;
            display: grid;
            justify-content: center; 
            align-items: center;  
            font-size: 20px;
            

        }
        #icon {
            text-align: center;
            cursor: pointer;
            font-size: 40px;;
            padding: 20px;
        }
        #icon.checked{
            color: red;
        }
        a, .nav{
            text-align: center;
            cursor: pointer;
            font-size: 1.4rem;
            color: white;
            margin-right: 3vw;
            margin-left: 2vw;
        }
        h3{
            padding-left: 10px;
        }

     
        
       
     
     
      
