.casino-summary-content {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.casino-summary-logo img {
    max-width: 100px;
    height: auto;
    margin-right: 20px;
}

.casino-summary-info {
    flex-grow: 1;
}

.casino-summary-title {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.casino-summary-status {
}

.casino-summary-rating {
    /* margin-bottom: 0; */
    display: flex;
    cursor: pointer;
    gap: 10px;
}

.casino-summary-downloads {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.stars {
    display: inline-block;
    color: #ffd700;
}

.star.filled {
    color: #ffd700;
}

.star {
    color: #ccc;
}
.casino-summary-content {
    border: 1px solid #e0e0e0;
    position: relative; /* Hiển thị ở đầu bài viết */
    width: 100%;
    max-width: 1130px; /* Giới hạn chiều rộng tối đa */
    margin: 0 auto; /* Căn giữa */
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex; /* Hiển thị ngay từ đầu */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* Khoảng cách với phần nội dung phía dưới */
}

.casino-summary-content.fixed {
    position: fixed;
    bottom: 0;
    left: 50%; /* Căn giữa theo chiều ngang */
    transform: translateX(-50%); /* Dịch chuyển ngược lại 50% chiều rộng của chính nó */
    width: 1130px; /* Chiều rộng cố định */
    margin-bottom: 0; /* Bỏ margin khi cố định */
}
a.register-button {
    background: #d42828;
    border-radius: 10px;
    color: #fff;
    padding: 3px 10px;
    font-weight: 600;
}
a.register-button:hover {
background: #ffffff;
    border: 1px solid #d32828;
    color: #d32828;
}
@media (max-width: 768px) {
   .casino-summary-content {
       text-align: center;
        padding: 10px;
        display: flex;
        width: 100% !important;
        align-items: center;
        gap: 10px;
    }
.casino-summary-logo img {margin-right:0}
    .casino-summary-content .casino-summary-logo img {
        width: 80px;
        height: 80px;
    }
  
}