/* ═══════════════════════════════════════════════════════════════
   AEGIS Success Page — Payment Confirmation
   ═══════════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a0e17, #131a2b);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.success-container {
    padding: 20px;
    width: 100%;
    max-width: 520px;
}

.success-card {
    background: linear-gradient(135deg, rgba(20,30,48,0.95), rgba(10,14,23,0.98));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-icon circle {
    animation: drawCircle 0.8s ease-out forwards;
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
}

.success-icon path {
    animation: drawCheck 0.4s 0.5s ease-out forwards;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #00c9a7;
    margin-bottom: 12px;
}

.success-message {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 32px;
}

.success-info {
    background: rgba(0,201,167,0.08);
    border: 1px solid rgba(0,201,167,0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    color: #64748b;
    font-size: 14px;
}

.info-value {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.success-steps {
    text-align: left;
    margin-bottom: 32px;
}

.success-steps h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00c9a7, #00a88a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    flex-shrink: 0;
}

.step-text {
    color: #cbd5e1;
    font-size: 15px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-primary {
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00c9a7, #00a88a);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,201,167,0.4);
}

.btn-secondary {
    display: block;
    padding: 14px 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.success-support {
    color: #64748b;
    font-size: 14px;
}

.success-support a {
    color: #00c9a7;
    text-decoration: none;
}

.success-support a:hover {
    text-decoration: underline;
}
