.tier-table {
    width: 95%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
}

.tier-table thead .tier-header {
    background-color: #f5f5f5;
    font-weight: bold;
}

.tier-table tbody .tier-row-header {
    background-color: #f5f5f5;
    font-weight: bold;
    text-align: center;
}

.tier-table th {
    text-align: center;
}
.tier-table td {
    text-align: left;
}

.tier-table th,
.tier-table td {
    border: 1px solid #ddd;
    padding: 8px;
    vertical-align: middle;
}

.tier-label {
    font-weight: bold;
    background: #ffe4f0;
}

.tier-cell {
    text-align: left;
    padding: 8px;
    vertical-align: middle;
}

.tier-icon-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.tier-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin: 3px;
    object-fit: cover;
}

.tier-cell {
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.tier-col-rank {
    max-width: 60px;
}

.tier-col-restrict {
    width: 46%;
}

.tier-col-free {
    width: 46%;
}

.youtube-container {
    position: relative;
    padding-bottom: 33.75%;
    height: 0;
    overflow: hidden;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 20px;
    width: 60%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .youtube-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    
    }
    
    .youtube-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 95%;
        height: 95%;
        max-width: 720px;
        max-height: 405px;
        border: none;
    }
    
}
