.monthtab26 {
    background: #f5f5f5;
    font-family: sans-serif;
    padding: 30px;
}
.monthtab26 .month-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}
.monthtab26 .month-tab {
    padding: 10px 16px;
    background: #ccc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.monthtab26 .month-tab.active {
    background: #333;
    color: #fff;
}
.monthtab26 .month-content {
    display: none;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    justify-items: center;
}
.monthtab26 .month-content.active {
    display: grid;
}
@media (max-width: 1200px) {
    .monthtab26 .month-content {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .monthtab26 .month-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .monthtab26 .month-content {
        grid-template-columns: 1fr;
    }
}
.monthtab26 * {
    box-sizing: border-box;
}
.monthtab26 .card-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.monthtab26 .hover-expand-card .game-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
}
.monthtab26 .hover-expand-card:hover {
    transform: translateY(-5px);
}
.monthtab26 .hover-expand-card .game-title {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
}
.monthtab26 .hover-expand-card {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    will-change: transform;
}
.monthtab26 .hover-expand-card .game-extra {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0f0f0;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
}
.monthtab26 .hover-expand-card:hover .game-extra {
    max-height: 100px;
    padding: 10px;
}
.monthtab26 .hover-expand-card .platforms {
    display: flex;
    gap: 10px;
    margin-top: 5px;

}
.monthtab26 .hover-expand-card .platforms svg {
    height: 20px;
    width: 30px;
}


.monthtab26 .dropdown {
    text-align: center;
    margin: 30px auto;
}
.monthtab26 .dropdown-btn {
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.monthtab26 .dropdown-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #764ba2, #667eea);
}
.monthtab26 .dropdown-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: max-height 0.5s ease, padding 0.3s ease;
}
.monthtab26 .dropdown-content.show {
    max-height: 600px;
    overflow-y: auto;
    padding: 20px;
}