/* Verification Modal Styles */
.ram-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ram-verification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ram-verification-modal {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    border: 3px solid #1a1a1a;
    box-shadow: 8px 8px 0px #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
}

.ram-verification-overlay.active .ram-verification-modal {
    transform: scale(1);
}

.ram-modal-header {
    background: #f0f0f0;
    padding: 15px 20px;
    border-bottom: 3px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ram-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.ram-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #1a1a1a;
    padding: 0;
    transition: transform 0.2s;
}

.ram-modal-close:hover {
    transform: rotate(90deg);
}

.ram-modal-body {
    padding: 25px;
}

/* Step Indicator */
.ram-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    gap: 10px;
}

.ram-step {
    text-align: center;
    opacity: 0.5;
}

.ram-step.active {
    opacity: 1;
}

.ram-step-number {
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 5px;
}

.ram-step.active .ram-step-number {
    background: #2ecc71;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.ram-step-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.ram-step-arrow {
    font-weight: bold;
    color: #ddd;
}

/* Instructions */
.ram-instruction-box {
    background: #f9f9f9;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.ram-instruction-box h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.ram-instruction-box ol {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.ram-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    text-align: center;
    background: #e8f5e9;
    padding: 8px;
    border-radius: 4px;
}

/* Actions */
.ram-action-section {
    text-align: center;
    margin-bottom: 20px;
}

.ram-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    border: 3px solid #1a1a1a;
    box-shadow: 4px 4px 0px #1a1a1a;
    transition: all 0.2s;
}

.ram-whatsapp-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #1a1a1a;
}

.ram-whatsapp-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px #1a1a1a;
}

/* Verify Section */
.ram-verify-section {
    border-top: 2px solid #eee;
    padding-top: 20px;
}

.ram-verify-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.ram-link-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

.ram-link-input:focus {
    border-color: #2ecc71;
    outline: none;
}

.ram-verify-btn {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ram-verify-btn:hover {
    background: #333;
}

.ram-verify-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

/* Messages */
.ram-message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    min-height: 20px;
}

.ram-message.success {
    color: #2ecc71;
}

.ram-message.error {
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 480px) {
    .ram-verification-modal {
        width: 95%;
    }

    .ram-step-indicator {
        display: none;
    }
}