:root {
    --aurora-bg: #050508;
    --aurora-surface: #0d0d14;
    --aurora-surface-2: #141420;
    --aurora-surface-3: #1c1c2d;
    --aurora-border: rgba(255,255,255,0.08);
    --aurora-border-2: rgba(255,255,255,0.12);
    --aurora-text: #ffffff;
    --aurora-text-2: #b8b8c8;
    --aurora-text-3: #7a7a95;
    --aurora-primary: #00ffcc;
    --aurora-primary-rgb: 0, 255, 204;
    --aurora-secondary: #8b5cf6;
    --aurora-secondary-rgb: 139, 92, 246;
    --aurora-accent: #60a5fa;
    --aurora-accent-rgb: 96, 165, 250;
    --aurora-success: #34d399;
    --aurora-warning: #fbbf24;
    --aurora-danger: #f87171;
    --aurora-gradient: linear-gradient(135deg, var(--aurora-primary), var(--aurora-accent));
    --aurora-glow: 0 0 60px rgba(0, 255, 204, 0.15);
    --aurora-glow-strong: 0 0 100px rgba(0, 255, 204, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--aurora-bg);
    min-height: 100vh;
    color: var(--aurora-text);
    overflow-x: hidden;
}

.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: auroraFloat 15s ease-in-out infinite;
}

.aurora-blob-1 {
    width: 800px;
    height: 800px;
    background: var(--aurora-secondary);
    top: -300px;
    left: -200px;
    animation-delay: 0s;
    opacity: 0.5;
}

.aurora-blob-2 {
    width: 700px;
    height: 700px;
    background: var(--aurora-primary);
    bottom: -250px;
    right: -200px;
    animation-delay: -5s;
    opacity: 0.4;
}

.aurora-blob-3 {
    width: 500px;
    height: 500px;
    background: var(--aurora-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.35;
}

@keyframes auroraFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(10px, 10px) scale(1.02); }
}

.aurora-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.aurora-main {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.aurora-header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aurora-logo {
    height: 48px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.aurora-logo:hover {
    transform: scale(1.05);
}

.aurora-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--aurora-primary-rgb), 0.1);
    border: 1px solid rgba(var(--aurora-primary-rgb), 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--aurora-primary);
}

.aurora-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--aurora-primary);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--aurora-primary-rgb), 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(var(--aurora-primary-rgb), 0); }
}

.aurora-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.aurora-panel {
    width: 100%;
    max-width: 800px;
}

.aurora-card {
    background: linear-gradient(180deg, rgba(13, 13, 20, 0.95) 0%, rgba(20, 20, 32, 0.98) 100%);
    border: 1px solid var(--aurora-border-2);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        var(--aurora-glow),
        0 32px 64px -16px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.aurora-card-header {
    padding: 28px 32px 20px;
    text-align: center;
    border-bottom: 1px solid var(--aurora-border);
    margin-bottom: 0;
}

.aurora-header-logo {
    width: 260px;
    margin-bottom: -18px;
    filter: drop-shadow(0 0 30px rgba(0, 255, 204, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(0, 255, 204, 0.6)); }
}

.aurora-card-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, var(--aurora-primary) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 255, 204, 0.3);
    letter-spacing: -0.5px;
}

.aurora-card-subtitle {
    font-size: 16px;
    color: var(--aurora-text-2);
    font-weight: 500;
}

.aurora-card-body {
    padding: 28px 32px;
}

/* Grid Layout for Payment Section */
.aurora-payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 16px;
}

.aurora-grid-wallet {
    grid-area: 1 / 1 / 2 / 3;
}

.aurora-grid-amount {
    grid-area: 2 / 1 / 3 / 2;
}

.aurora-grid-warning {
    grid-area: 2 / 2 / 3 / 3;
}

.aurora-grid-timer {
    grid-area: 3 / 1 / 4 / 2;
}

/* Row 3 Right: Butonlar */
.aurora-grid-buttons {
    grid-area: 3 / 2 / 4 / 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Grid içindeki cardların tam yükseklik alması */
.aurora-grid-wallet .aurora-wallet-card,
.aurora-grid-amount .aurora-crypto-amount,
.aurora-grid-timer .aurora-timer,
.aurora-grid-warning .aurora-warning {
    height: 100%;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .aurora-payment-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .aurora-grid-wallet { grid-area: auto; }
    .aurora-grid-amount { grid-area: auto; }
    .aurora-grid-timer { grid-area: auto; }
    .aurora-grid-warning { grid-area: auto; }
    .aurora-grid-buttons { grid-area: auto; }
    
    .aurora-panel {
        max-width: 520px;
    }
}

.aurora-amount-display {
    background: linear-gradient(145deg, rgba(28, 28, 45, 0.8), rgba(13, 13, 20, 0.9));
    border: 1px solid rgba(0, 255, 204, 0.15);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 60px rgba(0, 255, 204, 0.08);
}

.aurora-amount-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--aurora-gradient);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.aurora-amount-display::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(0, 255, 204, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.aurora-amount-label {
    font-size: 13px;
    font-weight: bold;
    color: var(--aurora-text-2);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: -6px;
    position: relative;
    z-index: 1;
}

.aurora-amount-value {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 6px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.aurora-amount-usd {
    font-size: 20px;
    color: var(--aurora-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
}

.aurora-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 
        0 0 40px rgba(96, 165, 250, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.aurora-timer-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(139, 92, 246, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.2);
}

.aurora-timer-content {
    text-align: left;
}

.aurora-timer-label {
    font-size: 15px;
    color: var(--aurora-text-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.aurora-timer-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--aurora-accent);
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

.aurora-section-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--aurora-text-2);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.aurora-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--aurora-border-2), transparent);
}

.aurora-crypto-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.aurora-crypto-option {
    background: linear-gradient(145deg, var(--aurora-surface-3), var(--aurora-surface-2));
    border: 2px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.aurora-crypto-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.aurora-crypto-option:hover:not(.disabled):not(.cancelled) {
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.1), var(--aurora-surface-2));
    border-color: var(--aurora-primary);
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px -10px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 255, 204, 0.15);
}

.aurora-crypto-option:hover:not(.disabled):not(.cancelled)::before {
    opacity: 1;
}

.aurora-crypto-option.selected {
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.15), var(--aurora-surface-2));
    border-color: var(--aurora-primary);
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.2);
}

.aurora-crypto-option.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.aurora-crypto-option.cancelled {
    opacity: 0.25;
    pointer-events: none;
}

.aurora-crypto-option.cancelled::after {
    content: '✕';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: var(--aurora-danger);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.aurora-crypto-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.aurora-crypto-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--aurora-text);
    position: relative;
    z-index: 1;
}

.aurora-crypto-network {
    font-size: 11px;
    color: var(--aurora-text-3);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.aurora-payment-section {
    display: none;
}

.aurora-payment-section.active {
    display: block;
}

.aurora-wallet-card {
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.08), rgba(13, 13, 20, 0.9));
    border: 2px solid rgba(0, 255, 204, 0.25);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(0, 255, 204, 0.1);
}

.aurora-wallet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.aurora-wallet-label {
    font-size: 16px;
    font-weight: 900;
    color: var(--aurora-text-2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.aurora-network-badge {
    padding: 7px 16px;
    background: var(--aurora-gradient);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.aurora-wallet-address {
    font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    word-break: break-all;
    line-height: 1.8;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
    letter-spacing: 0.5px;
}

.aurora-wallet-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.aurora-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(145deg, var(--aurora-surface-2), var(--aurora-surface-3));
    border: 1px solid var(--aurora-border-2);
    border-radius: 12px;
    color: var(--aurora-text-2);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.aurora-action-btn:hover {
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.1), var(--aurora-surface-2));
    border-color: var(--aurora-primary);
    color: var(--aurora-primary);
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.15);
}

.aurora-action-btn svg {
    width: 20px;
    height: 20px;
}

.aurora-crypto-amount {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.12), rgba(96, 165, 250, 0.08));
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 50px rgba(0, 255, 204, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.aurora-crypto-amount::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(0, 255, 204, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.aurora-crypto-amount-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.aurora-crypto-amount-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--aurora-text-2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.aurora-copy-btn {
    padding: 8px 18px;
    background: rgba(0, 255, 204, 0.2);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 10px;
    color: var(--aurora-primary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.aurora-copy-btn:hover {
    background: rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

.aurora-crypto-amount-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--aurora-primary);
    text-shadow: 0 0 40px rgba(0, 255, 204, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.aurora-warning {
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 18px;
}

.aurora-warning-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--aurora-warning);
    font-size: 12px;
    margin-bottom: 8px;
}

.aurora-warning-list {
    list-style: none;
    font-size: 13px;
    color: var(--aurora-text-1);
    line-height: 1.9;
    font-weight: 600;
}

.aurora-warning-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.aurora-warning-list li::before {
    content: '›';
    color: var(--aurora-warning);
    font-weight: 700;
    font-size: 16px;
}

.aurora-btn-primary {
    width: 100%;
    padding: 18px 28px;
    background: var(--aurora-gradient);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 8px 32px rgba(0, 255, 204, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.aurora-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 20%, rgba(255,255,255,0.3) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.7s;
}

.aurora-btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--aurora-gradient);
    border-radius: 20px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    transition: opacity 0.4s;
}

.aurora-btn-primary:hover::before {
    transform: translateX(100%);
}

.aurora-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(0, 255, 204, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.aurora-btn-primary:hover::after {
    opacity: 0.7;
}

.aurora-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.aurora-btn-cancel {
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 8px 32px rgba(239, 68, 68, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.aurora-btn-cancel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 20%, rgba(255,255,255,0.3) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.7s;
}

.aurora-btn-cancel::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    border-radius: 20px;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
    transition: opacity 0.4s;
}

.aurora-btn-cancel:hover::before {
    transform: translateX(100%);
}

.aurora-btn-cancel:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(239, 68, 68, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.aurora-btn-cancel:hover::after {
    opacity: 0.7;
}

.aurora-min-note {
    text-align: center;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px dashed rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    font-size: 11px;
    color: var(--aurora-danger);
    font-weight: 600;
}

.aurora-loader {
    text-align: center;
    padding: 60px 20px;
}

.aurora-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--aurora-surface-3);
    border-top-color: var(--aurora-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.aurora-loader-text {
    color: var(--aurora-text-3);
    font-size: 14px;
    font-weight: 500;
}

.aurora-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aurora-overlay.active {
    display: flex;
}

.aurora-modal {
    background: linear-gradient(180deg, rgba(13, 13, 20, 0.98) 0%, rgba(20, 20, 32, 0.98) 100%);
    border: 1px solid var(--aurora-border-2);
    border-radius: 28px;
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 80px rgba(0, 255, 204, 0.1),
        0 32px 64px -16px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.aurora-modal-header {
    padding: 36px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--aurora-border);
    background: radial-gradient(ellipse at center top, rgba(0, 255, 204, 0.05) 0%, transparent 70%);
}

.aurora-modal-icon {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 38px;
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.15);
}

.aurora-modal-icon.confirm {
    background: linear-gradient(145deg, rgba(0, 255, 204, 0.2), rgba(0, 255, 204, 0.1));
}

.aurora-modal-icon.warning {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.15);
}

.aurora-modal-icon.success {
    background: linear-gradient(145deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.1));
    box-shadow: 0 0 40px rgba(52, 211, 153, 0.15);
}

.aurora-modal-icon.error {
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.2), rgba(248, 113, 113, 0.1));
    box-shadow: 0 0 40px rgba(248, 113, 113, 0.15);
}

.aurora-modal-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.aurora-modal-subtitle {
    font-size: 15px;
    color: var(--aurora-text-2);
}

.aurora-modal-body {
    padding: 28px 32px;
}

.aurora-modal-preview {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(145deg, var(--aurora-surface-3), var(--aurora-surface-2));
    border: 1px solid var(--aurora-border-2);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 24px;
}

.aurora-modal-preview img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.aurora-modal-preview-name {
    font-weight: 800;
    font-size: 18px;
}

.aurora-modal-preview-network {
    font-size: 13px;
    color: var(--aurora-text-3);
    margin-top: 2px;
}

.aurora-modal-message {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 14px;
    padding: 18px;
    font-size: 14px;
    color: var(--aurora-warning);
    line-height: 1.8;
}

.aurora-modal-footer {
    display: flex;
    gap: 14px;
    padding: 24px 32px 32px;
}

.aurora-modal-btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.aurora-modal-btn.cancel {
    background: var(--aurora-surface-3);
    border: 1px solid var(--aurora-border-2);
    color: var(--aurora-text-2);
}

.aurora-modal-btn.cancel:hover {
    background: rgba(248, 113, 113, 0.15);
    border-color: var(--aurora-danger);
    color: var(--aurora-danger);
}

.aurora-modal-btn.confirm {
    background: var(--aurora-gradient);
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 255, 204, 0.2);
}

.aurora-modal-btn.confirm:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 204, 0.35);
    transform: translateY(-2px);
}

.aurora-modal-btn.danger {
    background: linear-gradient(135deg, var(--aurora-danger), #dc2626);
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(248, 113, 113, 0.2);
}

.aurora-modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.aurora-success-modal {
    background: linear-gradient(180deg, rgba(13, 13, 20, 0.98) 0%, rgba(20, 20, 32, 0.98) 100%);
    border: 1px solid rgba(52, 211, 153, 0.35);
    border-radius: 32px;
    width: 100%;
    max-width: 500px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    box-shadow: 
        0 0 100px rgba(52, 211, 153, 0.15),
        0 32px 64px -16px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

.aurora-success-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--aurora-success), var(--aurora-primary));
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.5);
}

.aurora-success-modal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(52, 211, 153, 0.08) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 32px;
}

.aurora-success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 52px;
    animation: successBounce 0.6s ease;
    box-shadow: 0 0 60px rgba(52, 211, 153, 0.3);
    position: relative;
    z-index: 1;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.15); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.aurora-success-title {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, var(--aurora-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.aurora-success-subtitle {
    font-size: 16px;
    color: var(--aurora-text-2);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.aurora-success-details {
    background: linear-gradient(145deg, var(--aurora-surface-3), var(--aurora-surface-2));
    border: 1px solid var(--aurora-border-2);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 28px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.aurora-success-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--aurora-border);
}

.aurora-success-row:last-child {
    border-bottom: none;
}

.aurora-success-key {
    color: var(--aurora-text-3);
    font-size: 14px;
}

.aurora-success-val {
    color: var(--aurora-text);
    font-size: 14px;
    font-weight: 700;
}

.aurora-progress-bar {
    height: 6px;
    background: var(--aurora-surface-3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.aurora-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--aurora-success), var(--aurora-primary));
    border-radius: 3px;
    animation: progressAnim 4s linear forwards;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
}

@keyframes progressAnim {
    from { width: 0; }
    to { width: 100%; }
}

.aurora-redirect-text {
    color: var(--aurora-text-2);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.aurora-countdown-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--aurora-primary), var(--aurora-success));
    border-radius: 50%;
    color: white;
    font-weight: 900;
    font-size: 15px;
    margin-left: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
}

.aurora-cancelled-modal {
    background: linear-gradient(180deg, rgba(13, 13, 20, 0.98) 0%, rgba(20, 20, 32, 0.98) 100%);
    border: 1px solid rgba(248, 113, 113, 0.35);
    border-radius: 32px;
    width: 100%;
    max-width: 500px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 
        0 0 100px rgba(248, 113, 113, 0.1),
        0 32px 64px -16px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

.aurora-cancelled-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.2), rgba(248, 113, 113, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 52px;
    box-shadow: 0 0 60px rgba(248, 113, 113, 0.2);
}

.aurora-cancelled-list {
    background: linear-gradient(145deg, var(--aurora-surface-3), var(--aurora-surface-2));
    border: 1px solid var(--aurora-border-2);
    border-radius: 20px;
    padding: 16px;
    margin: 28px 0;
}

.aurora-cancelled-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-bottom: 1px solid var(--aurora-border);
}

.aurora-cancelled-item:last-child {
    border-bottom: none;
}

.aurora-cancelled-item img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.aurora-cancelled-item span {
    flex: 1;
    text-align: left;
    color: var(--aurora-text-2);
    font-size: 15px;
    font-weight: 600;
}

.aurora-cancelled-item .x-mark {
    color: var(--aurora-danger);
    font-size: 22px;
    font-weight: 800;
}

.aurora-new-request-btn {
    width: 100%;
    padding: 18px 28px;
    background: var(--aurora-gradient);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 255, 204, 0.2);
}

.aurora-new-request-btn:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 204, 0.35);
    transform: translateY(-2px);
}

.aurora-qr-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aurora-qr-modal.active {
    display: flex;
}

.aurora-qr-box {
    background: linear-gradient(180deg, rgba(13, 13, 20, 0.98) 0%, rgba(20, 20, 32, 0.98) 100%);
    border: 1px solid var(--aurora-border-2);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    max-width: 380px;
    width: 100%;
    box-shadow: 
        0 0 80px rgba(0, 255, 204, 0.1),
        0 32px 64px -16px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

.aurora-qr-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 28px;
}

.aurora-qr-canvas-wrap {
    background: white;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.aurora-qr-close {
    padding: 14px 42px;
    background: var(--aurora-surface-3);
    border: 1px solid var(--aurora-border-2);
    border-radius: 14px;
    color: var(--aurora-text-2);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.aurora-qr-close:hover {
    background: rgba(248, 113, 113, 0.15);
    border-color: var(--aurora-danger);
    color: var(--aurora-danger);
}

.aurora-loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 900;
    align-items: center;
    justify-content: center;
}

.aurora-loading-overlay.active {
    display: flex;
}

.aurora-loading-box {
    text-align: center;
}

.aurora-loading-spinner {
    width: 72px;
    height: 72px;
    border: 4px solid var(--aurora-surface-3);
    border-top-color: var(--aurora-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.2);
}

.aurora-loading-text {
    color: var(--aurora-text);
    font-size: 17px;
    font-weight: 600;
}

.aurora-toast {
    position: fixed;
    top: 32px;
    right: 32px;
    padding: 18px 28px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    z-index: 2000;
    animation: toastSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@keyframes toastSlide {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.aurora-toast.success {
    background: linear-gradient(135deg, var(--aurora-success), #16a34a);
    color: white;
    box-shadow: 0 8px 32px rgba(52, 211, 153, 0.3);
}

.aurora-toast.error {
    background: linear-gradient(135deg, var(--aurora-danger), #dc2626);
    color: white;
    box-shadow: 0 8px 32px rgba(248, 113, 113, 0.3);
}

.aurora-toast.info {
    background: var(--aurora-gradient);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 255, 204, 0.3);
}

.aurora-error {
    text-align: center;
    padding: 56px 28px;
}

.aurora-error-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.2), rgba(248, 113, 113, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 56px;
    box-shadow: 0 0 60px rgba(248, 113, 113, 0.2);
}

.aurora-error-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

.aurora-error-message {
    color: var(--aurora-text-2);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.aurora-error-code {
    display: inline-block;
    background: linear-gradient(145deg, var(--aurora-surface-3), var(--aurora-surface-2));
    border: 1px solid var(--aurora-border-2);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: monospace;
    font-size: 13px;
    color: #ff0000;
    margin-bottom: 32px;
}

.aurora-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--aurora-surface-3);
    border: 1px solid var(--aurora-border-2);
    border-radius: 14px;
    color: var(--aurora-text-2);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.aurora-back-btn:hover {
    background: rgba(0, 255, 204, 0.1);
    border-color: var(--aurora-primary);
    color: var(--aurora-primary);
    box-shadow: 0 4px 20px rgba(0, 255, 204, 0.15);
}

.aurora-completed-box {
    background: linear-gradient(145deg, rgba(52, 211, 153, 0.08), rgba(52, 211, 153, 0.04));
    border: 1px solid rgba(52, 211, 153, 0.25);
    border-radius: 24px;
    padding: 28px;
    margin: 18px 0;
    box-shadow: 0 0 40px rgba(52, 211, 153, 0.08);
}

.aurora-completed-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
}

.aurora-check-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--aurora-success), var(--aurora-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.aurora-completed-header p {
    color: var(--aurora-text);
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.aurora-details-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aurora-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.aurora-detail-key {
    color: var(--aurora-text-3);
    font-size: 14px;
    font-weight: 600;
}

.aurora-detail-val {
    color: var(--aurora-text);
    font-size: 14px;
    font-weight: 700;
}

.aurora-detail-val.aurora-amount {
    color: var(--aurora-success);
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

.aurora-status-pill {
    background: linear-gradient(135deg, var(--aurora-success), var(--aurora-primary));
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(52, 211, 153, 0.3);
}

.aurora-info-footer {
    margin-top: 24px;
    padding: 18px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 14px;
    color: var(--aurora-warning);
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}

.aurora-footer {
    text-align: center;
    padding: 28px;
    color: var(--aurora-text-3);
    font-size: 13px;
}

.aurora-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--aurora-text-2);
}

@media (max-width: 520px) {
    .aurora-header {
        padding: 18px 20px;
    }

    .aurora-crypto-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .aurora-card-body {
        padding: 28px 20px;
    }

    .aurora-amount-value {
        font-size: 40px;
    }

    .aurora-toast {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}