.kevin-iptv-plans {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.kevin-iptv-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.5rem;
}

.kevin-iptv-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.kevin-iptv-plan {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.kevin-iptv-plan:hover {
    transform: translateY(-5px);
}

.kevin-iptv-plan.highlighted {
    border: 2px solid #4CAF50;
    position: relative;
}

.kevin-iptv-plan.highlighted::before {
    content: "Best Plan";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.kevin-iptv-plan h3 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.5rem;
}

.kevin-iptv-price {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.kevin-iptv-select-plan {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.kevin-iptv-select-plan:hover {
    background: #45a049;
}

.kevin-iptv-order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kevin-iptv-order-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.kevin-iptv-submit-order {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s ease;
}

.kevin-iptv-submit-order:hover {
    background: #45a049;
}

.kevin-iptv-thank-you {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.kevin-iptv-thank-you h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.order-summary {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.order-summary h3 {
    margin-top: 0;
    color: #333;
}

.order-summary p {
    margin: 0.5rem 0;
    color: #555;
}

.payment-instructions {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 5px;
}

.payment-instructions h3 {
    margin-top: 0;
    color: #333;
}

.payment-instructions p {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.6;
} 