/* Premium Content Block Styles */
.premium-content-block {
    border-left: 4px solid #007cba;
    padding: 20px;
    background: #f8f9fa;
    margin: 25px 0;
    border-radius: 8px;
}

.registration-content-block {
    border-left: 4px solid #28a745;
    padding: 20px;
    background: #f8f9fa;
    margin: 25px 0;
    border-radius: 8px;
}

/* Access Denied Messages */
.access-denied {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.access-denied h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.access-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #007cba;
    color: white;
}

.btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #007cba;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.registration-required {
    text-align: center;
    padding: 30px 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    margin: 20px 0;
}

/* Premium Promotion Styles */
.premium-promotion, .premium-upgrade {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.promotion-header h3, .upgrade-header h3 {
    margin-bottom: 15px;
    font-size: 1.8em;
}

.pricing-section {
    margin: 20px 0;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2em;
}

.current-price {
    font-size: 2.5em;
    font-weight: bold;
}

.discount-badge {
    background: #ff6b6b;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}

.offer-text {
    font-style: italic;
    margin-top: 10px;
}

.or-text {
    margin: 10px 0;
    font-weight: bold;
}

.premium-features, .premium-benefits {
    margin-top: 25px;
    text-align: left;
}

.premium-features h4, .premium-benefits h4 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.premium-features ul, .premium-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-features li, .premium-benefits li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Login Required Messages */
.login-required, .account-login-required {
    text-align: center;
    padding: 50px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.login-required h3, .account-login-required h3 {
    color: #333;
    margin-bottom: 15px;
}

/* Subscription Plans Page */
.subscription-plans-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.plans-header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
}

.plans-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.current-status {
    margin-top: 20px;
    font-size: 1.2em;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    background: white;
    color: #333;
    font-weight: bold;
}

.status-badge.premium {
    background: #28a745;
    color: white;
}

.status-badge.pending {
    background: #ffc107;
    color: #333;
}

.status-badge.rejected {
    background: #dc3545;
    color: white;
}

.status-badge.registered {
    background: #6c757d;
    color: white;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.plan-card.popular {
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.plan-price {
    font-size: 2.5em;
    font-weight: bold;
    color: #667eea;
    margin: 10px 0;
}

.plan-duration {
    color: #666;
    margin-bottom: 10px;
}

.plan-savings {
    color: #28a745;
    font-weight: bold;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.subscribe-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn.primary {
    background: #667eea;
    color: white;
}

.subscribe-btn:not(.primary) {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #667eea;
}

.subscribe-btn:hover {
    background: #5a6fd8;
    color: white;
}

.payment-note {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #28a745;
    font-weight: bold;
}

.payment-process-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.process-step {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 10px auto;
}

.step-content strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.step-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.payment-methods-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.payment-method {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.instructions {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.instructions ol {
    margin-left: 20px;
}

.instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Payment Instructions Page */
.payment-instructions-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.instructions-header {
    text-align: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.pending-notice {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #ffc107;
}

.request-details {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.payment-steps {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.steps-container {
    margin-top: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    background: #007cba;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.reference-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 2px dashed #007cba;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reference-box button {
    background: #007cba;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.whatsapp-message {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #25D366;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}

.payment-methods {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.method-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.method-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.method-number {
    font-size: 1.2em;
    font-weight: bold;
    color: #007cba;
    margin: 10px 0;
}

.important-notes, .support-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.important-notes ul {
    margin-left: 20px;
}

.important-notes li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.support-contacts {
    margin-top: 15px;
}

.contact-item {
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Already Premium Section */
.already-premium {
    text-align: center;
    background: white;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.premium-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.remaining-time {
    margin: 15px 0;
    font-size: 1.2em;
}

.premium-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #667eea;
}

/* Login and Registration Forms */
.premium-login-form,
.premium-register-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.premium-login-form h3,
.premium-register-form h3 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #007cba;
    outline: none;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.user-submit {
    width: 100%;
    padding: 15px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.user-submit:hover {
    background: #005a87;
}

.login-links,
.login-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.login-links a,
.login-link a {
    color: #007cba;
    text-decoration: none;
}

.login-links a:hover,
.login-link a:hover {
    text-decoration: underline;
}

.login-links span {
    margin: 0 10px;
    color: #666;
}

.registration-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

/* Account Page Styles */
.premium-account-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.account-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

.account-header h2 {
    margin: 0 0 10px 0;
    font-size: 2.2em;
}

.account-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.account-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.account-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.info-item label {
    font-weight: bold;
    color: #666;
}

.status-display {
    text-align: center;
}

.status-badge.large {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.status-badge.large.premium {
    background: #28a745;
    color: white;
}

.status-badge.large.pending {
    background: #ffc107;
    color: #333;
}

.status-badge.large.rejected {
    background: #dc3545;
    color: white;
}

.status-badge.large.registered {
    background: #6c757d;
    color: white;
}

.premium-details {
    margin-top: 20px;
}

.premium-details .detail-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.premium-details label {
    font-weight: bold;
    color: #333;
}

.expiry-date,
.remaining-time {
    font-weight: bold;
    color: #28a745;
}

.upgrade-section {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.action-btn:hover {
    background: #007cba;
    color: white;
    transform: translateY(-2px);
}

.action-btn.logout:hover {
    background: #dc3545;
}

.action-btn .icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.action-btn .text {
    font-weight: bold;
}

/* Special Offer Styles */
.offer-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.plan-badge.bonus {
    background: linear-gradient(135deg, #ff9a00, #ff6b6b);
    top: 40px;
    z-index: 2;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2em;
    color: #666;
}

.plan-price {
    font-size: 2.5em;
    font-weight: bold;
    color: #667eea;
}

/* Countdown Timer */
.offer-countdown {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
}

.countdown-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.9em;
    opacity: 0.9;
}

.offer-expired {
    background: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
}

/* Feature Comparison */
.feature-comparison {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.feature-comparison h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 1.8em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.feature-content h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.2em;
}

.feature-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Enhanced Plan Cards */
.plan-card .price-comparison {
    margin: 20px 0;
}

.plan-savings {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .access-actions, .premium-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .btn, .subscribe-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .premium-account-page {
        padding: 10px;
    }
    
    .account-header {
        padding: 20px;
    }
    
    .account-section {
        padding: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .premium-details .detail-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
    
    .countdown-number {
        font-size: 1.5em;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-banner {
        font-size: 1em;
        padding: 12px;
    }
}