/* PREMIUM PAGE STYLES */
.premium-page {
    padding-top: 60px;
    padding-bottom: 100px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.pkg-card {
    background-color: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: 0 4px 30px rgba(191, 0, 255, 0.05);
}

.pkg-card:hover {
    transform: translateY(-8px);
    border-color: rgba(191, 0, 255, 0.4);
    box-shadow: 0 15px 40px rgba(191, 0, 255, 0.15), inset 0 0 20px rgba(191, 0, 255, 0.05);
}

.premium-card {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.2), inset 0 0 15px rgba(191, 0, 255, 0.1);
    transform: scale(1.03);
}
.premium-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 50px rgba(191, 0, 255, 0.3), inset 0 0 25px rgba(191, 0, 255, 0.15);
}

.premium-badge-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--accent);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.pkg-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #333;
}

.pkg-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.pkg-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.pkg-price .period {
    font-size: 1rem;
    color: #888;
    font-weight: 600;
}

.pkg-desc {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pkg-features {
    flex-grow: 1;
    margin-bottom: 40px;
}

.pkg-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #ddd;
    font-weight: 500;
}

.pkg-features li.disabled {
    color: #666;
    text-decoration: line-through;
}

.pkg-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.pkg-action {
    margin-top: auto;
}

.pkg-btn {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 1px solid #555;
    color: #888;
}

.btn-primary {
    background: var(--accent);
    border: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(191, 0, 255, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 16px rgba(191, 0, 255, 0.4);
}
