* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* 顶部横幅 */
.header {
    background-color: #000;
    padding: 10px 0;
}

.logo {
    text-align: center;
    font-size:1.5rem;
    margin-bottom: 10px;
    position: fixed;
    height: 45px;
    top: 0;
    z-index: 1;
    width: 100%;
    background-color: #000;
}
.logo img{
    width: 180px;
    margin-top: 8px;
}
/* 轮播图样式 */
.carousel-container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.carousel-track.grabbing {
    cursor: grabbing;
    transition: none;
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 中间内容区 */
.main-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.main-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.casino-list {
    list-style: none;
}

.casino-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge {
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right:5px;
}

.casino-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-right: 5px;
}

.casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.casino-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.rating {
display:flex;
flex-direction: row;
align-items: center;
    margin-bottom: 8px;
}
.jo-btn{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}
.rating p{

    color: #ffcc00;
    font-size: 14px;
}
.rating span{

    color: #666;
    font-size: 12px;
}
.play-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    align-self: center;
}
.ms{
    font-size: 12px;
    color: #333;
}

.play-btn:hover {
    background-color: #45a049;
}

/* 关于部分 */
.about {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
    text-align: center;
}

.about h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    margin: 10px;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* 页脚 */
.footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.footer-logos img {
    height: 30px;
    object-fit: contain;
}