        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            color: white;
        }
        
        .container {
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 30px;
            width: 90%;
            max-width: 700px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            text-align: center;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .game-info {
            display: flex;
            justify-content: space-around;
            margin-bottom: 25px;
            font-size: 1.1rem;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 12px;
            border-radius: 10px;
        }
        
        .message {
            font-size: 1.3rem;
            margin: 20px 0;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .guess-input {
            margin: 20px 0;
        }
        
        input[type="number"] {
            width: 150px;
            padding: 12px;
            font-size: 1.5rem;
            text-align: center;
            border: 2px solid #ffd700;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
        }
        
        button {
            padding: 12px 25px;
            font-size: 1.1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            margin: 5px;
        }
        
        #guess-btn {
            background-color: #4CAF50;
            color: white;
        }
        
        #guess-btn:hover {
            background-color: #45a049;
        }
        
        #reset {
            background-color: #2196F3;
            color: white;
        }
        
        #reset:hover {
            background-color: #0b7dda;
        }
        
        .guesses {
            margin: 20px 0;
            min-height: 40px;
        }
        
        .guesses-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
        }
        
        .guess-item {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 5px 12px;
            border-radius: 15px;
            border: 1px solid #ffd700;
        }
        
        .hint {
            font-size: 1rem;
            color: #b8b8b8;
            margin-top: 10px;
            font-style: italic;
        }
        
        .instructions {
            margin-top: 25px;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            text-align: left;
        }
        
        .instructions h2 {
            margin-bottom: 10px;
            color: #ffd700;
        }
        
        .instructions ul {
            padding-left: 20px;
        }
        
        .instructions li {
            margin-bottom: 8px;
        }
        
        .footer {
            margin-top: 25px;
            padding: 15px;
            text-align: center;
            color: #b8b8b8;
        }
        
        .footer a {
            color: #b8b8b8 !important;
        }
        
        @media (max-width: 600px) {
            .container {
                width: 95%;
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .game-info {
                flex-direction: column;
                gap: 10px;
            }
        }

