.cleverToplist-card {
    display: flex;
    align-items: center;
    background-color: #123c53;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.cleverToplist-ribbon {
    /* background-color: #00a859; */
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    position: absolute;
    top: 5px;
    left: -35px;
    border-radius: 4px;
    z-index: 10;
}

.cleverToplist-card-content {
    display: grid;
    grid-template-columns: 2fr 2fr 5fr 3fr;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.cleverToplist-logo-section {
    text-align: center;
    background: #f5f5f5;
    border-radius: 5px;
    position: relative;
}

.cleverToplist-logo {
    max-width: 100%;
    border-radius: 4px;
    height: 150px;
    object-fit: contain;
}
.cleverToplist-game {
    max-width: 100%;
    border-radius: 4px;
    height: 150px;
    object-fit: cover;
}

.cleverToplist-info-section {
    padding-left: 10px;
    text-align: center;
}

.cleverToplist-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}
.cleverToplist-title a{
    text-decoration: none;
}

.cleverToplist-rating {
    display: flex;
    align-items: center;
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.cleverToplist-stars {
    color: gold;
    margin-right: 5px;
}

.cleverToplist-rating-value {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    width: 100%;
}

.cleverToplist-read-more {
    /* color: #00a859; */
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    font-size: 14px;
}

.cleverToplist-offer-section {
    text-align: center;
    font-size: 26px;
    line-height: 1 !important;
}

.cleverToplist-offer {
    margin: 0;
    font-weight: bold;
}

.cleverToplist-sub-offer {
    margin: 0;
    font-size: 20px;
}

.cleverToplist-cta-section {
    text-align: center;
    position: relative;
}

.cleverToplist-cta-button {
    background-color: #60c083;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    width: 100%;
}
.cleverToplist-cta-button:hover {
    background-color: #ff6900;
}

.cleverToplist-dropdown {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
}

.cleverToplist-dropdown-icon {
    fill: #60c083; /* Ensures the color is applied */
    width: 20px; /* Sets the width to 20px */
    height: 20px; /* Sets the height to 20px */
    cursor: pointer;
}

/* Hide the disclaimer by default */
.toplist-disclaimer {
    display: none;
    margin-top: 10px; /* Optional: Adjust spacing when shown */
    border-top: 1px solid #60c083;
    justify-content: space-evenly;
    padding-top: 10px;
}
.toplist-disclaimer-benefits{
    display: flex;
    align-items: center;
}
.toplist-disclaimer-benefits svg{
    margin-right: 1rem;
}

/* Rotate the SVG icon when toggled */
.cleverToplist-dropdown-icon.rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.cleverToplist-terms{
    text-align: center;
    font-size: 10px;
    position: relative;
    margin-top: 8px;
}
.mobile{
    display: none;
}
.desktop{
    display: block;
}
@media only screen and (max-width: 600px) {
    .cleverToplist-card-content {
        grid-template-columns: 6fr 6fr;
    }
    .mobile{
        display: block;
    }
    .desktop{
       display: none;
    }
    .cleverToplist-MobileToplist{
        border-top: 1px solid #60c083;
        margin-top: 1rem;
    }
    .toplist-disclaimer-mobile{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .toplist-disclaimer-benefits{
        width: 100%;
        /* padding-left: 0rem; */
        margin: .5rem;
    }
    .cleverToplist-cta-button{
        margin-top: 1rem;
        text-align: center;
    }
    .cleverToplist-read-more{
        border: 1px solid;
        padding: .5rem 1rem;
        border-radius: 1rem;
    }
}

