/* Payment System Styles - Modern Neon Design */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

:root {
    --neon-cyan: #00f3ff;
    --neon-purple: #b026ff;
    --neon-pink: #ff00ff;
    --neon-blue: #0066ff;
    --neon-green: #00ff88;
    --dark-bg: #0a0a0f;
    --dark-card: rgba(15, 15, 25, 0.8);
    --dark-card-border: rgba(0, 243, 255, 0.3);
    --glow-intensity: 0.8;
}

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

body.neon-body {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.neon-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.neon-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--neon-cyan);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--neon-purple);
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--neon-pink);
    bottom: 20%;
    left: 30%;
    animation-delay: 6s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: var(--neon-blue);
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

/* Neon Card */
.neon-card {
    position: relative;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 243, 255, 0.1),
        inset 0 0 60px rgba(0, 243, 255, 0.05);
    overflow: hidden;
    z-index: 1;
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { 
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(0, 243, 255, 0.1),
            inset 0 0 60px rgba(0, 243, 255, 0.05);
    }
    50% { 
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 60px rgba(0, 243, 255, 0.2),
            inset 0 0 80px rgba(0, 243, 255, 0.1);
    }
}

.neon-card-header {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(176, 38, 255, 0.1) 100%);
    padding: 30px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 243, 255, 0.3);
    overflow: hidden;
}

.neon-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.3) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-container {
    margin-bottom: 20px;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.neon-logo {
    max-height: 80px;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.6));
}

.neon-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    animation: titleShine 3s ease-in-out infinite;
    margin: 0;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.neon-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.neon-card-body {
    padding: 40px;
    position: relative;
}

/* Alerts */
.neon-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid;
    backdrop-filter: blur(10px);
    animation: alertSlide 0.5s ease-out;
}

@keyframes alertSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neon-alert-success {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.neon-alert-danger {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0040;
    color: #ff0040;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.neon-alert-info {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.neon-alert-warning {
    background: rgba(255, 200, 0, 0.1);
    border-color: #ffc800;
    color: #ffc800;
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.3);
}

.neon-alert-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Info Box */
.neon-info-box {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
}

.neon-info-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.neon-icon {
    font-size: 1.3rem;
}

.neon-info-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.neon-info-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.neon-info-item:last-child {
    border-bottom: none;
}

.neon-info-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.neon-info-value {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* Code Box */
.neon-code-box {
    background: rgba(176, 38, 255, 0.1);
    border: 1px solid rgba(176, 38, 255, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
}

.neon-code-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.neon-code {
    background: rgba(0, 0, 0, 0.3);
    color: var(--neon-purple);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid rgba(176, 38, 255, 0.5);
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.3);
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.8);
}

/* Form Elements */
.neon-form {
    margin-top: 20px;
}

.neon-form-group {
    margin-bottom: 25px;
    position: relative;
}

.neon-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.neon-label-icon {
    font-size: 1.2rem;
}

.neon-amount-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(176, 38, 255, 0.1));
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.neon-currency {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

.neon-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

/* Input Fields */
.neon-input,
.neon-select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.neon-input:focus,
.neon-select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(0, 243, 255, 0.5),
        inset 0 0 20px rgba(0, 243, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.neon-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.neon-form-group.neon-focused .neon-label {
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(176, 38, 255, 0.8);
}

/* Select Wrapper */
.neon-select-wrapper {
    position: relative;
}

.neon-select {
    appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.neon-select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-cyan);
    pointer-events: none;
    font-size: 0.8rem;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-40%); }
}

/* Button */
.neon-button-wrapper {
    margin-top: 30px;
}

.neon-button {
    position: relative;
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 0 30px rgba(0, 243, 255, 0.5),
        0 0 60px rgba(176, 38, 255, 0.3);
}

.neon-button-text {
    position: relative;
    z-index: 2;
}

.neon-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.neon-button:hover .neon-button-glow {
    width: 300px;
    height: 300px;
}

.neon-button-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.neon-button:hover .neon-button-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.neon-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 40px rgba(0, 243, 255, 0.8),
        0 0 80px rgba(176, 38, 255, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.5);
}

.neon-button:active {
    transform: translateY(0);
}

.neon-button-loading {
    pointer-events: none;
    opacity: 0.7;
}

.neon-button-loading .neon-button-glow {
    animation: buttonPulse 1s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% { 
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Footer */
.neon-footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

.neon-footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.neon-lock-icon {
    font-size: 1.2rem;
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 768px) {
    .neon-card-body {
        padding: 25px;
    }
    
    .neon-title {
        font-size: 1.5rem;
    }
    
    .neon-amount {
        font-size: 2rem;
    }
    
    .shape {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Container adjustments */
.container {
    position: relative;
    z-index: 1;
}

/* Bootstrap overrides */
.card {
    border: none;
    background: transparent;
}

.shadow {
    box-shadow: none !important;
}
