﻿/* Yono Games Listar - Frontend Styles */
.game-meta th {
    background: #f1f1f1;
    padding: 10px 20px;
}
.game-meta td {padding: 10px 20px;border-bottom: 1px solid #cfcfcf;}

.game-meta tr:last-child td {
    border-bottom: 0px;
    padding-top: 30px;
}

/* Similar games list */
.similar-games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.similar-game-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
}

.similar-game-item img {
    max-width: 110px;
    object-fit: cover;
    border-radius: 5px;
}
.similar-game-item h3 {
    margin-bottom: 0px;
}
.entry-content a {
    text-decoration: none;
}
.similar-game-list a:focus, a:hover {
    color: #fff;
}
.similar-game-item .download-button {
    min-width: 260px;
    padding: 8px;
}

.game-short-desc {
    margin-bottom: 0px;
}

.game-details {
    flex-grow: 1;
}

.game-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.game-meta span {
    color: #0a8a31;
}

.download-button {
    background: #009130;
    color: #fff;
    padding: 12px 5px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    display: block;
    text-align: center;
    margin-top: 8px;
}

.download-button:hover {
    background: #14602d;
}
.text-link {
    color: #3d00d2;
}
.nv-meta-list.game-meta span {
    background: #141414;
    color: #fff;
    padding: 0px 6px;
    border-radius: 3px;
}

.yono-homepage .article-content-col .content {
    text-align: center;
}

.yono-homepage .layout-grid .content>* {
    margin-bottom: 0px;
}

.yono-homepage h2 {
    margin-bottom: 0px;
}

.yono-homepage .excerpt-wrap.entry-summary p {
    color: #4c4c4c;
    font-size: 14px;
}

.yono-homepage .game-thumbnail img {
    height: 145px;
    width: 145px;
}
.nv-page-title-wrap {
    margin-top: 15px !important;
}
#sticky-download {
    position: fixed;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: linear-gradient(45deg, #ff0000, #ffa500);
    color: white;
    padding: 12px 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: none;
    transition: bottom 0.3s ease-in-out;
    z-index: 9999;
}
.orange-stars {
    color: #FF9800;
    font-size: 18px;
    font-weight: bold;
}

/* Custom post list */
.yono-post-list .yono-post-inline {
	margin-bottom: 20px;
}
.yono-post-inline {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.yono-post-thumb-wrapper {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 10px;
}
.yono-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.yono-post-title-wrapper {
	flex-grow: 1;
}
.yono-post-title {
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}
a.yono-post-title {
	color: #0B6623;
}
.footer-welcome-text {
    font-size: 15px;
    line-height: 1.4em;
    padding-bottom: 20px;
}
.text-center {
	text-align:center !important;
}
.mb-0 {
	margin-bottom:0px;
}
.pyg .nv-index-posts {
    margin-top: 30px;
}
.pill {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px;
    background-color: #f1f1f1;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.3s;
}
.pill:hover {
    background-color: #007bff;
    color: #fff;
}
.category-pills h3 {
    font-size:18px;
    margin-bottom: 5px
}
.wp-block-list {
    margin-left: 30px;
}
ul.wp-block-list {
    list-style: disc;
}
.wp-block-heading {
    margin-bottom: 10px;
    margin-top: 20px;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .similar-game-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        gap: 0px;
    }

    .similar-game-item img {
        width: 100%;
        max-width: 130px;
    }

    .game-title {
        font-size: 16px;
    }

    .similar-game-item .download-button {
        width: 100%;
        padding: 10px;
        font-size: 16px;
    }
}
