/* Stylings for content presentation */
.app-list {
    display: flex; 
    flex-wrap: wrap;
    background-color: #001520;
    color: #80d5ff;
    padding: 10px; 
    margin-top: 25px; 
    margin-bottom: 5px;
   /* box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);*/
}
.app-list h3 {
    margin-top: 0; 
    margin-bottom: 0; 
    font-size: 1.5em;
    font-style: italic;
    color: #675D49;
}
.app-list h4 {
    font-size: 1.2em;
    margin-bottom: 5px;
    width: 100%;
    color: #dff4ff;
}
.app-list h5 {
    font-size: 1em;
    margin-bottom: 5px;
    width: 100%;
    color: #bfeaff;
}
.app-list p {
    width: 100%; 
    margin-top: 5px;
}
.app-list b {
    color: #ffaa80;
}
.warning-list {
    display: flex; 
    flex-wrap: wrap;
    background-image: linear-gradient(to bottom, #004060, 80%, #002b40);
    color: #FFFF00;
    font-size: 0.9em;
    padding: 10px; 
    margin-top: 25px; 
    margin-bottom: 5px;
}
.warning-list p {
    width: auto; 
    margin-top: 0px;
    margin-left: 10px;
}
.warning-list a {
    color: #c9c900;
}
.warning-list img {
    height: 40px;
    width: auto;
    object-fit: cover;
}
.app-info {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%; 
    background-image: linear-gradient(to bottom, #006a9f, 50%, #004060);
    margin-top: -10px; 
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 10px; 
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.warn-info {
    display: flex;
    flex-direction: row;
    /*justify-content: center;*/ 
    align-items: center;
    text-align: center;
    width: 100%; 
}
.app-icon {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0; 
    margin-right: 10px; 
}
.platform-icon {
    height: auto;
    width: 64px; 
    flex-shrink: 0;
 }
 .app-info-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: right;
 }
 .app-info-btn a:hover img {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
 }
 .platform-images {
    text-align: center;
 }
 .gradient-text {
    background-image: linear-gradient(to bottom, #ffbf9f, 70%, #ff5500);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}
.content-wrapper {
    background-color: #001520;
    color:#80d5ff;
    --fallback-gradient-color: #001520;
}
.title-bar {
    background-image: url('../images/banners/circuit_o.webp');
}
.main-nav {
    background-image: linear-gradient(to bottom, #ffbf9f, 80%, #401500);
}
.menu a {
    color: #001520;
}
.menu a:hover {
    background-image: linear-gradient(to bottom, #ffbf9f, 50%, #401500);
    color: #ffbf9f;
}
.content-area {
    background-image: linear-gradient(to top, #ff5500, #401500);
}
.site-footer {
    background-color: #ff5500;
    color: #002b40;
}
@media (min-width: 769px) { /*Desktop only */
    .content-wrapper {
        background-image: url('../images/banners/games_desk.webp'), var(--fallback-gradient);
    }
    .app-list {
        width: 95%;
        margin-left: auto;
        margin-right: auto; 
    }
    .warning-list {
        width: 95%;
        margin-left: auto;
        margin-right: auto; 
    }
}

@media (max-width: 768px) { /*Mobile only */
    .content-wrapper {
        background-image: url('../images/banners/games_mobi.webp'), var(--fallback-gradient);
        font-size: 12px;
    }
    .app-icon {
        width: 48px;
        height: 48px;
    }
    .plat {
        height: 48px;
        width: auto; 
    }

}
