/* Even/Odd Payment & Activation Styles - Red, Black, White Theme */

.eo-payment-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Icons */
.eo-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.eo-icon-lock {
    width: 32px;
    height: 32px;
}

/* Payment Alert */
.eo-payment-alert {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid #dc2626;
}

.eo-alert-header {
    background: rgba(220, 38, 38, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.eo-alert-header svg {
    color: #dc2626;
}

.eo-alert-header h2 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.eo-alert-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.eo-payment-body {
    padding: 40px 30px;
    background: #ffffff;
}

/* Price Section */
.eo-price-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 12px;
    margin-bottom: 40px;
    border: 2px solid #dc2626;
}

.eo-price-label {
    font-size: 14px;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.eo-price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.eo-price-note {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

/* Payment Instructions */
.eo-payment-instructions {
    margin-bottom: 30px;
}

.eo-payment-instructions h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #000000;
    margin-bottom: 24px;
}

.eo-payment-instructions h3 svg {
    color: #dc2626;
}

.eo-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.eo-steps-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.eo-steps-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.eo-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.eo-steps-list li > div {
    flex: 1;
}

.eo-steps-list strong {
    display: block;
    font-size: 16px;
    color: #000000;
    margin-bottom: 6px;
}

.eo-steps-list p {
    margin: 0;
    color: #525252;
    font-size: 14px;
    line-height: 1.6;
}

.eo-telegram-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.eo-telegram-link:hover {
    color: #991b1b;
    text-decoration: underline;
}

/* Wallet Section */
.eo-wallet-section {
    background: #f5f5f5;
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

.eo-wallet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #000000;
    font-weight: 600;
}

.eo-wallet-header svg {
    color: #dc2626;
}

.eo-wallet-address-container {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 16px;
}

.eo-wallet-address {
    flex: 1;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #000000;
    word-break: break-all;
    line-height: 1.6;
}

.eo-copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.eo-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.eo-copy-btn.copied {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.eo-wallet-warning {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
}

.eo-wallet-warning svg {
    color: #dc2626;
    width: 20px;
    height: 20px;
}

.eo-wallet-warning strong {
    color: #000000;
}

.eo-wallet-warning div {
    color: #525252;
    font-size: 14px;
    line-height: 1.6;
}

/* Activation Section */
.eo-activation-section {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.eo-activation-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #000000;
    margin-bottom: 24px;
}

.eo-activation-section h3 svg {
    color: #dc2626;
}

.eo-activation-form {
    max-width: 500px;
}

.eo-form-group {
    margin-bottom: 20px;
}

.eo-form-group label {
    display: block;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    font-size: 14px;
}

.eo-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    color: #000000;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.eo-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.eo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eo-btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
}

.eo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.eo-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.eo-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.eo-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.eo-message-success {
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    color: #14532d;
}

.eo-message-success svg {
    color: #16a34a;
}

.eo-message-error {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
}

.eo-message-error svg {
    color: #dc2626;
}

.eo-message-admin-error {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
}

.eo-message-admin-error svg {
    color: #dc2626;
}

/* Support Section */
.eo-support-section {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.eo-support-section svg {
    color: #dc2626;
    width: 24px;
    height: 24px;
}

.eo-support-section strong {
    display: block;
    color: #000000;
    margin-bottom: 6px;
    font-size: 16px;
}

.eo-support-section p {
    margin: 0;
    color: #525252;
    font-size: 14px;
}

/* Notice */
.eo-payment-notice {
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    margin: 20px 0;
}

.eo-notice-error {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
}

.eo-notice-error svg {
    color: #dc2626;
}

.eo-payment-notice strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.eo-payment-notice p {
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .eo-payment-container {
        margin: 20px 10px;
    }
    
    .eo-alert-header {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .eo-alert-header h2 {
        font-size: 24px;
    }
    
    .eo-payment-body {
        padding: 24px 20px;
    }
    
    .eo-price-amount {
        font-size: 36px;
    }
    
    .eo-wallet-address-container {
        flex-direction: column;
    }
    
    .eo-copy-btn {
        justify-content: center;
    }
    
    .eo-activation-section {
        padding: 24px 20px;
    }
    
    .eo-steps-list li {
        flex-direction: column;
        gap: 12px;
    }
}
