/* =========================
   ROW CONTAINER (NETFLIX STYLE)
========================= */

.premium-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 24px 16px;
}

/* =========================
   CARD BASE
========================= */

.premium-card {
    width: min(280px, 100%);
    height: min(420px, 70vh);
    position: relative;
    border-radius: 14px;
    overflow: hidden;

    border: 1px solid rgba(212,175,55,0.15);
    transition: 0.3s ease;
}

.premium-card:hover {
    transform: scale(1.03);
    border-color: rgba(212,175,55,0.4);
}

/* IMAGE */
.premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LINK WRAPPER */
.card-link {
    text-decoration: none;
    color: inherit;
}

/* =========================
   DARK OVERLAY
========================= */

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.1)
    );

    display: flex;
    align-items: flex-end;
}

/* CONTENT */
.premium-content {
    padding: 15px;
    width: 100%;
}

.premium-content h3 {
    color: #D4AF37;
    margin-bottom: 5px;
}

.premium-content p {
    color: #bdbdbd;
    font-size: 13px;
}

/* META */
.meta {
    margin-top: 8px;
    color: #D4AF37;
    font-size: 13px;
}

/* BUTTON LOOK */
.premium-btn {
    margin-top: 12px;
    padding: 10px;
    text-align: center;

    background: #D4AF37;
    color: black;

    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.premium-btn:hover {
    background: #FFD700;
}
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.interest-box {
    margin-top: 80px;
}
.interest-box {
    margin: 56px auto;
    padding: 50px 40px;
    max-width: 700px;
    width: min(700px, calc(100% - 24px));
    text-align: center;

    background: linear-gradient(145deg, #0c0c0c, #1a1a1a);
    border-radius: 16px;

    border: 1px solid rgba(212, 175, 55, 0.3);

    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.15),
        0 0 40px rgba(212, 175, 55, 0.08);

    position: relative;
    overflow: hidden;
}
.interest-box {
    margin: 100px auto;
    padding: 50px 40px;
    max-width: 700px;
    text-align: center;

    background: linear-gradient(145deg, #0c0c0c, #1a1a1a);
    border-radius: 16px;

    border: 1px solid rgba(212, 175, 55, 0.3);

    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.15),
        0 0 40px rgba(212, 175, 55, 0.08);

    position: relative;
    overflow: hidden;
}
.interest-box h2 {
    font-size: 28px;
    margin-bottom: 20px;

    background: linear-gradient(90deg, #D4AF37, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: 1px;
}
.interest-box textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: #fff;
    font-size: 14px;

    transition: all 0.3s ease;
}

.interest-box textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
}
.interest-box button {
    margin-top: 20px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;

    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;

    cursor: pointer;
    transition: all 0.3s ease;
}

.interest-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212,175,55,0.6);
}
.interest-box {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.vinyl-section {
    text-align: center;
    margin-top: 80px;
}

.vinyl-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vinyl {
    background: none;
    border: none;
    cursor: pointer;
}

.record {
    width: 120px;
    height: 120px;
    border-radius: 50%;

    background: radial-gradient(circle, #111 40%, #000 100%);
    border: 3px solid #D4AF37;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.record:hover {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

.label {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D4AF37;
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
    text-align: center;
    padding: 5px;
}
.vinyl-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .premium-row {
        padding: 18px 12px;
        gap: 14px;
    }

    .premium-card {
        width: 100%;
        max-width: 340px;
        height: 360px;
    }

    .interest-box {
        padding: 26px 16px;
    }
}

.vinyl-card {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 160px;
}

.record {
    width: 120px;
    height: 120px;
    background: black;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
}

.label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: gold;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 12px;
}

.vote-btn {
    margin-top: 10px;
    padding: 6px 12px;
    background: gold;
    border: none;
    cursor: pointer;
}
