.premium-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.premium-title h2 {
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.premium-title p {
    color: var(--light-color);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.premium-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--light-color));
    border-radius: 3px;
}

.premium-plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.plan-card {
    background: linear-gradient(145deg, #2d2d42 0%, #1a1a2e 100%);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.plan-card.popular {
    border: 1px solid var(--main-color);
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.3);
}

.plan-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--main-color);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.5);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.plan-name {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.plan-price {
    font-size: 2.5rem;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--light-color);
    font-weight: normal;
}

.plan-period {
    color: var(--light-color);
    font-size: 0.9rem;
}

.plan-features {
    margin: 30px 0;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    color: var(--main-color);
    margin-right: 10px;
    font-weight: bold;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: linear-gradient(135deg, var(--main-color), var(--dark-color));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.plan-button:hover {
    background: linear-gradient(135deg, var(--dark-color), var(--main-color));
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.4);
    transform: translateY(-2px);
}

.plan-card.popular .plan-button {
    background: linear-gradient(135deg, var(--dark-color), #c00424);
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4);
}

.plan-card.popular .plan-button:hover {
    background: linear-gradient(135deg, #c00424, var(--dark-color));
}

.plan-detail {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 109, 0.1) 0%, rgba(255, 77, 109, 0) 70%);
}

.plan-detail-1 {
    top: -50px;
    right: -50px;
}

.plan-detail-2 {
    bottom: -50px;
    left: -50px;
}

@media (max-width: 768px) {
    .premium-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card {
        max-width: 100%;
    }
    
    .premium-title h2 {
        font-size: 2rem;
    }
}