/* Main Container Styles */
.lumos-premium-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(255,255,255,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #f1f1f1;
}
/* Header Styles */
.premium-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}
.premium-header h1 {
    color: #ffd700;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}
.premium-header h1 i {
    color: #ffd700;
    margin-right: 10px;
}
.premium-header .subtitle {
    color: #bbb;
    font-size: 16px;
    margin: 0;
}
/* Login Required Message */
.login-required {
    background: #2b2b2b;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #333;
}
.login-required p {
    font-size: 16px;
    margin: 0;
    color: #ccc;
}
.login-required i {
    color: #007bff;
    margin-right: 8px;
}
.login-link {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.login-link:hover {
    color: #0056b3;
    text-decoration: underline;
}
/* Benefits Section */
.benefits-section {
    margin-bottom: 40px;
}
.benefits-section h2 {
    font-size: 22px;
    color: #eee;
    margin-bottom: 15px;
    font-weight: 600;
}
.benefits-section h2 i {
    color: #ffd700;
    margin-right: 10px;
}
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefits-list li {
    padding: 4px 0;
    font-size: 16px;
    color: #ddd;
    border-bottom: 1px solid #292929;
}
.benefits-list li:last-child {
    border-bottom: none;
}
.benefits-list li i {
    color: #28a745;
    margin-right: 10px;
}
/* Premium Plans */
.plans-section h2 {
    font-size: 22px;
    color: #eee;
    margin-bottom: 20px;
    font-weight: 600;
}
.plans-section h2 i {
    color: #ffd700;
    margin-right: 10px;
}
.premium-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.plan-card {
    flex: 1;
    min-width: 160px;
    max-width: 230px;
    padding: 25px 20px;
    background: #2b2b2b;
    border: 2px solid #444;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(255,255,255,0.03);
}
.plan-card:hover {
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.plan-card.selected {
    border-color: #007bff;
    background: #222;
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,123,255,0.2);
}
.plan-card.popular {
    border-color: #ffd700;
    transform: scale(1.05);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #111;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.plan-duration {
    font-size: 18px;
    font-weight: 600;
    color: #eee;
    margin-bottom: 12px;
}
.plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 15px;
}
.plan-savings {
    height: 40px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.savings-amount {
    font-weight: 600;
    color: #28a745;
    margin-top: 5px;
}
.plan-select-btn {
    background: #007bff;
    color: white;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: 600;
    transition: background 0.2s ease;
}
.plan-card:hover .plan-select-btn {
    background: #0069d9;
}
.plan-card.popular .plan-select-btn {
    background: #ffd700;
    color: #111;
}
.plan-card.popular:hover .plan-select-btn {
    background: #e6c200;
}
/* Order Form Section */
.order-form-section {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #333;
}
.order-form-section h2 {
    font-size: 22px;
    color: #eee;
    margin-bottom: 20px;
    font-weight: 600;
}
.order-form-section h2 i {
    color: #ffd700;
    margin-right: 10px;
}
.selected-plan-info {
    margin-bottom: 25px;
    text-align: center;
}
.plan-card-small {
    display: inline-block;
    background: #1a1a1a;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
#create-order-form {
    text-align: center;
}
.order-submit-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-right: 10px;
}
.order-submit-btn:hover {
    background: #218838;
}
.order-cancel-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.order-cancel-btn:hover {
    background: #c82333;
}
/* Order Result Section */
.order-result-section {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid #333;
}
.order-success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}
.order-result-section h2 {
    font-size: 24px;
    color: #eee;
    margin-bottom: 20px;
    font-weight: 600;
}
.order-details {
    background: #1a1a1a;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
    border: 1px solid #444;
}
.order-info-item {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #292929;
}
.order-info-item:last-child {
    border-bottom: none;
}
.order-label {
    font-weight: 600;
    color: #bbb;
}
.order-value {
    color: #f1f1f1;
}
.order-instruction {
    margin-bottom: 25px;
    color: #aaa;
}
.order-instruction i {
    color: #17a2b8;
    margin-right: 8px;
}
.order-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.action-btn {
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}
.action-btn i {
    margin-right: 8px;
}
.pay-now-btn {
    background: #007bff;
    color: white;
}
.pay-now-btn:hover {
    background: #0069d9;
    color: white;
}
.confirm-btn {
    background: #28a745;
    color: white;
}
.confirm-btn:hover {
    background: #218838;
}
.cancel-btn {
    background: #dc3545;
    color: white;
}
.cancel-btn:hover {
    background: #c82333;
}
.email-btn {
    background: #6c757d;
    color: white;
}
.email-btn:hover {
    background: #5a6268;
}
/* Active Premium Section */
.premium-active {
    padding: 30px;
    background: #222;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #333;
}
.premium-badge {
    text-align: center;
    margin-bottom: 20px;
}
.premium-badge i {
    font-size: 40px;
    color: #28a745;
    display: block;
    margin-bottom: 10px;
}
.premium-badge span {
    background: #28a745;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}
.premium-info {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border: 1px solid #444;
}
.premium-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #f1f1f1;
}
.renewal-section {
    text-align: center;
    margin-top: 30px;
}
.renewal-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #eee;
}
.renewal-section p {
    margin-bottom: 20px;
    color: #aaa;
}
.renewal-note {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #ffd700;
    font-size: 14px;
    text-align: left;
    margin-top: 15px;
}
/* Expired Premium Notice */
.premium-expired-notice {
    background: #402c33;
    border: 1px solid #6b424c;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 25px;
    color: #f8d7da;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.premium-expired-notice i {
    font-size: 24px;
    color: #dc3545;
    margin-right: 15px;
}
.premium-expired-notice p {
    margin: 0;
    font-size: 15px;
}
/* Confirmation Message */
.confirmation-message {
    margin-top: 15px;
    padding: 10px;
    background: #3a2f0b;
    border: 1px solid #4a3f1b;
    border-radius: 4px;
    color: #856404;
    text-align: center;
}
.confirmation-message i {
    margin-right: 8px;
}
/* Login Popup Modal */
.lumos-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.lumos-login-modal.show {
    display: flex;
}
.login-modal-content {
    background: #1e1e1e;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    position: relative;
}
.login-modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}
.login-modal-header i {
    font-size: 50px;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}
.login-modal-header h2 {
    color: #ffd700;
    font-size: 24px;
    margin: 0 0 10px 0;
}
.login-modal-header p {
    color: #bbb;
    font-size: 16px;
    margin: 0;
}
.login-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}
.login-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.login-modal-btn i {
    margin-right: 12px;
    font-size: 18px;
}
.login-btn {
    background: #007bff;
    color: white;
}
.login-btn:hover {
    background: #0069d9;
}
.register-btn {
    background: #28a745;
    color: white;
}
.register-btn:hover {
    background: #218838;
}
.close-modal-btn {
    background: #dc3545;
    color: white;
}
.close-modal-btn:hover {
    background: #c82333;
}
.login-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #bbb;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.login-modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
/* Notification */
.lumos-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: 500;
    color: white;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transform: translateX(110%);
    transition: transform 0.3s ease;
    max-width: 320px;
}
.lumos-notification i {
    margin-right: 10px;
}
.lumos-notification.show {
    transform: translateX(0);
}
.lumos-notification-success {
    background: #28a745;
}
.lumos-notification-error {
    background: #dc3545;
}
/* Login Prompt on Plan Selection */
.plan-login-prompt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}
.plan-card:hover .plan-login-prompt {
    opacity: 1;
    visibility: visible;
}
.plan-login-prompt i {
    font-size: 30px;
    color: #ffd700;
    margin-bottom: 15px;
}
.plan-login-prompt p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}
.plan-login-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}
.plan-login-btn:hover {
    background: #0069d9;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .lumos-premium-container {
        padding: 20px 15px;
    }
    .premium-plans {
        flex-direction: column;
        align-items: center;
    }
    .plan-card {
        width: 100%;
        max-width: 100%;
    }
    .plan-card.popular {
        transform: scale(1.02);
    }
    .action-btn {
        width: 100%;
    }
    .order-actions {
        flex-direction: column;
        gap: 10px;
    }
    .lumos-notification {
        left: 20px;
        right: 20px;
        max-width: unset;
    }
    .login-modal-content {
        padding: 20px 15px;
    }
    .login-modal-buttons {
        flex-direction: column;
    }
    .login-modal-btn {
        width: 100%;
    }
}