* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }
        header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #fdbb2d;
            position: relative;
        }
        .language-switcher {
            position: absolute;
            top: 10px;
            right: 10px;
        }
        .lang-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid #fdbb2d;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            margin-left: 5px;
        }
        .lang-btn.active {
            background: #fdbb2d;
            color: #000;
        }
        h1 {
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
            color: #fdbb2d;
        }
        .equipment-selector {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .equipment-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #555;
            color: #fff;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .equipment-btn:hover {
            background: rgba(253, 187, 45, 0.2);
        }
        .equipment-btn.active {
            background: rgba(253, 187, 45, 0.8);
            color: #000;
            border-color: #fdbb2d;
            font-weight: bold;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .stat-item {
            text-align: center;
        }
        .stat-value {
            font-size: 1.8rem;
            color: #fdbb2d;
            font-weight: bold;
        }
        .controls {
            text-align: center;
            margin: 25px 0;
        }
        .btn {
            background: linear-gradient(to right, #b21f1f, #fdbb2d);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .btn:active {
            transform: translateY(1px);
        }
        .results {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        .result-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
        }
        .result-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #fdbb2d;
        }
        .result-content {
            font-size: 1.1rem;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            padding: 10px;
        }
        .probability {
            margin-top: 8px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .history {
            margin-top: 30px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 15px;
        }
        .history h2 {
            text-align: center;
            margin-bottom: 15px;
            color: #fdbb2d;
        }
        .history-list {
            max-height: 200px;
            overflow-y: auto;
        }
        .history-item {
            padding: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: #ccc;
            font-size: 0.9rem;
        }
        .current-equipment {
            text-align: center;
            margin: 15px 0;
            font-size: 1.2rem;
            color: #fdbb2d;
        }
        @media (max-width: 768px) {
            .results {
                grid-template-columns: 1fr;
            }
            .equipment-selector {
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 10px;
            }
            .language-switcher {
                position: static;
                text-align: center;
                margin-bottom: 15px;
            }
        }