* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'SimHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    background-color: #fff;
    min-height: 100vh;
}

.header {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
}

.header img {
    max-height: 100px;
}

.desc-bar {
    background-color: #0066cc;
    color: #fff;
    padding: 15px 25px;
    text-align: center;
    font-size: 18px;
}

.container {
    width: 95%;
    margin: 0 auto;
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
       -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table thead th {
    background-color: #0066cc !important;
    color: #fff !important;
    padding: 15px 12px !important;
    text-align: center !important;
    font-weight: bold !important;
    font-size: 18px !important;
    white-space: nowrap !important;
}

table tbody td {
    padding: 15px 12px !important;
    text-align: center !important;
    border-bottom: 1px solid #eee !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-break: break-word !important;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f0f8ff;
}

.game-type {
    display: inline-block !important;
    padding: 8px 16px !important;
    -webkit-border-radius: 6px !important;
       -moz-border-radius: 6px !important;
            border-radius: 6px !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 16px !important;
}

.btn {
    display: inline-block !important;
    padding: 10px 20px !important;
    border: none !important;
    -webkit-border-radius: 6px !important;
       -moz-border-radius: 6px !important;
            border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    -webkit-transition: background-color 0.3s !important;
       -moz-transition: background-color 0.3s !important;
        -ms-transition: background-color 0.3s !important;
         -o-transition: background-color 0.3s !important;
            transition: background-color 0.3s !important;
}

.btn-download {
    background-color: #0099ff;
    color: #fff;
}

.btn-download:hover {
    background-color: #0077cc;
}

.btn-website {
    background-color: #0099ff;
    color: #fff;
}

.btn-website:hover {
    background-color: #0077cc;
}

.open-time {
    display: inline-block !important;
    padding: 8px 16px !important;
    background-color: #ff6b35 !important;
    color: #fff !important;
    -webkit-border-radius: 6px !important;
       -moz-border-radius: 6px !important;
            border-radius: 6px !important;
    font-weight: bold !important;
    font-size: 16px !important;
}

.footer {
    background-color: #0066cc;
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    margin-top: 20px;
}

.running-time {
    font-size: 18px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-info {
    font-size: 18px !important;
    line-height: 2.2 !important;
}

.footer-info p {
    margin: 8px 0 !important;
    font-size: 18px !important;
}

.version-detail {
    text-align: left;
    color: #333;
}

.version-detail span {
    color: #c41e3a;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }
    
    th, td {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    .btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .game-type {
        padding: 2px 8px;
        font-size: 10px;
    }
    
    .open-time {
        padding: 2px 8px;
        font-size: 11px;
    }
    
    .running-time {
        font-size: 14px;
    }
}