/* Subscription.css - Styles pour l'écran d'activation */

.subscription-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.subscription-card {
    max-width: 500px;
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.subscription-header {
    text-align: center;
    margin-bottom: 30px;
}

.subscription-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.subscription-header h1 {
    color: white;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.subscription-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
}

/* Avantages */
.subscription-benefits {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.subscription-benefits h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    margin-bottom: 12px;
    font-size: 15px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: 20px;
    flex-shrink: 0;
}

/* Prix */
.subscription-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-tag {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
}

.price-amount {
    display: block;
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-period {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Instructions */
.payment-instructions {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.payment-instructions h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.instruction-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.instruction-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #ff8c00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content strong {
    color: white;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 4px 0;
}

/* Boutons */
.subscription-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-logout {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Note */
.subscription-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ff8c00;
}

.subscription-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .subscription-card {
        padding: 20px;
    }

    .subscription-header h1 {
        font-size: 24px;
    }

    .subscription-icon {
        font-size: 50px;
    }

    .price-amount {
        font-size: 30px;
    }
}
