* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    color: #fff;
    background: url("../images/bg_01.jpg") fixed center / cover;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 36px;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.col {
    flex: 0 0 auto;
}

.header video {
    width: 100%;
    height: auto;
}


.title-row {
    text-align: left;
    margin-bottom: 8px;
}

.title-row img {
    display: inline-block;
}

.game {
    width: 100%;
    max-width: 291px;
    height: 344px;
    margin: 8px auto;
    background: url('../images/gamebg.gif') no-repeat center / cover;
    border: 2px solid #d4a800;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}

.game:hover {
    transform: scale(1.02);
}

.game .logo {
    padding: 15px;
}

.game .logo img {
    width: 100%;
    height: 195px;
}

.game .name {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

.game .info {
    font-size: 12px;
    color: #e5e5e5;
    text-align: center;
    margin: 5px 0 10px;
    white-space: nowrap;
    overflow: hidden;
}

.game .start-button-box {
    padding: 0 16px 16px;
    text-align: center;
}

.game .start-button {
    display: inline-block;
    width: 258px;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: url('../images/play1.png') no-repeat center / cover;
}

.game .start-button:hover {
    background-color: #f4cf00;
    color: #000;
}

.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    font-size: 14px;
    line-height: 32px;
}

.footer .small {
    font-size: 12px;
    color: #cdc1b2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}
