.premium-intro {
    text-align: center;
    padding: 2rem 1rem;
    color: #fff;
}

.premium-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 1rem;
    background: #2b2d30;
}

.subscription-box {
    background: #14142c;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.subscription-box h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #fff;
}

.subscription-box .price {
    font-size: 1.5rem;
    color: #f9a825;
    margin-bottom: 1rem;
}

.subscription-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    color: #fff;
}

.subscription-box ul li {
    margin-bottom: 0.5rem;
}

.buy-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    background: #313244;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s;
    font-size: 1rem;
    font-weight: bold;
}

.buy-button:hover {
    background: #664c78;
}

.faq {
    padding: 3rem 1rem;
    background: #2b2d30;
    color: #fff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    background: #313244;
    color: #fff;
    border: none;
    padding: 1rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
}

.faq-answer {
    display: none;
    padding: 1rem;
    background: #393b40;
    margin-top: 0.5rem;
    border-radius: 5px;
}

.subscription-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.subscription-options label {
    background: #313244;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.subscription-options label:hover {
    background: #664c78;
}

.subscription-options input[type="radio"] {
    display: none;
}

.subscription-options input[type="radio"]:checked + label {
    background: #664c78;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.subscription-box.popular {
    background: #14142c;
    border: 2px solid #f9a825;
    transform: scale(1.05);
    position: relative;
}

.subscription-box.popular .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9a825;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0px 4px px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.subscription-box.popular .price {
    font-size: 1.8rem;
    font-weight: bold;
}

.subscription-box.advantage {
    background: #14142c;
    border: 2px solid #28A745;
    transform: scale(1.05);
    position: relative;
}

.subscription-box.advantage .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #28A745;
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0px 4px px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.subscription-box.advantage .price {
    font-size: 1.8rem;
    font-weight: bold;
}