.subscriptions {
    padding: 120px 20px;
}

.subscriptions-header {
    text-align: center;
    margin-bottom: 70px;
}

.subscriptions-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.subscriptions-header p {
    opacity: 0.8;
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
}

.search-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 50px;
}

#subscriptionsSearch {
    width: 320px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

#subscriptionsSearch:focus {
    border-color: #4da3ff;
    box-shadow: 0 0 20px rgba(77,163,255,0.25);
}

#subscriptionsSearch::placeholder {
    color: rgba(255,255,255,0.5);
}

.roles {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 320px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #4da3ff;
    box-shadow: 0 0 25px rgba(77,163,255,0.2);
}

.card h2 {
    margin-bottom: 15px;
    color: #4da3ff;
}

.card p {
    opacity: 0.8;
    line-height: 1.7;
}

.perk-hint {
    font-size: 15px;
    font-weight: bold;
    color: #4da3ff;
    transition: 0.3s ease;
    margin-top: 15px;
}

.perks {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    margin-top: 0;
}

.card.active .perks {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.card ul {
    padding-left: 18px;
    margin: 0;
}

.card li {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 5px;
}

.price {
    margin-bottom: 5px;
    color: #4da3ff;
    font-weight: bold;
}