.pricing-container {
            padding: 6rem 10px;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
            color: white;
        }
        
        .pricing-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .pricing-header p,.pricing-header h2 {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 1rem;
        }
        
        .pricing-card {
            background: white;
            border-radius: 16px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .pricing-card.featured {
            border: 3px solid #fde68a;
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            /* content: 'Most Popular'; */
            content: 'Featured';
            letter-spacing: 1px;
            position: absolute;
            top: 18px;
            right: -47px;
            background: linear-gradient(135deg, #fde68a, #faec6a);
            color: #000;
            padding: 0.5rem 3rem;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.875rem;
        }
        
        .plan-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        
        .plan-price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary);
            /* margin-bottom: 0.5rem; */
        }
        
        .plan-price small {
            font-size: 1.2rem;
            color: #64748b;
        }
        
        .plan-period {
            color: #64748b;
            margin-bottom: 2rem;
        }
        
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }
        
        .plan-features li {
            /* padding: 0.75rem 0; */
            padding: 5px 0;
            /* display: flex;
            align-items: center;
            gap: 0.75rem; */
            border-bottom: 1px solid #f1f5f9;
        }
        
        .plan-features li i {
            color: #6366f1;
            font-size: 1.2rem;
        }
        
        .plan-features li.disabled {
            opacity: 0.4;
        }
        
        .plan-features li.disabled i {
            color: #cbd5e1;
        }
        
        .btn-select-plan {
            width: 100%;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-select-plan.primary {
            background: var(--primary);
            color: white;
        }
        
        .btn-select-plan.primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .btn-select-plan.secondary {
            background: #f1f5f9;
            color: var(--dark);
        }
        
        .btn-select-plan.secondary:hover {
            background: #e2e8f0;
        }
        
        .redeem-code-section {
            max-width: 600px;
            /* margin: 3rem auto; */
            margin: 2rem 1rem;
            padding: 2rem;
            background: white;
            border-radius: 16px;
        }
        
        .redeem-code-section h3 {
            text-align: center;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 500;
        }
        
        .code-input-group {
            display: flex;
            gap: 1rem;
        }
        
        .code-input-group input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .code-input-group input:focus {
            outline: none;
            border-color: var(--primary);
        }

.pricing-yellow-note {
    /* background: #ffd700; */
    background: #fde68a;
    color: black;
    padding: 2px 10px;
    font-weight:bold;
    width: max-content;
    margin: 3px auto;
    border-radius: 4px;
}


.common-section { 
    max-width: 90%;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
}
.common-section .rules {

}
.common-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.common-section p{
    font-size: 1.1rem;
    font-weight: 500; 
    color: var(--primary); 
    margin-top: 5px;
    margin-bottom: 5px;
}

.common-section i {
    font-weight: 500;
    margin-right: 5px;
} 

.more-credits-section {
    max-width: 300px;
    /* margin: 3rem auto; */
    margin: 2rem 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.more-credits-section h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 767px) {
    .common-section p {
        font-size: 0.8rem;
    } 
    
    .pricing-yellow-note {
        width: auto;
        font-size: 1.1rem !important;
    }
}