/* ======================================================
   8) PREMIUM-SIDA (premium-template.html)
   ====================================================== */

.premium-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 193, 7, 0.6);
    border-radius: 0.6rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.9);
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-align: left;
    backdrop-filter: blur(4px);
}

/* 🌟 Rubrik */
.premium-header {
    text-align: center;
    font-size: 2.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255,193,7,0.6), 0 0 20px rgba(255,193,7,0.3);
}

/* 💬 Introduktion */
.premium-intro {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    color: #ffc107;
    font-family: "Arial", sans-serif;
    line-height: 1.5;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* ✅ Fördelar */
.premium-benefits {
    background-color: rgba(15, 15, 15, 0.75);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 0.6rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

    .premium-benefits h2 {
        text-align: center;
        font-size: 1.6rem;
        margin-top: 0;
        margin-bottom: 1rem;
        text-shadow: 0 0 10px rgba(255,193,7,0.4);
    }

.premium-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .premium-benefits-list li {
        margin: 0.5rem 0;
        padding-left: 1.75rem;
        position: relative;
        font-family: "Arial", sans-serif;
        color: #ffc107;
        text-shadow: 0 0 6px rgba(0,0,0,0.6);
    }

        .premium-benefits-list li::before {
            content: "★";
            position: absolute;
            left: 0;
            color: #ffc107;
            text-shadow: 0 0 6px rgba(255,193,7,0.8);
        }

/* 🌟 CTA */
.premium-cta {
    text-align: center;
    margin: 2rem 0;
}

#premium-cta-btn {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

    #premium-cta-btn:hover:not(.disabled-button) {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

#premium-cta-subtext {
    margin-top: 0.75rem;
    color: #ffc107;
    font-family: "Arial", sans-serif;
}

/* 💡 FAQ / Varför uppgradera */
.premium-faq {
    background-color: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255,193,7,0.4);
    border-radius: 0.6rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

    .premium-faq h2 {
        text-align: center;
        font-size: 1.6rem;
        margin-top: 0;
        margin-bottom: 1rem;
        text-shadow: 0 0 10px rgba(255,193,7,0.4);
    }

    .premium-faq p {
        color: #eee;
        font-family: "Arial", sans-serif;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

.premium-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Arial", sans-serif;
    color: #ffc107;
}

    .premium-faq-list li {
        margin: 0.4rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

        .premium-faq-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #ffc107;
        }

.premium-why-upgrade {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid gold;
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    color: #ffc107;
    text-align: left;
}

    .premium-why-upgrade h2 {
        color: gold;
        text-align: center;
        margin-bottom: 15px;
    }

    .premium-why-upgrade p {
        line-height: 1.6;
        font-size: 1rem;
        color: #ffc107;
    }
/* (8) FAQ – accordion-stil */
.premium-faq {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid gold;
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
}

.faq-item + .faq-item {
    margin-top: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #ffc107;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    transition: background-color 0.3s ease;
}

    .faq-question:hover {
        background-color: rgba(255, 193, 7, 0.1);
    }

.faq-answer {
    display: none;
    padding: 10px 15px;
    color: #ddd;
    border-left: 2px solid gold;
    margin-bottom: 10px;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivitet */
@media (max-width: 700px) {
    .premium-container {
        padding: 1rem;
    }

    .premium-header {
        font-size: 1.8rem;
    }

    .premium-benefits,
    .premium-faq {
        padding: 1rem;
    }

    #premium-cta-btn {
        width: 100%;
        font-size: 1rem;
    }
}
