.section {
    padding: 0 10px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 10px;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-yellow);
}

.title-dot {
    width: 8px;
    height: 8px;
    background-color: #ff9800;
    /* Orange dot matching screenshot */
    border-radius: 50%;
    margin-right: 10px;
}

.view-all {
    color: #e5ccb3;
    font-size: 13px;
    font-weight: 500;
}

.view-all:hover {
    color: var(--color-yellow);
}

/* Games Vertical List */
.vertical-games {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.game-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.game-card-top {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 10px;
    background-color: var(--bg-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.domain-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ff9800;
}

.game-card-domain {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-card-info {
    padding: 15px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.game-card-actions {
    display: flex;
    gap: 12px;
    padding: 0 15px 15px;
}

.btn-card {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    transition: 0.2s;
}

.btn-card.visite {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-yellow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-card.visite:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-card.contato {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-card.contato:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Wins Table */
.wins-table-wrapper {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 10px 15px 15px;
}

.wins-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.wins-table th {
    color: #9c8a7b;
    text-align: left;
    padding: 12px 6px;
    font-weight: normal;
    font-size: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wins-table td {
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-muted);
}

.wins-table tr:last-child td {
    border-bottom: none;
}

.wins-table td:nth-child(2) {
    color: var(--color-white);
}

.val-lucro {
    color: var(--color-green) !important;
    font-weight: 600;
}

.table-game-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

/* Small Games Grid */
.small-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.small-game {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    background-color: var(--bg-card);
    display: block;
    overflow: hidden;
    transition: 0.2s;
}

.small-game:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.small-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Links List */
.links-box {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 5px 20px;
}

.link-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.link-row:last-child {
    border-bottom: none;
}

.link-text {
    flex: 1;
    color: var(--color-white);
    font-weight: 500;
}

.link-text:hover {
    color: var(--color-yellow);
}

/* Latest News Feature Section */
.pb-5 {
    padding-bottom: 48px !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.align-items-center {
    align-items: center !important;
}

.text-center {
    text-align: center !important;
}

.text-white {
    color: #ffffff !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.m-0 {
    margin: 0 !important;
}

.border-0 {
    border: none !important;
}

.latest-news {
    padding: 0 10px;
}

.section-prefix {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.latest-news .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: none;
    font-weight: 800;
}

.news-grid.modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 15px;
}

.news-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 214, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    background: var(--bg-card);
    position: relative;
    z-index: 2;
}

.news-date {
    font-size: 11px;
    color: var(--color-yellow);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content h3 a {
    color: var(--color-white);
    transition: color 0.2s;
}

.news-content h3 a:hover {
    color: var(--color-yellow);
}

.news-content p {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-new {
    background-color: var(--color-green);
    color: var(--color-white);
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Footer Box */
.footer-promo {
    margin: 20px 10px;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 214, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.footer-promo:hover {
    background-color: #382416;
}

.footer-promo img {
    height: 60px;
    margin-bottom: 5px;
}

.footer-promo h3 {
    margin: 0;
    font-size: 18px;
    color: var(--color-yellow);
    font-weight: bold;
}

.footer-promo p {
    margin: 0;
    font-size: 14px;
    color: var(--color-muted);
}

/* Desktop Responsiveness - Full Width */
@media (min-width: 768px) {
    .vertical-games {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .small-games-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }

    .section {
        padding: 0 40px 30px;
    }

    .banner-wrapper {
        padding: 20px 40px;
    }

    .banner-wrapper img {
        height: 380px;
        object-fit: cover;
    }

    .wins-table-wrapper {
        padding: 15px 20px 20px;
    }

    .wins-table {
        font-size: 14px;
    }

    .wins-table th {
        font-size: 13px;
        padding: 15px 10px;
    }

    .wins-table td {
        padding: 15px 10px;
    }

    .link-row {
        font-size: 15px;
        padding: 18px 0;
    }

    .links-box {
        padding: 10px 25px;
    }

    .news-grid.modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .latest-news {
        padding: 0 40px;
    }

    .footer-promo {
        margin: 30px 40px;
        padding: 30px;
    }

    .footer-promo h3 {
        font-size: 22px;
    }

    .footer-promo p {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .vertical-games {
        grid-template-columns: repeat(4, 1fr);
    }

    .small-games-grid {
        grid-template-columns: repeat(10, 1fr);
    }

    .section {
        padding: 0 50px 40px;
    }

    .banner-wrapper {
        padding: 20px 50px;
    }

    .game-card-image {
        height: 220px;
    }

    .wins-table {
        font-size: 15px;
    }

    .wins-table th {
        font-size: 14px;
        padding: 18px 12px;
    }

    .wins-table td {
        padding: 18px 12px;
    }

    .table-game-icon {
        width: 40px;
        height: 40px;
    }

    .news-grid.modern-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .latest-news {
        padding: 0 50px;
    }

    .footer-promo {
        margin: 40px 50px;
    }
}