.obuna-sec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.plan-card {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    background-color: #202425;
    color: #ffffff;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.featured {
    background: linear-gradient(135deg, #202425 0%, #2a3a3a 100%);
    border: 2px solid yellowgreen;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: yellowgreen;
    color: #202425;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.plan-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid yellowgreen;
    color: yellowgreen;
}

.plan-features {
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    font-size: 16px;
    list-style: none;
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
}

.price-container {
    margin: 30px 0;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: yellowgreen;
}

.currency {
    font-size: 16px;
    display: block;
    margin-top: 5px;
    color: #aaa;
}

.plan-button {
    width: 100%;
    padding: 12px 0;
    border: 2px solid yellowgreen;
    background: rgba(154, 205, 50, 0.1);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.plan-button:hover {
    background: yellowgreen;
    color: #202425;
}

.featured .plan-button {
    background: yellowgreen;
    color: #202425;
}

.featured .plan-button:hover {
    background: #202425;
    color: yellowgreen;
}

/* Premium tarif uchun alohida stil */
.premium .plan-features li:before {
    content: "★";
    color: gold;
}
.premium .plan-title {
    color: gold;
}

.premium .plan-features li strong {
    color: gold;
}

/* Pro tarif uchun alohida stil */
.pro .plan-features li:before {
    content: "⚡";
}
.pro .plan-title {
    color:darkgoldenrod;
}

.pro .price {
    font-size: 36px;
    font-weight: 700;
    color: darkgoldenrod;
}

.pro .plan-features li strong {
    color: darkgoldenrod;
}

/* lite tarifi uchun alohida stil */
.lite .plan-features li strong {
    color: green;
}
.lite .plan-title {
    color: green;
}
.lite .price {
    font-size: 36px;
    font-weight: 700;
    color: green;
}

.plan-features li:before {
    content: "✓";
    color: yellowgreen;
    position: absolute;
    left: 0;
}

/* obuna-app */
.otolov {
    display: none;
}

.payment-systems {
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.payment-container {
    position: relative;
    background-color: #1a1c1c;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.o-close-btn {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
}

.payment-title {
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.payment-option:hover {
    transform: scale(1.05);
}

.payment-option img {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.payment-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .payment-options {
        gap: 20px;
    }
    
    .payment-option img {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .obuna-sec {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        max-width: 350px;
        margin: 0 auto;
    }
}