header, footer {
    background-color: #000000;
    color: #ffcc00;
    padding: 30px 0;
}

h1 {
    margin: 0;
    font-size: 2em;
}
h2 {
    color: #ffcc00;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}

li {
    margin-bottom: 8px;
}

.banner {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin-top: 20px;
}

.subtitle {
    max-width: 1200px;
    font-size: 22px;
    padding: 0 20px;
    margin: 20px auto 40px;
}

.desc_title {
    text-align:left;
    color: #ffcc00;
    max-width: 1200px;
    font-size: 32px;
    font-weight:bold;
    padding: 0 20px;
    margin: 20px auto 20px;
}

.description {
    text-align:justify;
    max-width: 1200px;
    font-size: 16px;
    padding: 0 20px;
    margin: 20px auto 40px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }
    .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.2em;
    }
    .description {
        font-size: 15px;
        padding: 0 10px;
    }
}





* {
    box-sizing: border-box;
}


body {
    margin: 0;
    background-color: #121212;
    font-family: Arial, sans-serif;
    color: #fff;
    justify-content: center;
    text-align: center;

}

.listing-container {
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    max-width: 1200px;
    width: 100%;
    position: relative;
    transition: box-shadow 0.3s ease;
        margin-left:auto;
    margin-right:auto;
    margin-bottom:30px;
    margin-top:30px;
}


.listing-container:hover {
    box-shadow: 0 0 25px 5px rgba(0, 255, 204, 0.3);
}

.ranking-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #00b150;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 18px;
}

.first-ranking-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #ffd700;
    padding: 10px 15px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 18px;
}

.listing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo-section{
        border-right: 2px solid #9a9a9a;
    width:25%;
}
img.logo {
    max-width: 48%;
    border-radius: 10px;
}

.info-section {
        border-right: 2px solid #9a9a9a;
    width:25%;
    flex: 1;
    text-align: center;
}

.info-section h2 {
    color:white;
    margin: 0 0 5px;
    font-size: 26px;
}

.welcome {
    margin: 5px 0;
    color: #aaa;
    font-size: 14px;
}

.bonus {
    margin: 5px 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 16px;
}

.sub-bonus {
    margin: 5px 0;
    color: #ffcc00;
    font-weight: bold;
    font-size: 14px;
}

.rating-section {
        border-right: 2px solid #9a9a9a;
     width:25%;
    text-align: center;
}

.stars {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 22px;
    color: #ffd700;
}

.reviews {
    font-size: 14px;
    color: #ccc;
}

.score {
    color:black;
    font-size: 16px;
    font-weight: bold;
    background-color: #ffd700;
    padding: 5px 20px;
    border-radius: 10px;
    display: inline-block;
}

.action-section {
     width:25%;
}

.btn {
    text-decoration: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 25px;
    text-align: center;
    display: inline-block;
    background-color: #00d57e;
    color: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #00e68a;
    transform: scale(1.05);
}

.footer-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-top: 20px;
    text-align: justify;
}

/* mobilurze */

@media screen and (max-width: 600px) {
  .listing {
        display:block;
    }
    
    .logo-section{
        border-right: none;
    width:100%;
}

.info-section {
         border-right: none;
    width:100%;
    
    
}

.rating-section {
        border-right: none;
    width:100%;
    
}
.action-section {
     width:100%;
}

.listing-container{
    width:80% !important;
}
main{
    width:80%;
}
.text_bottom{
    width:80%;
    margin-left:auto;
    margin-right:auto;
}
.subtitle{
    font-size:16px;
    padding:0px;
    margin-bottom:-10px;
}
.banner{
    margin-top:10px;
    margin-bottom:10px;
}
.info-section h2{
    display:none;
}
.score {
    margin-bottom: 10px;}
    
    header, footer {

    padding: 15px 0;
}

}


    

