.premium-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pricing-section {
    margin-bottom: 60px;
}

.pricing-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #aaa;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: #1e1e1e;
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.free {
    border: 2px solid #333;
}

.pricing-card.premium {
    border: 2px solid #3ea6ff;
    /* Remove the top line that was causing the weird line */
}

.pricing-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3ea6ff, #1e6bb8);
    /* Remove if you don't want the top accent line */
    display: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-name.free {
    color: #aaa;
}

.plan-name.premium {
    color: #3ea6ff;
}

.plan-description {
    color: #aaa;
    font-size: 1rem;
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.price-amount.free {
    color: white;
}

.price-amount.premium {
    color: #3ea6ff;
}

.price-period {
    color: #aaa;
    font-size: 1rem;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.free {
    color: #666;
}

.feature-icon.premium {
    color: #3ea6ff;
}

.feature-text {
    color: #ddd;
}

.feature-text.disabled {
    color: #666;
    text-decoration: line-through;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.pricing-button.free {
    background-color: #333;
    color: white;
}

.pricing-button.free:hover {
    background-color: #444;
}

.pricing-button.premium {
    background-color: #3ea6ff;
    color: white;
}

.pricing-button.premium:hover {
    background-color: #2d8de4;
}

.pricing-button.coming-soon {
    background-color: #555;
    color: #aaa;
    cursor: not-allowed;
}

.pricing-button.coming-soon:hover {
    background-color: #555;
}

/* Fixed Coming Soon Banner */
.soon-badge {
    position: absolute;
    top: 25px;
    right: -50px;
    background: #3ea6ff;
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Add a subtle gradient background to premium card */
.pricing-card.premium {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    position: relative;
}

/* Optional: Add a subtle shine effect to premium card */
.pricing-card.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3ea6ff, transparent);
}

.faq-section {
    margin-top: 80px;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1e1e1e;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #333;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #252525;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: #aaa;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
    color: #3ea6ff;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .soon-badge {
        top: 12px;
        right: -40px;
        padding: 6px 35px;
        font-size: 0.8rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}