/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #111;
    color: white;
    text-align: center;
}
h5 {
    font-size: 14px;
    font-weight: 500;
}

strong {
    font-size: 15px;
    font-weight: 700;
}
/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #222, #444);
    padding: 15px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
}

/* Header Link */
.header-link {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.header-link:hover {
    transform: scale(1.05);
    color: #ff4500;
}

/* Ad Container (Fully Responsive) */
.ad-container {
    width: 90%; 
    max-width: 950px; 
    height: auto;
    aspect-ratio: 16 / 10; 
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    overflow: hidden;
    margin: 80px auto 20px; /* Positions below the header */
}

.ad-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Fixes */
@media (max-width: 1024px) { /* Tablets */
    .header {
        padding: 12px;
    }

    .header-link {
        font-size: 18px;
        padding: 8px 16px;
    }

    .ad-container {
        max-width: 700px;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) { /* Mobile */
    .header {
        height: auto;
        padding: 10px;
    }

    .header-link {
        font-size: 16px;
        padding: 8px 14px;
    }

    .ad-container {
        width: 95%;
        max-width: 500px;
        aspect-ratio: 16 / 9;
        height: auto;
    }
}

.promo-info span {
    color: #28a745 !important; /* 绿色颜色代码 */
    font-weight: bold;
    margin-right: 8px;
    font-size: 1.2em;
  }
/* Promo Section */
.promo-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Promo Item (Desktop) */
.promo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 800px;
    background: radial-gradient(circle, #222, #111);
    border-radius: 12px;
    padding: 15px;
    margin: 15px auto;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.promo-item:hover {
    transform: scale(1.05);
}

/* Promo Image */
.promo-item img {
    width: 120px;
    border-radius: 10px;
}

/* Promo Info */
.promo-info {
    flex-grow: 1;
    padding: 10px;
    text-align: left;
}

.promo-info h3 {
    color: #FFD700;
    font-size: 20px;
}

.promo-info p {
    font-size: 16px;
    margin-top: 5px;
}

/* Play Now Button */
.play-btn {
    background: linear-gradient(90deg, #ff4500, #FFD700);
    color: black;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
}

/* 📌 Mobile & Tablet Fixes */
@media (max-width: 1024px) { /* Tablet */
    .promo-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .promo-item img {
        width: 140px;
        margin-bottom: 10px;
    }

    .play-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) { /* Mobile */
    .promo-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .promo-item img {
        width: 100px;
        margin-bottom: 10px;
    }

    .promo-info h3 {
        font-size: 18px;
    }

    .promo-info p {
        font-size: 14px;
    }

    .play-btn {
        padding: 8px 14px;
        font-size: 14px;
        margin-top: 10px;
    }
}

/* 🎰 Footer - Optimized Layout */
.footer {
    background: linear-gradient(90deg, #222, #444);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    text-align: center;
    border-top: 2px solid #FFD700;
    gap: 20px;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 220px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Headings */
.footer-section h4 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    padding-bottom: 5px;
}

/* Footer Images Container */
.footer-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px; /* Even spacing */
}

/* Footer Logos */
.footer-images a {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

.footer-images img {
    width: 70px; /* Uniform size */
    height: auto;
    max-width: 100%;
    filter: brightness(1.2);
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.footer-images a:hover img {
    transform: scale(1.1);
    filter: brightness(1.5);
}

/* Copyright Section */
.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    font-size: 14px;
    color: #ccc;
}

/* 📌 Tablet Mode (2 Columns) */
@media (max-width: 1024px) { 
    .footer {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px;
    }

    .footer-section {
        flex: 1 1 45%; /* Two columns */
        min-width: 180px;
    }

    .footer-images img {
        width: 65px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

/* 📌 Mobile Mode (Single Column) */
@media (max-width: 768px) { 
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .footer-section {
        width: 100%;
        padding: 10px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .footer-images img {
        width: 55px; /* Smaller for better fit */
    }

    .footer-copyright {
        font-size: 12px;
        padding-bottom: 10px;
    }
}

/* 🎰 Casino-Themed Animations */

/* Background Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -100vw 0; }
    100% { background-position: 100vw 0; }
}

body {
    background: linear-gradient(-45deg, #111, #222, #333, #222);
    background-size: 400% 400%;
    animation: shimmer 10s linear infinite;
    color: white;
    text-align: center;
    overflow-x: hidden;
}

/* Flashing Text for Key Sections */
@keyframes flashing-text {
    0% { color: #FFD700; }
    50% { color: #ff4500; }
    100% { color: #FFD700; }
}

.promo-info h3 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    animation: flashing-text 2s infinite alternate;
}

/* Glowing Footer Effect */
@keyframes footer-glow {
    0% { box-shadow: 0 0 5px #FFD700; }
    50% { box-shadow: 0 0 15px #ff4500; }
    100% { box-shadow: 0 0 5px #FFD700; }
}

.footer {
    animation: footer-glow 2s infinite alternate;
}

.rating-container {
    display: inline-flex;       /* 保持星星和文字在同一行 */
    align-items: center;        /* 垂直居中 */
    gap: 5px;                   /* 星星和文字之间的间距 */
    margin-top: 8px;            /* 与上方“CLAIM NOW”按钮拉开一些距离 */
}

.star-icon {
    width: 20px;                /* 星星图标宽度，可根据需要调整 */
    height: 20px;               /* 星星图标高度，可根据需要调整 */
}
