.premium-live-entry {
    margin: 20px auto;
    max-width: 550px;
    background: #000;
    border: 1px solid #d4af37; 
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.premium-inner {
    display: block;
    padding: 25px;
    text-decoration: none !important;
    transition: background 0.3s;
}

.premium-inner:hover {
    background: #111; /* ホバー時に微かに明るく */
}

.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.gold-badge {
    background: #d4af37;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.view-count {
    color: #d4af37;
    font-size: 11px;
    font-weight: normal;
}

/* テキスト部分 */
.premium-title {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.premium-desc {
    color: #999;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ボタン：シャンパンゴールドのグラデーション */
.premium-gold-button {
    background: linear-gradient(to bottom, #f1ca70 0%, #d4af37 100%);
    color: #000;
    text-align: center;
    padding: 15px;
    border-radius: 4px; 
    font-weight: bold;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.2s;
}

/* ボタンのホバー・アクティブ効果 */
.premium-inner:hover .premium-gold-button {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.premium-inner:active .premium-gold-button {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(212, 175, 55, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
    .premium-live-entry {
        margin: 15px;
    }
    .premium-title {
        font-size: 18px;
    }
}