/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-icutqhj3eh] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

main[b-icutqhj3eh] {
    flex: 1;
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(10px);
}

.sidebar[b-icutqhj3eh] {
    background: linear-gradient(180deg, rgba(21, 61, 111, 0.95) 0%, rgba(44, 83, 100, 0.95) 70%);
    border-right: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 2px 0 15px rgba(0, 255, 255, 0.1);
}

.top-row[b-icutqhj3eh] {
    background: linear-gradient(90deg, rgba(21, 61, 111, 0.9) 0%, rgba(44, 83, 100, 0.9) 100%);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

    .top-row[b-icutqhj3eh]  a, .top-row[b-icutqhj3eh]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: #00ffff;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 0;
    }

        .top-row[b-icutqhj3eh]  a:hover, .top-row[b-icutqhj3eh]  .btn-link:hover {
            text-decoration: none;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        .top-row[b-icutqhj3eh]  a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00ffff, #0080ff);
            transition: width 0.3s ease;
        }

        .top-row[b-icutqhj3eh]  a:hover:after {
            width: 100%;
        }

/* Overlay styling */
.app-overlay[b-icutqhj3eh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn-b-icutqhj3eh 0.3s ease;
}

@keyframes fadeIn-b-icutqhj3eh {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.loading-box[b-icutqhj3eh] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.9), rgba(44, 83, 100, 0.9));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    animation: pulse-b-icutqhj3eh 2s infinite;
}

@keyframes pulse-b-icutqhj3eh {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.4);
    }
}

.spinner[b-icutqhj3eh] {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-top: 3px solid #00ffff;
    border-radius: 50%;
    animation: spin-b-icutqhj3eh 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-icutqhj3eh {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text[b-icutqhj3eh] {
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.content[b-icutqhj3eh] {
    padding: 2rem;
    animation: contentFadeIn-b-icutqhj3eh 0.5s ease;
}

@keyframes contentFadeIn-b-icutqhj3eh {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 640.98px) {
    .top-row[b-icutqhj3eh] {
        justify-content: space-between;
        padding: 0 1rem;
    }

        .top-row[b-icutqhj3eh]  a, .top-row[b-icutqhj3eh]  .btn-link {
            margin-left: 0;
            font-size: 0.9rem;
        }
}

@media (min-width: 641px) {
    .page[b-icutqhj3eh] {
        flex-direction: row;
    }

    .sidebar[b-icutqhj3eh] {
        width: 280px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-icutqhj3eh] {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .top-row[b-icutqhj3eh], article[b-icutqhj3eh] {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-gt8gh2lokp] {
    background-color: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

    .navbar-toggler:hover[b-gt8gh2lokp] {
        background-color: rgba(0, 255, 255, 0.2);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    }

.top-row[b-gt8gh2lokp] {
    min-height: 3.5rem;
    background: linear-gradient(90deg, rgba(21, 61, 111, 0.95), rgba(44, 83, 100, 0.95));
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding: 0 1rem;
}

.navbar-brand[b-gt8gh2lokp] {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.bi[b-gt8gh2lokp] {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-size: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

/* Update icon styles to use Bootstrap Icons classes */
.nav-item[b-gt8gh2lokp]  .bi {
    color: #00ffff !important;
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.nav-item[b-gt8gh2lokp]  a.active .bi {
    color: #ffffff !important;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.8));
}

.nav-item[b-gt8gh2lokp]  a:hover .bi {
    transform: translateY(-2px);
    color: #ffffff !important;
}

.nav-item[b-gt8gh2lokp] {
    font-size: 0.95rem;
    padding-bottom: 0.6rem;
    position: relative;
}

    .nav-item:first-of-type[b-gt8gh2lokp] {
        padding-top: 1.5rem;
    }

    .nav-item:last-of-type[b-gt8gh2lokp] {
        padding-bottom: 1.5rem;
    }

    .nav-item[b-gt8gh2lokp]  a {
        color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        height: 3.2rem;
        display: flex;
        align-items: center;
        line-height: 3.2rem;
        padding: 0 1.2rem;
        margin: 0 0.8rem 0.4rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

        .nav-item[b-gt8gh2lokp]  a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .nav-item[b-gt8gh2lokp]  a:hover:before {
            left: 100%;
        }

        .nav-item[b-gt8gh2lokp]  a.active {
            background: linear-gradient(90deg, rgba(0, 255, 255, 0.15), rgba(0, 128, 255, 0.15));
            color: #ffffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

            .nav-item[b-gt8gh2lokp]  a.active:after {
                content: '';
                position: absolute;
                right: 10px;
                width: 8px;
                height: 8px;
                background: #00ffff;
                border-radius: 50%;
                box-shadow: 0 0 10px #00ffff;
                animation: blink-b-gt8gh2lokp 1.5s infinite;
            }

@keyframes blink-b-gt8gh2lokp {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.nav-item[b-gt8gh2lokp]  a:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

/* Network indicator */
.nav-item.network-indicator[b-gt8gh2lokp] {
    padding: 1rem 1.2rem;
    margin: 0.5rem 0.8rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.network-status[b-gt8gh2lokp] {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.network-dot[b-gt8gh2lokp] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-b-gt8gh2lokp 2s infinite;
}

    .network-dot.testnet[b-gt8gh2lokp] {
        background: #ff6b6b;
        box-shadow: 0 0 10px #ff6b6b;
    }

    .network-dot.mainnet[b-gt8gh2lokp] {
        background: #4cd964;
        box-shadow: 0 0 10px #4cd964;
    }

@keyframes pulse-b-gt8gh2lokp {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-gt8gh2lokp] {
        display: none;
    }

    .collapse[b-gt8gh2lokp] {
        display: block;
    }

    .nav-scrollable[b-gt8gh2lokp] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        padding-bottom: 2rem;
    }

        .nav-scrollable[b-gt8gh2lokp]::-webkit-scrollbar {
            width: 6px;
        }

        .nav-scrollable[b-gt8gh2lokp]::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
            border-radius: 3px;
        }

        .nav-scrollable[b-gt8gh2lokp]::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #00ffff, #0080ff);
            border-radius: 3px;
        }

            .nav-scrollable[b-gt8gh2lokp]::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(180deg, #00ffff, #0080ff);
            }
}

/* Adjust nav menu for mobile language switcher */
@media (max-width: 768px) {
    .nav-item.network-indicator[b-gt8gh2lokp] {
        margin-bottom: 0.5rem;
    }

    .language-switcher[b-gt8gh2lokp] {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
}
/* /Pages/Download.razor.rz.scp.css */
:host[b-suaddio2pk] {
    display: block;
    animation: pageLoad-b-suaddio2pk 0.6s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pageLoad-b-suaddio2pk {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container[b-suaddio2pk] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
h1[b-suaddio2pk] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    h1[b-suaddio2pk]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

    h1 .bi[b-suaddio2pk] {
        font-size: 2.2rem;
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    }

/* Download Card */
.download-card[b-suaddio2pk] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.25), rgba(44, 83, 100, 0.25));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .download-card[b-suaddio2pk]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #0080ff, #00ffff);
        background-size: 200% 100%;
        animation: gradientFlow-b-suaddio2pk 3s infinite linear;
    }

@keyframes gradientFlow-b-suaddio2pk {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Card Headers */
.card-header[b-suaddio2pk] {
    color: #00ffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 15px;
    border-left: 4px solid #00ffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .card-header .bi[b-suaddio2pk] {
        font-size: 1.4rem;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
    }

/* Form Controls */
.form-group[b-suaddio2pk] {
    margin-bottom: 1.5rem;
}

.form-label[b-suaddio2pk] {
    color: #00ffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .form-label .bi[b-suaddio2pk] {
        font-size: 1.1rem;
        filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
    }

.required[b-suaddio2pk] {
    color: #ff6b6b;
    margin-left: 4px;
}

/* Tooltips */
.tooltip-icon[b-suaddio2pk] {
    color: rgba(255, 255, 255, 0.5);
    cursor: help;
    transition: all 0.3s ease;
}

    .tooltip-icon:hover[b-suaddio2pk] {
        color: #00ffff;
        transform: scale(1.1);
    }

/* Form Inputs */
.form-control[b-suaddio2pk], .form-select[b-suaddio2pk] {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus[b-suaddio2pk], .form-select:focus[b-suaddio2pk] {
        background: rgba(0, 0, 0, 0.4);
        border-color: #00ffff;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        color: #ffffff;
        outline: none;
    }

    .form-control[b-suaddio2pk]::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

/* Transaction Hash Input */
.transaction-hash-group[b-suaddio2pk] {
    position: relative;
}

.transaction-hash-input[b-suaddio2pk] {
    font-family: 'Consolas', 'Monaco', monospace;
    letter-spacing: 0.5px;
}

.hash-preview[b-suaddio2pk] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

/* Quick Actions */
.quick-actions[b-suaddio2pk] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.quick-action-btn[b-suaddio2pk] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .quick-action-btn:hover[b-suaddio2pk] {
        background: rgba(0, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .quick-action-btn .bi[b-suaddio2pk] {
        font-size: 0.9rem;
    }

/* Network Badge */
.network-badge[b-suaddio2pk] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Checkbox Styling */
.form-check-input[b-suaddio2pk] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    appearance: none;
    position: relative;
}

    .form-check-input:checked[b-suaddio2pk] {
        background: #00ffff;
        border-color: #00ffff;
    }

        .form-check-input:checked[b-suaddio2pk]:after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
        }

.form-check-label[b-suaddio2pk] {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.5rem;
    cursor: pointer;
}

    .form-check-label a[b-suaddio2pk] {
        color: #00ffff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .form-check-label a:hover[b-suaddio2pk] {
            color: #ffffff;
            text-decoration: underline;
        }

/* Action Buttons */
.action-buttons[b-suaddio2pk] {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.action-btn[b-suaddio2pk] {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

    .action-btn[b-suaddio2pk]:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .action-btn:hover[b-suaddio2pk]:before {
        width: 300px;
        height: 300px;
    }

    .action-btn:hover[b-suaddio2pk] {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
    }

    .action-btn:active[b-suaddio2pk] {
        transform: translateY(-1px);
    }

    .action-btn:disabled[b-suaddio2pk] {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

        .action-btn:disabled:hover[b-suaddio2pk]:before {
            width: 0;
            height: 0;
        }

.datachain-btn-check[b-suaddio2pk] {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    color: #00ffff;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.btn-download[b-suaddio2pk] {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: white;
}

.action-btn .bi[b-suaddio2pk] {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.action-btn:hover .bi[b-suaddio2pk] {
    transform: translateY(-2px);
}

.spinning[b-suaddio2pk] {
    animation: spin-b-suaddio2pk 1s linear infinite;
}

@keyframes spin-b-suaddio2pk {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Progress Bar */
.download-progress[b-suaddio2pk] {
    width: 100%;
    margin: 1.5rem 0;
}

.progress-bar[b-suaddio2pk] {
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill[b-suaddio2pk] {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .progress-fill[b-suaddio2pk]:after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: shimmer-b-suaddio2pk 2s infinite;
    }

@keyframes shimmer-b-suaddio2pk {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.progress-text[b-suaddio2pk] {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Result Display */
.result-card[b-suaddio2pk] {
    background: rgba(21, 61, 111, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.result-header[b-suaddio2pk] {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-info[b-suaddio2pk] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.file-info-item[b-suaddio2pk] {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.info-label[b-suaddio2pk] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-value[b-suaddio2pk] {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Transaction Details */
.transaction-details[b-suaddio2pk] {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.detail-item[b-suaddio2pk] {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    .detail-item:last-child[b-suaddio2pk] {
        border-bottom: none;
    }

.detail-label[b-suaddio2pk] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.detail-value[b-suaddio2pk] {
    color: #00ffff;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    text-align: right;
    max-width: 60%;
}

/* Error Messages */
.error-message[b-suaddio2pk] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 141, 75, 0.1));
    border-left: 4px solid #ff6b6b;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
    animation: pulseWarning-b-suaddio2pk 2s infinite;
}

@keyframes pulseWarning-b-suaddio2pk {
    0%, 100% {
        border-color: #ff6b6b;
    }

    50% {
        border-color: rgba(255, 107, 107, 0.5);
    }
}

.error-text[b-suaddio2pk] {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Success Message */
.success-message[b-suaddio2pk] {
    background: linear-gradient(135deg, rgba(76, 217, 100, 0.1), rgba(0, 200, 83, 0.1));
    border-left: 4px solid #4cd964;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
}

.success-text[b-suaddio2pk] {
    color: rgba(255, 255, 255, 0.9);
    white-space: pre-wrap;
    word-break: break-word;
}

/* Advanced Options */
.advanced-options[b-suaddio2pk] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.options-toggle[b-suaddio2pk] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00ffff;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 1rem;
}

    .options-toggle .bi[b-suaddio2pk] {
        transition: transform 0.3s ease;
    }

    .options-toggle.expanded .bi[b-suaddio2pk] {
        transform: rotate(180deg);
    }

.options-content[b-suaddio2pk] {
    animation: slideDown-b-suaddio2pk 0.3s ease;
}

@keyframes slideDown-b-suaddio2pk {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chunks Info */
.chunks-info[b-suaddio2pk] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.chunk-badge[b-suaddio2pk] {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Status Indicator */
.status-indicator[b-suaddio2pk] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.status-dot[b-suaddio2pk] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

    .status-dot.ready[b-suaddio2pk] {
        background: #4cd964;
        box-shadow: 0 0 10px #4cd964;
    }

    .status-dot.processing[b-suaddio2pk] {
        background: #ffd93d;
        box-shadow: 0 0 10px #ffd93d;
        animation: pulseProcessing-b-suaddio2pk 1s infinite;
    }

    .status-dot.downloading[b-suaddio2pk] {
        background: #00ffff;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        animation: pulseDownloading-b-suaddio2pk 0.8s infinite;
    }

@keyframes pulseProcessing-b-suaddio2pk {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulseDownloading-b-suaddio2pk {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.status-text[b-suaddio2pk] {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.status-value[b-suaddio2pk] {
    color: #00ffff;
    font-weight: 600;
}

/* Animation for form elements */
@keyframes fadeInUp-b-suaddio2pk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-card[b-suaddio2pk] {
    animation: fadeInUp-b-suaddio2pk 0.5s ease forwards;
}

.form-group[b-suaddio2pk] {
    animation: fadeInUp-b-suaddio2pk 0.5s ease forwards;
}

    .form-group:nth-child(1)[b-suaddio2pk] {
        animation-delay: 0.1s;
    }

    .form-group:nth-child(2)[b-suaddio2pk] {
        animation-delay: 0.2s;
    }

    .form-group:nth-child(3)[b-suaddio2pk] {
        animation-delay: 0.3s;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-suaddio2pk] {
        padding: 1rem;
    }

    h1[b-suaddio2pk] {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .action-buttons[b-suaddio2pk] {
        flex-direction: column;
    }

    .file-info[b-suaddio2pk] {
        grid-template-columns: 1fr;
    }

    .quick-actions[b-suaddio2pk] {
        justify-content: center;
    }

    .detail-value[b-suaddio2pk] {
        max-width: 50%;
        font-size: 0.8rem;
    }
}


.text-muted[b-suaddio2pk] {
    color: rgba(255, 255, 255, 0.6) !important;
}
/* /Pages/FAQ.razor.rz.scp.css */
:host[b-533sanhid0] {
    display: block;
    animation: pageLoad-b-533sanhid0 0.6s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
}

@keyframes pageLoad-b-533sanhid0 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2[b-533sanhid0] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
}

    h2[b-533sanhid0]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

    h2 .bi[b-533sanhid0] {
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    }

/* Main Container */
.container[b-533sanhid0] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Accordion Styling */
.accordion[b-533sanhid0] {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.accordion-item[b-533sanhid0] {
    background: rgba(21, 61, 111, 0.25);
    backdrop-filter: blur(10px);
    border: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

    .accordion-item:last-child[b-533sanhid0] {
        border-bottom: none;
    }

    .accordion-item:hover[b-533sanhid0] {
        background: rgba(21, 61, 111, 0.35);
    }

/* Accordion Button */
.accordion-button[b-533sanhid0] {
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    color: #00ffff !important;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .accordion-button:not(.collapsed)[b-533sanhid0] {
        background: linear-gradient(90deg, rgba(0, 255, 255, 0.2), rgba(0, 128, 255, 0.2));
        color: #ffffff !important;
        box-shadow: inset 0 -1px 0 rgba(0, 255, 255, 0.2);
    }

    .accordion-button[b-533sanhid0]:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300ffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
        transition: transform 0.3s ease;
    }

    .accordion-button:not(.collapsed)[b-533sanhid0]:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        transform: rotate(-180deg);
    }

    .accordion-button:hover[b-533sanhid0] {
        background: linear-gradient(90deg, rgba(0, 255, 255, 0.25), rgba(0, 128, 255, 0.25));
        transform: translateX(5px);
    }

    .accordion-button .bi[b-533sanhid0] {
        margin-right: 10px;
        font-size: 1.3rem;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
        transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) .bi[b-533sanhid0] {
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
    }

/* Accordion Body */
.accordion-collapse[b-533sanhid0] {
    border: none;
}

.accordion-body[b-533sanhid0] {
    background: rgba(10, 20, 40, 0.5);
    padding: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* FAQ Item Styling */
.faq-item[b-533sanhid0] {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp-b-533sanhid0 0.5s ease forwards;
    opacity: 0;
}

    .faq-item:last-child[b-533sanhid0] {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

@keyframes fadeInUp-b-533sanhid0 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item h5[b-533sanhid0] {
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .faq-item h5[b-533sanhid0]:before {
        content: 'Q:';
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        font-size: 0.9rem;
        font-weight: bold;
        padding: 0.3rem 0.6rem;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    }

.faq-item p[b-533sanhid0] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 2.5rem;
    position: relative;
}

    .faq-item p[b-533sanhid0]:before {
        content: 'A:';
        position: absolute;
        left: 0;
        color: #0080ff;
        font-weight: bold;
        font-size: 0.9rem;
    }

/* Special formatting for strong text */
.faq-item strong[b-533sanhid0] {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Links within FAQ */
.faq-item a[b-533sanhid0] {
    color: #00ffff;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .faq-item a[b-533sanhid0]:before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        transition: width 0.3s ease;
    }

    .faq-item a:hover[b-533sanhid0] {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }

        .faq-item a:hover[b-533sanhid0]:before {
            width: 100%;
        }

    .faq-item a .bi[b-533sanhid0] {
        font-size: 0.9em;
        transition: transform 0.3s ease;
    }

    .faq-item a:hover .bi[b-533sanhid0] {
        transform: translateX(3px);
    }

/* Category specific colors */
.accordion-item:nth-child(1) .accordion-button .bi[b-533sanhid0] {
    color: #00ffff;
}

.accordion-item:nth-child(2) .accordion-button .bi[b-533sanhid0] {
    color: #4dffea;
}

.accordion-item:nth-child(3) .accordion-button .bi[b-533sanhid0] {
    color: #0080ff;
}

.accordion-item:nth-child(4) .accordion-button .bi[b-533sanhid0] {
    color: #ff6b6b;
}

.accordion-item:nth-child(5) .accordion-button .bi[b-533sanhid0] {
    color: #ffd93d;
}

.accordion-item:nth-child(6) .accordion-button .bi[b-533sanhid0] {
    color: #6bffb8;
}

.accordion-item:nth-child(7) .accordion-button .bi[b-533sanhid0] {
    color: #ff8b3d;
}

/* Animation delays for FAQ items */
.faq-item:nth-child(1)[b-533sanhid0] {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2)[b-533sanhid0] {
    animation-delay: 0.15s;
}

.faq-item:nth-child(3)[b-533sanhid0] {
    animation-delay: 0.2s;
}

.faq-item:nth-child(4)[b-533sanhid0] {
    animation-delay: 0.25s;
}

.faq-item:nth-child(5)[b-533sanhid0] {
    animation-delay: 0.3s;
}

/* Search/Sort Controls (optional enhancement) */
.faq-controls[b-533sanhid0] {
    background: rgba(21, 61, 111, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.search-box[b-533sanhid0] {
    position: relative;
    margin-bottom: 1rem;
}

    .search-box input[b-533sanhid0] {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(0, 255, 255, 0.3);
        border-radius: 8px;
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .search-box input:focus[b-533sanhid0] {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        }

    .search-box .bi-search[b-533sanhid0] {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: #00ffff;
        font-size: 1.2rem;
    }

/* Category filter */
.category-filter[b-533sanhid0] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-btn[b-533sanhid0] {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .category-btn:hover[b-533sanhid0],
    .category-btn.active[b-533sanhid0] {
        background: linear-gradient(90deg, #00ffff, #0080ff);
        color: white;
        border-color: transparent;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-533sanhid0] {
        padding: 1rem;
    }

    h2[b-533sanhid0] {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .accordion-button[b-533sanhid0] {
        font-size: 1.1rem;
        padding: 1.2rem 1rem;
    }

    .accordion-body[b-533sanhid0] {
        padding: 1.5rem;
    }

    .faq-item h5[b-533sanhid0] {
        font-size: 1rem;
    }

    .faq-item p[b-533sanhid0] {
        font-size: 0.95rem;
        padding-left: 2rem;
    }
}

/* Print styles */
@media print {
    .accordion-button:not(.collapsed)[b-533sanhid0] {
        color: #000 !important;
    }

    .accordion-button .bi[b-533sanhid0] {
        display: none;
    }
}

.badge.bg-cyan[b-533sanhid0] {
    background: linear-gradient(135deg, #00ffff, #0080ff) !important;
    color: white;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
}

.btn-outline-cyan[b-533sanhid0] {
    border: 2px solid #00ffff;
    color: #00ffff;
    background: transparent;
    transition: all 0.3s ease;
}

    .btn-outline-cyan:hover[b-533sanhid0] {
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }

.text-muted[b-533sanhid0] {
    color: rgba(255, 255, 255, 0.6) !important;
}
/* /Pages/Faucet.razor.rz.scp.css */
:host[b-2op13q456l] {
    display: block;
    animation: pageLoad-b-2op13q456l 0.6s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
}

@keyframes pageLoad-b-2op13q456l {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container[b-2op13q456l] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1[b-2op13q456l] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    h1[b-2op13q456l]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

    h1 .bi[b-2op13q456l] {
        font-size: 2.2rem;
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    }

h2[b-2op13q456l] {
    color: #00ffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    padding-left: 15px;
    border-left: 4px solid #00ffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

    h2 .bi[b-2op13q456l] {
        font-size: 1.5rem;
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    }

/* Introductory text */
.intro-text[b-2op13q456l] {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(21, 61, 111, 0.2);
    border-radius: 10px;
    border-left: 4px solid #0080ff;
    position: relative;
    overflow: hidden;
}

    .intro-text[b-2op13q456l]:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
        animation: shimmer-b-2op13q456l 3s infinite;
    }

@keyframes shimmer-b-2op13q456l {
    0% {
        left: -100%;
    }

    20%, 100% {
        left: 100%;
    }
}

/* Network Cards */
.network-card[b-2op13q456l] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.3), rgba(44, 83, 100, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .network-card[b-2op13q456l]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #0080ff, #00ffff);
        background-size: 200% 100%;
        animation: gradientFlow-b-2op13q456l 3s infinite linear;
    }

@keyframes gradientFlow-b-2op13q456l {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.network-card:hover[b-2op13q456l] {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
}

.network-header[b-2op13q456l] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.network-title[b-2op13q456l] {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .network-title .bi[b-2op13q456l] {
        font-size: 1.8rem;
        color: #00ffff;
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    }

.network-status[b-2op13q456l] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.status-dot[b-2op13q456l] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-b-2op13q456l 2s infinite;
}

    .status-dot.active[b-2op13q456l] {
        background: #4cd964;
        box-shadow: 0 0 10px #4cd964;
    }

    .status-dot.moderate[b-2op13q456l] {
        background: #ffd93d;
        box-shadow: 0 0 10px #ffd93d;
    }

    .status-dot.busy[b-2op13q456l] {
        background: #ff6b6b;
        box-shadow: 0 0 10px #ff6b6b;
    }

@keyframes pulse-b-2op13q456l {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Chain List */
.chain-list[b-2op13q456l] {
    margin-top: 1.5rem;
}

.chain-group[b-2op13q456l] {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chain-group-title[b-2op13q456l] {
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .chain-group-title .bi[b-2op13q456l] {
        font-size: 1.3rem;
    }

/* Faucet Links */
.faucet-links[b-2op13q456l] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faucet-item[b-2op13q456l] {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

    .faucet-item:last-child[b-2op13q456l] {
        border-bottom: none;
    }

    .faucet-item:hover[b-2op13q456l] {
        background: rgba(0, 255, 255, 0.05);
        border-radius: 8px;
        padding: 1rem;
        margin: 0 -0.5rem;
    }

.faucet-info[b-2op13q456l] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faucet-icon[b-2op13q456l] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00ffff;
}

.faucet-details[b-2op13q456l] {
    flex: 1;
}

.faucet-name[b-2op13q456l] {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.faucet-description[b-2op13q456l] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.4;
}

.faucet-link[b-2op13q456l] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    color: #00ffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
    white-space: nowrap;
}

    .faucet-link:hover[b-2op13q456l] {
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
        border-color: transparent;
    }

    .faucet-link .bi[b-2op13q456l] {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .faucet-link:hover .bi[b-2op13q456l] {
        transform: translateX(3px);
    }

/* Network Stats */
.network-stats[b-2op13q456l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item[b-2op13q456l] {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.stat-value[b-2op13q456l] {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label[b-2op13q456l] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Disclaimer */
.disclaimer[b-2op13q456l] {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    border-radius: 0 10px 10px 0;
    animation: pulseWarning-b-2op13q456l 2s infinite;
}

@keyframes pulseWarning-b-2op13q456l {
    0%, 100% {
        border-color: #ff6b6b;
    }

    50% {
        border-color: rgba(255, 107, 107, 0.5);
    }
}

.disclaimer-title[b-2op13q456l] {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-text[b-2op13q456l] {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Empty State */
.empty-state[b-2op13q456l] {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.6);
}

    .empty-state .bi[b-2op13q456l] {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.5;
    }

/* Animation for cards */
@keyframes cardAppear-b-2op13q456l {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.network-card[b-2op13q456l] {
    animation: cardAppear-b-2op13q456l 0.5s ease forwards;
}

    .network-card:nth-child(1)[b-2op13q456l] {
        animation-delay: 0.1s;
    }

    .network-card:nth-child(2)[b-2op13q456l] {
        animation-delay: 0.2s;
    }

    .network-card:nth-child(3)[b-2op13q456l] {
        animation-delay: 0.3s;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-2op13q456l] {
        padding: 1rem;
    }

    h1[b-2op13q456l] {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .network-header[b-2op13q456l] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .faucet-item[b-2op13q456l] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .faucet-link[b-2op13q456l] {
        align-self: stretch;
        text-align: center;
        justify-content: center;
    }

    .network-stats[b-2op13q456l] {
        grid-template-columns: 1fr;
    }
}

/* Loading State */
.loading[b-2op13q456l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.loading-spinner[b-2op13q456l] {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-top: 3px solid #00ffff;
    border-radius: 50%;
    animation: spin-b-2op13q456l 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-2op13q456l {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.btn-outline-cyan[b-2op13q456l] {
    border: 2px solid #00ffff;
    color: #00ffff;
    background: transparent;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

    .btn-outline-cyan:hover[b-2op13q456l] {
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        transform: translateY(-2px);
    }

.text-cyan[b-2op13q456l] {
    color: #00ffff !important;
    text-decoration: none;
}

    .text-cyan:hover[b-2op13q456l] {
        color: #ffffff !important;
        text-decoration: underline;
    }

.bi-binance[b-2op13q456l]:before {
    content: "BNB";
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
}

.bi-polygon[b-2op13q456l]:before {
    content: "POL";
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
}
/* /Pages/Home.razor.rz.scp.css */
:host[b-homykhj5ay] {
    display: block;
    animation: pageLoad-b-homykhj5ay 0.6s ease;
}

@keyframes pageLoad-b-homykhj5ay {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1[b-homykhj5ay], h2[b-homykhj5ay], h3[b-homykhj5ay] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    position: relative;
    padding-bottom: 10px;
}

    h1[b-homykhj5ay]:after, h2[b-homykhj5ay]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

/* Card styles */
.card[b-homykhj5ay] {
    background: rgba(21, 61, 111, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

    .card[b-homykhj5ay]:before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #00ffff, #0080ff, #00ffff);
        z-index: -1;
        border-radius: 17px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .card:hover[b-homykhj5ay]:before {
        opacity: 0.5;
    }

    .card:hover[b-homykhj5ay] {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 255, 255, 0.15);
        border-color: rgba(0, 255, 255, 0.4);
    }

.card-body[b-homykhj5ay] {
    padding: 1.8rem;
}

.card-title[b-homykhj5ay] {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .card-title .bi[b-homykhj5ay] {
        font-size: 1.3rem;
        filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
    }

/* Address display */
.text-primary[b-homykhj5ay] {
    font-family: 'Consolas', 'Monaco', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #00ffff;
    word-break: break-all;
    color: #00ffff !important;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

    .text-primary[b-homykhj5ay]:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
        animation: shine-b-homykhj5ay 3s infinite;
    }

@keyframes shine-b-homykhj5ay {
    0% {
        left: -100%;
    }

    20%, 100% {
        left: 100%;
    }
}

/* Buttons */
.btn-outline-primary[b-homykhj5ay] {
    border: 2px solid rgba(0, 255, 255, 0.5);
    color: #00ffff;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

    .btn-outline-primary:hover[b-homykhj5ay] {
        background: linear-gradient(90deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
        border-color: #00ffff;
        color: #ffffff;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .btn-outline-primary:active[b-homykhj5ay] {
        transform: translateY(0);
    }

/* Contact links */
ul[b-homykhj5ay] {
    list-style: none;
    padding-left: 0;
}

    ul li[b-homykhj5ay] {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        ul li:last-child[b-homykhj5ay] {
            border-bottom: none;
        }

        ul li a[b-homykhj5ay] {
            color: #00ffff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

            ul li a:hover[b-homykhj5ay] {
                color: #ffffff;
                text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
                transform: translateX(5px);
            }

        ul li .bi[b-homykhj5ay] {
            font-size: 1.2rem;
            color: #00ffff;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .card[b-homykhj5ay] {
        margin-bottom: 1rem;
    }

    .text-primary[b-homykhj5ay] {
        font-size: 0.85rem;
        padding: 0.8rem;
    }

    .btn-outline-primary[b-homykhj5ay] {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Animation for cards */
@keyframes cardAppear-b-homykhj5ay {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card[b-homykhj5ay] {
    animation: cardAppear-b-homykhj5ay 0.5s ease forwards;
}

    .card:nth-child(1)[b-homykhj5ay] {
        animation-delay: 0.1s;
    }

    .card:nth-child(2)[b-homykhj5ay] {
        animation-delay: 0.2s;
    }

    .card:nth-child(3)[b-homykhj5ay] {
        animation-delay: 0.3s;
    }

    .card:nth-child(4)[b-homykhj5ay] {
        animation-delay: 0.4s;
    }
/* /Pages/Manager.razor.rz.scp.css */
:host[b-98iyib83wb] {
    display: block;
    animation: pageLoad-b-98iyib83wb 0.6s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pageLoad-b-98iyib83wb {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container[b-98iyib83wb] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
h1[b-98iyib83wb] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    h1[b-98iyib83wb]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

    h1 .bi[b-98iyib83wb] {
        font-size: 2.2rem;
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    }

/* Manager Card */
.manager-card[b-98iyib83wb] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.25), rgba(44, 83, 100, 0.25));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .manager-card[b-98iyib83wb]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #0080ff, #00ffff);
        background-size: 200% 100%;
        animation: gradientFlow-b-98iyib83wb 3s infinite linear;
    }

@keyframes gradientFlow-b-98iyib83wb {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Form Controls */
.form-group[b-98iyib83wb] {
    margin-bottom: 1.5rem;
}

.form-label[b-98iyib83wb] {
    color: #00ffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .form-label .bi[b-98iyib83wb] {
        font-size: 1.1rem;
        filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
    }

.required[b-98iyib83wb] {
    color: #ff6b6b;
    margin-left: 4px;
}

/* Form Inputs */
.form-control[b-98iyib83wb], .form-select[b-98iyib83wb] {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus[b-98iyib83wb], .form-select:focus[b-98iyib83wb] {
        background: rgba(0, 0, 0, 0.4);
        border-color: #00ffff;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        color: #ffffff;
        outline: none;
    }

    .form-control[b-98iyib83wb]::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

/* Password Input */
.password-group[b-98iyib83wb] {
    position: relative;
}

.password-toggle[b-98iyib83wb] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .password-toggle:hover[b-98iyib83wb] {
        color: #00ffff;
    }

/* Tabs Styling */
.manager-tabs[b-98iyib83wb] {
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    margin: 2rem 0 1.5rem;
}

.tab-list[b-98iyib83wb] {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
}

.tab-item[b-98iyib83wb] {
    flex-shrink: 0;
}

.tab-button[b-98iyib83wb] {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

    .tab-button:hover[b-98iyib83wb] {
        color: #00ffff;
    }

    .tab-button.active[b-98iyib83wb] {
        color: #00ffff;
        border-bottom-color: #00ffff;
    }

        .tab-button.active[b-98iyib83wb]:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #00ffff, #0080ff);
        }

    .tab-button .bi[b-98iyib83wb] {
        font-size: 1.2rem;
    }

    .tab-button .badge[b-98iyib83wb] {
        margin-left: 8px;
        background: rgba(0, 255, 255, 0.2);
        color: #00ffff;
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }

/* Tab Content */
.tab-content[b-98iyib83wb] {
    animation: fadeIn-b-98iyib83wb 0.3s ease;
}

@keyframes fadeIn-b-98iyib83wb {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-header[b-98iyib83wb] {
    color: #00ffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 15px;
    border-left: 4px solid #00ffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .tab-header .bi[b-98iyib83wb] {
        font-size: 1.4rem;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
    }

.tab-description[b-98iyib83wb] {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(0, 255, 255, 0.3);
}

/* Action Cards */
.action-card[b-98iyib83wb] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.15), rgba(44, 83, 100, 0.15));
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

    .action-card:hover[b-98iyib83wb] {
        border-color: rgba(0, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 255, 255, 0.1);
    }

.action-title[b-98iyib83wb] {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .action-title .bi[b-98iyib83wb] {
        color: #00ffff;
        font-size: 1.3rem;
    }

/* Network Badge */
.network-badge[b-98iyib83wb] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Address Input */
.address-input-group[b-98iyib83wb] {
    position: relative;
}

.address-preview[b-98iyib83wb] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

/* Action Buttons */
.action-btn[b-98iyib83wb] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

    .action-btn[b-98iyib83wb]:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .action-btn:hover[b-98iyib83wb]:before {
        width: 300px;
        height: 300px;
    }

    .action-btn:hover[b-98iyib83wb] {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    }

    .action-btn:active[b-98iyib83wb] {
        transform: translateY(-1px);
    }

    .action-btn:disabled[b-98iyib83wb] {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

        .action-btn:disabled:hover[b-98iyib83wb]:before {
            width: 0;
            height: 0;
        }

    .action-btn.warning[b-98iyib83wb] {
        background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    }

        .action-btn.warning:hover[b-98iyib83wb] {
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

    .action-btn .bi[b-98iyib83wb] {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .action-btn:hover .bi[b-98iyib83wb] {
        transform: translateY(-2px);
    }

.spinning[b-98iyib83wb] {
    animation: spin-b-98iyib83wb 1s linear infinite;
}

@keyframes spin-b-98iyib83wb {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Result Messages */
.result-message[b-98iyib83wb] {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    animation: slideIn-b-98iyib83wb 0.3s ease;
}

@keyframes slideIn-b-98iyib83wb {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-success[b-98iyib83wb] {
    background: linear-gradient(135deg, rgba(76, 217, 100, 0.1), rgba(0, 200, 83, 0.1));
    border-left: 4px solid #4cd964;
    color: rgba(255, 255, 255, 0.9);
}

.result-info[b-98iyib83wb] {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    border-left: 4px solid #00ffff;
    color: rgba(255, 255, 255, 0.9);
}

.result-error[b-98iyib83wb] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 141, 75, 0.1));
    border-left: 4px solid #ff6b6b;
    color: rgba(255, 255, 255, 0.9);
}

.result-text[b-98iyib83wb] {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Token Info */
.token-info[b-98iyib83wb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.token-info-item[b-98iyib83wb] {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.token-label[b-98iyib83wb] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.token-value[b-98iyib83wb] {
    color: #00ffff;
    font-weight: 500;
    font-size: 1.1rem;
    font-family: 'Consolas', 'Monaco', monospace;
}

/* Warning Box */
.warning-box[b-98iyib83wb] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 141, 75, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    animation: pulseWarning-b-98iyib83wb 2s infinite;
}

@keyframes pulseWarning-b-98iyib83wb {
    0%, 100% {
        border-color: rgba(255, 107, 107, 0.3);
    }

    50% {
        border-color: rgba(255, 107, 107, 0.6);
    }
}

.warning-header[b-98iyib83wb] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

    .warning-header .bi[b-98iyib83wb] {
        color: #ff6b6b;
        font-size: 1.5rem;
        filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
    }

.warning-title[b-98iyib83wb] {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.2rem;
}

.warning-content[b-98iyib83wb] {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

    .warning-content ul[b-98iyib83wb] {
        margin: 0.5rem 0;
        padding-left: 1.5rem;
    }

    .warning-content li[b-98iyib83wb] {
        margin: 0.5rem 0;
    }

/* Loading Overlay */
.loading-overlay[b-98iyib83wb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-98iyib83wb 0.3s ease;
}

.loading-content[b-98iyib83wb] {
    text-align: center;
    max-width: 400px;
}

.loading-spinner[b-98iyib83wb] {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-top: 3px solid #00ffff;
    border-radius: 50%;
    animation: spin-b-98iyib83wb 1s linear infinite;
    margin-bottom: 1.5rem;
}

.loading-text[b-98iyib83wb] {
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-98iyib83wb] {
        padding: 1rem;
    }

    h1[b-98iyib83wb] {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tab-list[b-98iyib83wb] {
        flex-wrap: wrap;
    }

    .tab-button[b-98iyib83wb] {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .action-card[b-98iyib83wb] {
        padding: 1.5rem;
    }

    .token-info[b-98iyib83wb] {
        grid-template-columns: 1fr;
    }

    .action-btn[b-98iyib83wb] {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* Animation for form groups */
@keyframes fadeInUp-b-98iyib83wb {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manager-card[b-98iyib83wb] {
    animation: fadeInUp-b-98iyib83wb 0.5s ease forwards;
}

.action-card[b-98iyib83wb] {
    animation: fadeInUp-b-98iyib83wb 0.5s ease forwards;
}

    .action-card:nth-child(1)[b-98iyib83wb] {
        animation-delay: 0.1s;
    }

    .action-card:nth-child(2)[b-98iyib83wb] {
        animation-delay: 0.2s;
    }

    .action-card:nth-child(3)[b-98iyib83wb] {
        animation-delay: 0.3s;
    }


.text-muted[b-98iyib83wb] {
    color: rgba(255, 255, 255, 0.6) !important;
}
/* /Pages/PrivacyPolicy.razor.rz.scp.css */
:host[b-t5wmlpf79q] {
    display: block;
    animation: pageLoad-b-t5wmlpf79q 0.6s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pageLoad-b-t5wmlpf79q {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container[b-t5wmlpf79q] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
h1[b-t5wmlpf79q] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    h1[b-t5wmlpf79q]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

    h1 .bi[b-t5wmlpf79q] {
        font-size: 2.5rem;
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    }

/* Introductory paragraph */
.intro-text[b-t5wmlpf79q] {
    background: rgba(21, 61, 111, 0.2);
    border-left: 4px solid #0080ff;
    padding: 1.5rem 2rem;
    border-radius: 0 10px 10px 0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

    .intro-text[b-t5wmlpf79q]:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
        animation: shimmer-b-t5wmlpf79q 3s infinite;
    }

@keyframes shimmer-b-t5wmlpf79q {
    0% {
        left: -100%;
    }

    20%, 100% {
        left: 100%;
    }
}

/* Last Updated & Version */
.meta-info[b-t5wmlpf79q] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(21, 61, 111, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.meta-item[b-t5wmlpf79q] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

    .meta-item .bi[b-t5wmlpf79q] {
        color: #00ffff;
        font-size: 1.1rem;
    }

/* Privacy Summary Cards */
.privacy-summary[b-t5wmlpf79q] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.summary-card[b-t5wmlpf79q] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.2), rgba(44, 83, 100, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .summary-card:hover[b-t5wmlpf79q] {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 255, 255, 0.1);
        border-color: rgba(0, 255, 255, 0.3);
    }

    .summary-card[b-t5wmlpf79q]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        opacity: 0.5;
    }

.summary-icon[b-t5wmlpf79q] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.summary-title[b-t5wmlpf79q] {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.summary-description[b-t5wmlpf79q] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Section Styling */
.privacy-section[b-t5wmlpf79q] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.15), rgba(44, 83, 100, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .privacy-section:hover[b-t5wmlpf79q] {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
        border-color: rgba(0, 255, 255, 0.2);
    }

    .privacy-section[b-t5wmlpf79q]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #00ffff, #0080ff);
        opacity: 0.7;
    }

/* Section Headers */
h2[b-t5wmlpf79q] {
    color: #00ffff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-left: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

    h2[b-t5wmlpf79q]:before {
        content: '🔒';
        position: absolute;
        left: -25px;
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1rem;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }

    h2 .bi[b-t5wmlpf79q] {
        font-size: 1.4rem;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
    }

/* Section Content */
.privacy-content[b-t5wmlpf79q] {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

    .privacy-content p[b-t5wmlpf79q] {
        margin-bottom: 1.2rem;
        padding-left: 15px;
        position: relative;
    }

        .privacy-content p[b-t5wmlpf79q]:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #0080ff;
            font-size: 1.2rem;
        }

/* Lists */
ul[b-t5wmlpf79q] {
    list-style: none;
    padding-left: 2rem;
    margin: 1.5rem 0;
}

    ul li[b-t5wmlpf79q] {
        padding: 0.6rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

        ul li[b-t5wmlpf79q]:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ffff;
            font-size: 1em;
            font-weight: bold;
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
        }

        ul li:last-child[b-t5wmlpf79q] {
            border-bottom: none;
        }

/* Zero Data Collection Badge */
.zero-data-badge[b-t5wmlpf79q] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    color: #00ffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

    .zero-data-badge .bi[b-t5wmlpf79q] {
        font-size: 1.1rem;
    }

/* Privacy Promise Cards */
.privacy-promise[b-t5wmlpf79q] {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 128, 255, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

    .privacy-promise[b-t5wmlpf79q]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #00ffff, #0080ff);
    }

.promise-title[b-t5wmlpf79q] {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .promise-title .bi[b-t5wmlpf79q] {
        font-size: 1.2rem;
    }

.promise-content[b-t5wmlpf79q] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Technology Stack */
.tech-stack[b-t5wmlpf79q] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tech-item[b-t5wmlpf79q] {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .tech-item .bi[b-t5wmlpf79q] {
        color: #00ffff;
    }

/* Navigation Links */
.section-nav[b-t5wmlpf79q] {
    position: sticky;
    top: 2rem;
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.3), rgba(44, 83, 100, 0.3));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-left: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.section-nav-title[b-t5wmlpf79q] {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list[b-t5wmlpf79q] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item[b-t5wmlpf79q] {
    margin-bottom: 0.8rem;
}

.nav-link[b-t5wmlpf79q] {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

    .nav-link:hover[b-t5wmlpf79q], .nav-link.active[b-t5wmlpf79q] {
        color: #00ffff;
        background: rgba(0, 255, 255, 0.1);
        border-left-color: #00ffff;
    }

    .nav-link .bi[b-t5wmlpf79q] {
        font-size: 0.9rem;
    }

/* Footer */
.privacy-footer[b-t5wmlpf79q] {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

    .privacy-footer a[b-t5wmlpf79q] {
        color: #00ffff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .privacy-footer a:hover[b-t5wmlpf79q] {
            color: #ffffff;
            text-decoration: underline;
        }

/* Print Styles */
@media print {
    .meta-info[b-t5wmlpf79q],
    .privacy-summary[b-t5wmlpf79q],
    .section-nav[b-t5wmlpf79q],
    .tech-stack[b-t5wmlpf79q] {
        display: none !important;
    }

    .privacy-section[b-t5wmlpf79q] {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

/* Animation for sections */
@keyframes sectionAppear-b-t5wmlpf79q {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section[b-t5wmlpf79q] {
    animation: sectionAppear-b-t5wmlpf79q 0.5s ease forwards;
}

    .privacy-section:nth-child(1)[b-t5wmlpf79q] {
        animation-delay: 0.1s;
    }

    .privacy-section:nth-child(2)[b-t5wmlpf79q] {
        animation-delay: 0.2s;
    }

    .privacy-section:nth-child(3)[b-t5wmlpf79q] {
        animation-delay: 0.3s;
    }

    .privacy-section:nth-child(4)[b-t5wmlpf79q] {
        animation-delay: 0.4s;
    }

    .privacy-section:nth-child(5)[b-t5wmlpf79q] {
        animation-delay: 0.5s;
    }

    .privacy-section:nth-child(6)[b-t5wmlpf79q] {
        animation-delay: 0.6s;
    }

    .privacy-section:nth-child(7)[b-t5wmlpf79q] {
        animation-delay: 0.7s;
    }

    .privacy-section:nth-child(8)[b-t5wmlpf79q] {
        animation-delay: 0.8s;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .container[b-t5wmlpf79q] {
        padding: 1.5rem;
    }

    h1[b-t5wmlpf79q] {
        font-size: 2.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .meta-info[b-t5wmlpf79q] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .privacy-summary[b-t5wmlpf79q] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container[b-t5wmlpf79q] {
        padding: 1rem;
    }

    h1[b-t5wmlpf79q] {
        font-size: 1.8rem;
    }

    h2[b-t5wmlpf79q] {
        font-size: 1.4rem;
    }

    .privacy-section[b-t5wmlpf79q] {
        padding: 1.5rem;
    }

    .intro-text[b-t5wmlpf79q] {
        padding: 1rem 1.5rem;
    }

    .privacy-summary[b-t5wmlpf79q] {
        grid-template-columns: 1fr;
    }
}

/* Scroll to top button */
.scroll-top[b-t5wmlpf79q] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1000;
}

    .scroll-top.visible[b-t5wmlpf79q] {
        opacity: 1;
        transform: translateY(0);
    }

    .scroll-top:hover[b-t5wmlpf79q] {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    }

/* Trust Indicators */
.trust-indicators[b-t5wmlpf79q] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.trust-item[b-t5wmlpf79q] {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.trust-icon[b-t5wmlpf79q] {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.trust-title[b-t5wmlpf79q] {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.trust-description[b-t5wmlpf79q] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}


.text-muted[b-t5wmlpf79q] {
    color: rgba(255, 255, 255, 0.6) !important;
}

a[b-t5wmlpf79q] {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover[b-t5wmlpf79q] {
        color: #ffffff;
        text-decoration: underline;
    }

.warning-note[b-t5wmlpf79q] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 141, 75, 0.1));
    border-left: 4px solid #ff6b6b;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
    animation: pulseWarning-b-t5wmlpf79q 2s infinite;
}

@keyframes pulseWarning-b-t5wmlpf79q {
    0%, 100% {
        border-color: #ff6b6b;
    }

    50% {
        border-color: rgba(255, 107, 107, 0.5);
    }
}
/* /Pages/Tips.razor.rz.scp.css */
:host[b-s4ovhzffyl] {
    display: block;
    animation: pageLoad-b-s4ovhzffyl 0.6s ease;
}

@keyframes pageLoad-b-s4ovhzffyl {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container[b-s4ovhzffyl] {
    max-width: 1200px;
    padding: 2rem 1rem;
}

h1[b-s4ovhzffyl] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
}

    h1[b-s4ovhzffyl]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

h3[b-s4ovhzffyl] {
    color: #00ffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-left: 15px;
    border-left: 4px solid #00ffff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

    h3[b-s4ovhzffyl]:before {
        content: '';
        position: absolute;
        left: -4px;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #00ffff, #0080ff);
        opacity: 0.7;
        animation: pulseBorder-b-s4ovhzffyl 2s infinite;
    }

@keyframes pulseBorder-b-s4ovhzffyl {
    0%, 100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.3;
    }
}

h3 .bi[b-s4ovhzffyl] {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

h5[b-s4ovhzffyl] {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    padding-left: 10px;
    border-left: 3px solid #0080ff;
}

/* Section Cards */
section[b-s4ovhzffyl] {
    background: rgba(21, 61, 111, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    section[b-s4ovhzffyl]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #0080ff, #00ffff);
        background-size: 200% 100%;
        animation: shimmer-b-s4ovhzffyl 3s infinite linear;
    }

@keyframes shimmer-b-s4ovhzffyl {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

section:hover[b-s4ovhzffyl] {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
}

/* Section specific colors */
section:nth-child(1)[b-s4ovhzffyl]:before {
    background: linear-gradient(90deg, #00ffff, #4dffea);
}

section:nth-child(2)[b-s4ovhzffyl]:before {
    background: linear-gradient(90deg, #4dffea, #0080ff);
}

section:nth-child(3)[b-s4ovhzffyl]:before {
    background: linear-gradient(90deg, #0080ff, #0099ff);
}

section:nth-child(4)[b-s4ovhzffyl]:before {
    background: linear-gradient(90deg, #0099ff, #00b3ff);
}

section:nth-child(5)[b-s4ovhzffyl]:before {
    background: linear-gradient(90deg, #00b3ff, #00ccff);
}

/* Content styling */
p[b-s4ovhzffyl] {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Links */
a[b-s4ovhzffyl] {
    color: #00ffff;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    a[b-s4ovhzffyl]:before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        transition: width 0.3s ease;
    }

    a:hover[b-s4ovhzffyl] {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }

        a:hover[b-s4ovhzffyl]:before {
            width: 100%;
        }

    a .bi[b-s4ovhzffyl] {
        font-size: 0.9em;
        transition: transform 0.3s ease;
    }

    a:hover .bi[b-s4ovhzffyl] {
        transform: translateX(3px);
    }

/* Lists */
ul[b-s4ovhzffyl] {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

    ul li[b-s4ovhzffyl] {
        padding: 0.8rem 0;
        padding-left: 2rem;
        position: relative;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

        ul li[b-s4ovhzffyl]:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #00ffff;
            font-size: 1.2em;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        ul li:last-child[b-s4ovhzffyl] {
            border-bottom: none;
        }

/* Special emphasis */
strong[b-s4ovhzffyl] {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

/* Warning/Important notes */
.warning-note[b-s4ovhzffyl] {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
    animation: pulseWarning-b-s4ovhzffyl 2s infinite;
}

@keyframes pulseWarning-b-s4ovhzffyl {
    0%, 100% {
        border-color: #ff6b6b;
    }

    50% {
        border-color: rgba(255, 107, 107, 0.5);
    }
}

.warning-note[b-s4ovhzffyl]:before {
    content: '⚠';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b6b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

/* Info boxes */
.info-box[b-s4ovhzffyl] {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

    .info-box[b-s4ovhzffyl]:before {
        content: '💡';
        position: absolute;
        left: -15px;
        top: -15px;
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-s4ovhzffyl] {
        padding: 1rem;
    }

    h1[b-s4ovhzffyl] {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    h3[b-s4ovhzffyl] {
        font-size: 1.3rem;
    }

    section[b-s4ovhzffyl] {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    ul li[b-s4ovhzffyl] {
        padding-left: 1.5rem;
    }
}

/* Animation for sections */
@keyframes sectionAppear-b-s4ovhzffyl {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section[b-s4ovhzffyl] {
    animation: sectionAppear-b-s4ovhzffyl 0.5s ease forwards;
}

    section:nth-child(1)[b-s4ovhzffyl] {
        animation-delay: 0.1s;
    }

    section:nth-child(2)[b-s4ovhzffyl] {
        animation-delay: 0.2s;
    }

    section:nth-child(3)[b-s4ovhzffyl] {
        animation-delay: 0.3s;
    }

    section:nth-child(4)[b-s4ovhzffyl] {
        animation-delay: 0.4s;
    }

    section:nth-child(5)[b-s4ovhzffyl] {
        animation-delay: 0.5s;
    }
/* /Pages/ToS.razor.rz.scp.css */
:host[b-a0q38q2fxz] {
    display: block;
    animation: pageLoad-b-a0q38q2fxz 0.6s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pageLoad-b-a0q38q2fxz {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container[b-a0q38q2fxz] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
h1[b-a0q38q2fxz] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    h1[b-a0q38q2fxz]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

    h1 .bi[b-a0q38q2fxz] {
        font-size: 2.5rem;
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    }

/* Introductory paragraph */
.intro-text[b-a0q38q2fxz] {
    background: rgba(21, 61, 111, 0.2);
    border-left: 4px solid #0080ff;
    padding: 1.5rem 2rem;
    border-radius: 0 10px 10px 0;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

    .intro-text[b-a0q38q2fxz]:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
        animation: shimmer-b-a0q38q2fxz 3s infinite;
    }

@keyframes shimmer-b-a0q38q2fxz {
    0% {
        left: -100%;
    }

    20%, 100% {
        left: 100%;
    }
}

/* Agreement Status */
.agreement-status[b-a0q38q2fxz] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.3), rgba(44, 83, 100, 0.3));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.agreement-text[b-a0q38q2fxz] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .agreement-text .bi[b-a0q38q2fxz] {
        color: #00ffff;
        font-size: 1.3rem;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.3));
    }

.agreement-buttons[b-a0q38q2fxz] {
    display: flex;
    gap: 1rem;
}

/* Section Styling */
.tos-section[b-a0q38q2fxz] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.15), rgba(44, 83, 100, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .tos-section:hover[b-a0q38q2fxz] {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
        border-color: rgba(0, 255, 255, 0.2);
    }

    .tos-section[b-a0q38q2fxz]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #00ffff, #0080ff);
        opacity: 0.7;
    }

/* Section Headers */
h2[b-a0q38q2fxz] {
    color: #00ffff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    padding-left: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

    h2[b-a0q38q2fxz]:before {
        content: '§';
        position: absolute;
        left: -25px;
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }

    h2 .bi[b-a0q38q2fxz] {
        font-size: 1.4rem;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
    }

/* Section Content */
.tos-content[b-a0q38q2fxz] {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

    .tos-content p[b-a0q38q2fxz] {
        margin-bottom: 1.2rem;
        padding-left: 15px;
        position: relative;
    }

        .tos-content p[b-a0q38q2fxz]:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #0080ff;
            font-size: 1.2rem;
        }

/* Lists */
ul[b-a0q38q2fxz] {
    list-style: none;
    padding-left: 2rem;
    margin: 1.5rem 0;
}

    ul li[b-a0q38q2fxz] {
        padding: 0.6rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

        ul li[b-a0q38q2fxz]:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #00ffff;
            font-size: 1.1em;
            font-weight: bold;
            text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
        }

        ul li:last-child[b-a0q38q2fxz] {
            border-bottom: none;
        }

/* Warning/Important Notes */
.warning-note[b-a0q38q2fxz] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 141, 75, 0.1));
    border-left: 4px solid #ff6b6b;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
    animation: pulseWarning-b-a0q38q2fxz 2s infinite;
}

@keyframes pulseWarning-b-a0q38q2fxz {
    0%, 100% {
        border-color: #ff6b6b;
    }

    50% {
        border-color: rgba(255, 107, 107, 0.5);
    }
}

.warning-note[b-a0q38q2fxz]:before {
    content: '⚠';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b6b;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

/* Info Notes */
.info-note[b-a0q38q2fxz] {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    border-left: 4px solid #00ffff;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

    .info-note[b-a0q38q2fxz]:before {
        content: 'ℹ';
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        background: #00ffff;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }

/* Important Terms Highlight */
.term-highlight[b-a0q38q2fxz] {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 128, 255, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    position: relative;
}

    .term-highlight strong[b-a0q38q2fxz] {
        color: #00ffff;
        font-weight: 600;
    }

/* Navigation Links */
.section-nav[b-a0q38q2fxz] {
    position: sticky;
    top: 2rem;
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.3), rgba(44, 83, 100, 0.3));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-left: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.section-nav-title[b-a0q38q2fxz] {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list[b-a0q38q2fxz] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item[b-a0q38q2fxz] {
    margin-bottom: 0.8rem;
}

.nav-link[b-a0q38q2fxz] {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

    .nav-link:hover[b-a0q38q2fxz], .nav-link.active[b-a0q38q2fxz] {
        color: #00ffff;
        background: rgba(0, 255, 255, 0.1);
        border-left-color: #00ffff;
    }

    .nav-link .bi[b-a0q38q2fxz] {
        font-size: 0.9rem;
    }

/* Accept/Decline Buttons */
.btn-accept[b-a0q38q2fxz], .btn-decline[b-a0q38q2fxz] {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-accept[b-a0q38q2fxz] {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: white;
}

    .btn-accept:hover[b-a0q38q2fxz] {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
    }

.btn-decline[b-a0q38q2fxz] {
    background: transparent;
    color: #ff6b6b;
    border-color: #ff6b6b;
}

    .btn-decline:hover[b-a0q38q2fxz] {
        background: rgba(255, 107, 107, 0.1);
        transform: translateY(-2px);
    }

/* Footer */
.tos-footer[b-a0q38q2fxz] {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

    .tos-footer a[b-a0q38q2fxz] {
        color: #00ffff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .tos-footer a:hover[b-a0q38q2fxz] {
            color: #ffffff;
            text-decoration: underline;
        }

/* Print Styles */
@media print {
    .agreement-status[b-a0q38q2fxz],
    .section-nav[b-a0q38q2fxz],
    .btn-accept[b-a0q38q2fxz],
    .btn-decline[b-a0q38q2fxz] {
        display: none !important;
    }

    .tos-section[b-a0q38q2fxz] {
        break-inside: avoid;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

/* Animation for sections */
@keyframes sectionAppear-b-a0q38q2fxz {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tos-section[b-a0q38q2fxz] {
    animation: sectionAppear-b-a0q38q2fxz 0.5s ease forwards;
}

    .tos-section:nth-child(1)[b-a0q38q2fxz] {
        animation-delay: 0.1s;
    }

    .tos-section:nth-child(2)[b-a0q38q2fxz] {
        animation-delay: 0.2s;
    }

    .tos-section:nth-child(3)[b-a0q38q2fxz] {
        animation-delay: 0.3s;
    }

    .tos-section:nth-child(4)[b-a0q38q2fxz] {
        animation-delay: 0.4s;
    }

    .tos-section:nth-child(5)[b-a0q38q2fxz] {
        animation-delay: 0.5s;
    }

    .tos-section:nth-child(6)[b-a0q38q2fxz] {
        animation-delay: 0.6s;
    }

    .tos-section:nth-child(7)[b-a0q38q2fxz] {
        animation-delay: 0.7s;
    }

    .tos-section:nth-child(8)[b-a0q38q2fxz] {
        animation-delay: 0.8s;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .container[b-a0q38q2fxz] {
        padding: 1.5rem;
    }

    h1[b-a0q38q2fxz] {
        font-size: 2.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .agreement-status[b-a0q38q2fxz] {
        flex-direction: column;
        text-align: center;
    }

    .agreement-buttons[b-a0q38q2fxz] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container[b-a0q38q2fxz] {
        padding: 1rem;
    }

    h1[b-a0q38q2fxz] {
        font-size: 1.8rem;
    }

    h2[b-a0q38q2fxz] {
        font-size: 1.4rem;
    }

    .tos-section[b-a0q38q2fxz] {
        padding: 1.5rem;
    }

    .intro-text[b-a0q38q2fxz] {
        padding: 1rem 1.5rem;
    }
}

/* Scroll to top button */
.scroll-top[b-a0q38q2fxz] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1000;
}

    .scroll-top.visible[b-a0q38q2fxz] {
        opacity: 1;
        transform: translateY(0);
    }

    .scroll-top:hover[b-a0q38q2fxz] {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    }


.text-muted[b-a0q38q2fxz] {
    color: rgba(255, 255, 255, 0.6) !important;
}

a[b-a0q38q2fxz] {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover[b-a0q38q2fxz] {
        color: #ffffff;
        text-decoration: underline;
    }
/* /Pages/Upload.razor.rz.scp.css */
:host[b-1a2pclm9ja] {
    display: block;
    animation: pageLoad-b-1a2pclm9ja 0.6s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pageLoad-b-1a2pclm9ja {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container[b-1a2pclm9ja] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
h1[b-1a2pclm9ja] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    h1[b-1a2pclm9ja]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

    h1 .bi[b-1a2pclm9ja] {
        font-size: 2.2rem;
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    }

/* Upload Status */
.upload-status[b-1a2pclm9ja] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.3), rgba(44, 83, 100, 0.3));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.status-indicator[b-1a2pclm9ja] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot[b-1a2pclm9ja] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse-b-1a2pclm9ja 2s infinite;
}

    .status-dot.ready[b-1a2pclm9ja] {
        background: #4cd964;
        box-shadow: 0 0 10px #4cd964;
    }

    .status-dot.processing[b-1a2pclm9ja] {
        background: #ffd93d;
        box-shadow: 0 0 10px #ffd93d;
        animation: pulseProcessing-b-1a2pclm9ja 1s infinite;
    }

    .status-dot.uploading[b-1a2pclm9ja] {
        background: #00ffff;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        animation: pulseUploading-b-1a2pclm9ja 0.8s infinite;
    }

@keyframes pulse-b-1a2pclm9ja {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes pulseProcessing-b-1a2pclm9ja {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulseUploading-b-1a2pclm9ja {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.status-text[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.status-value[b-1a2pclm9ja] {
    color: #00ffff;
    font-weight: 600;
}

/* Progress Bar */
.upload-progress[b-1a2pclm9ja] {
    width: 100%;
    margin: 1.5rem 0;
}

.progress-bar[b-1a2pclm9ja] {
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill[b-1a2pclm9ja] {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .progress-fill[b-1a2pclm9ja]:after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: shimmer-b-1a2pclm9ja 2s infinite;
    }

@keyframes shimmer-b-1a2pclm9ja {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.progress-text[b-1a2pclm9ja] {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Upload Card */
.upload-card[b-1a2pclm9ja] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.25), rgba(44, 83, 100, 0.25));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .upload-card[b-1a2pclm9ja]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #0080ff, #00ffff);
        background-size: 200% 100%;
        animation: gradientFlow-b-1a2pclm9ja 3s infinite linear;
    }

@keyframes gradientFlow-b-1a2pclm9ja {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Card Headers */
.card-header[b-1a2pclm9ja] {
    color: #00ffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 15px;
    border-left: 4px solid #00ffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .card-header .bi[b-1a2pclm9ja] {
        font-size: 1.4rem;
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
    }

/* Form Controls */
.form-group[b-1a2pclm9ja] {
    margin-bottom: 1.5rem;
}

.form-label[b-1a2pclm9ja] {
    color: #00ffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .form-label .bi[b-1a2pclm9ja] {
        font-size: 1.1rem;
        filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
    }

.required[b-1a2pclm9ja] {
    color: #ff6b6b;
    margin-left: 4px;
}

/* Tooltips */
.tooltip-icon[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.5);
    cursor: help;
    transition: all 0.3s ease;
}

    .tooltip-icon:hover[b-1a2pclm9ja] {
        color: #00ffff;
        transform: scale(1.1);
    }

/* Form Inputs */
.form-control[b-1a2pclm9ja], .form-select[b-1a2pclm9ja] {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus[b-1a2pclm9ja], .form-select:focus[b-1a2pclm9ja] {
        background: rgba(0, 0, 0, 0.4);
        border-color: #00ffff;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        color: #ffffff;
        outline: none;
    }

    .form-control[b-1a2pclm9ja]::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

/* File Upload Area */
.file-upload-area[b-1a2pclm9ja] {
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

    .file-upload-area:hover[b-1a2pclm9ja] {
        border-color: #00ffff;
        background: rgba(0, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .file-upload-area.dragover[b-1a2pclm9ja] {
        border-color: #00ffff;
        background: rgba(0, 255, 255, 0.15);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    }

.upload-icon[b-1a2pclm9ja] {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
}

.upload-text[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.upload-subtext[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.selected-file[b-1a2pclm9ja] {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.file-info[b-1a2pclm9ja] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.file-name[b-1a2pclm9ja] {
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .file-name .bi[b-1a2pclm9ja] {
        color: #00ffff;
    }

.file-size[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.file-remove[b-1a2pclm9ja] {
    color: #ff6b6b;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .file-remove:hover[b-1a2pclm9ja] {
        color: #ff8b8b;
        transform: scale(1.1);
    }

/* Checkbox Styling */
.form-check-input[b-1a2pclm9ja] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    appearance: none;
    position: relative;
}

    .form-check-input:checked[b-1a2pclm9ja] {
        background: #00ffff;
        border-color: #00ffff;
    }

        .form-check-input:checked[b-1a2pclm9ja]:after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-weight: bold;
        }

.form-check-label[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.5rem;
    cursor: pointer;
}

    .form-check-label a[b-1a2pclm9ja] {
        color: #00ffff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .form-check-label a:hover[b-1a2pclm9ja] {
            color: #ffffff;
            text-decoration: underline;
        }

/* Upload Button */
.upload-btn[b-1a2pclm9ja] {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 1rem;
}

    .upload-btn[b-1a2pclm9ja]:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .upload-btn:hover[b-1a2pclm9ja]:before {
        width: 300px;
        height: 300px;
    }

    .upload-btn:hover[b-1a2pclm9ja] {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    }

    .upload-btn:active[b-1a2pclm9ja] {
        transform: translateY(-1px);
    }

    .upload-btn:disabled[b-1a2pclm9ja] {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

        .upload-btn:disabled:hover[b-1a2pclm9ja]:before {
            width: 0;
            height: 0;
        }

    .upload-btn .bi[b-1a2pclm9ja] {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

    .upload-btn:hover .bi[b-1a2pclm9ja] {
        transform: translateY(-2px);
    }

/* Result Display */
.result-card[b-1a2pclm9ja] {
    background: rgba(21, 61, 111, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.result-header[b-1a2pclm9ja] {
    color: #00ffff;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transaction-hash[b-1a2pclm9ja] {
    font-family: 'Consolas', 'Monaco', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    word-break: break-all;
    color: #00ffff;
    border-left: 3px solid #00ffff;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

    .transaction-hash[b-1a2pclm9ja]:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
        animation: shine-b-1a2pclm9ja 3s infinite;
    }

@keyframes shine-b-1a2pclm9ja {
    0% {
        left: -100%;
    }

    20%, 100% {
        left: 100%;
    }
}

.datachain-share-button[b-1a2pclm9ja] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 128, 255, 0.1));
    color: #00ffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
    cursor: pointer;
}

    .datachain-share-button:hover[b-1a2pclm9ja] {
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
        border-color: transparent;
    }

    .datachain-share-button .bi[b-1a2pclm9ja] {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .datachain-share-button:hover .bi[b-1a2pclm9ja] {
        transform: translateX(3px);
    }

/* Error Messages */
.error-message[b-1a2pclm9ja] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 141, 75, 0.1));
    border-left: 4px solid #ff6b6b;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1rem 0;
    animation: pulseWarning-b-1a2pclm9ja 2s infinite;
}

@keyframes pulseWarning-b-1a2pclm9ja {
    0%, 100% {
        border-color: #ff6b6b;
    }

    50% {
        border-color: rgba(255, 107, 107, 0.5);
    }
}

.error-text[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Network Badge */
.network-badge[b-1a2pclm9ja] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Fee Display */
.fee-display[b-1a2pclm9ja] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.fee-label[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.fee-value[b-1a2pclm9ja] {
    color: #00ffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.fee-unit[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-left: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-1a2pclm9ja] {
        padding: 1rem;
    }

    h1[b-1a2pclm9ja] {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .upload-status[b-1a2pclm9ja] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .file-info[b-1a2pclm9ja] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .upload-btn[b-1a2pclm9ja] {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation for form groups */
@keyframes fadeInUp-b-1a2pclm9ja {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.upload-card[b-1a2pclm9ja] {
    animation: fadeInUp-b-1a2pclm9ja 0.5s ease forwards;
}

.form-group[b-1a2pclm9ja] {
    animation: fadeInUp-b-1a2pclm9ja 0.5s ease forwards;
}

    .form-group:nth-child(1)[b-1a2pclm9ja] {
        animation-delay: 0.1s;
    }

    .form-group:nth-child(2)[b-1a2pclm9ja] {
        animation-delay: 0.2s;
    }

    .form-group:nth-child(3)[b-1a2pclm9ja] {
        animation-delay: 0.3s;
    }

    .form-group:nth-child(4)[b-1a2pclm9ja] {
        animation-delay: 0.4s;
    }

    .form-group:nth-child(5)[b-1a2pclm9ja] {
        animation-delay: 0.5s;
    }

    .form-group:nth-child(6)[b-1a2pclm9ja] {
        animation-delay: 0.6s;
    }

    .form-group:nth-child(7)[b-1a2pclm9ja] {
        animation-delay: 0.7s;
    }

    .form-group:nth-child(8)[b-1a2pclm9ja] {
        animation-delay: 0.8s;
    }

/* Advanced Options */
.advanced-options[b-1a2pclm9ja] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.options-toggle[b-1a2pclm9ja] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00ffff;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 1rem;
}

    .options-toggle .bi[b-1a2pclm9ja] {
        transition: transform 0.3s ease;
    }

    .options-toggle.expanded .bi[b-1a2pclm9ja] {
        transform: rotate(180deg);
    }

.options-content[b-1a2pclm9ja] {
    animation: slideDown-b-1a2pclm9ja 0.3s ease;
}

@keyframes slideDown-b-1a2pclm9ja {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.text-cyan[b-1a2pclm9ja] {
    color: #00ffff !important;
}

.text-muted[b-1a2pclm9ja] {
    color: rgba(255, 255, 255, 0.6) !important;
}

.spinning[b-1a2pclm9ja] {
    animation: spin-b-1a2pclm9ja 1s linear infinite;
}

@keyframes spin-b-1a2pclm9ja {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom scrollbar for textareas */
textarea[b-1a2pclm9ja]::-webkit-scrollbar {
    width: 8px;
}

textarea[b-1a2pclm9ja]::-webkit-scrollbar-track {
    background: rgba(0, 255, 255, 0.1);
    border-radius: 4px;
}

textarea[b-1a2pclm9ja]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border-radius: 4px;
}
/* /Pages/WalletGenerator.razor.rz.scp.css */
:host[b-p1ixwkckb5] {
    display: block;
    animation: pageLoad-b-p1ixwkckb5 0.6s ease;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    min-height: 100vh;
}

@keyframes pageLoad-b-p1ixwkckb5 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container[b-p1ixwkckb5] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
h3[b-p1ixwkckb5] {
    background: linear-gradient(90deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    h3[b-p1ixwkckb5]:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #00ffff, #0080ff);
        border-radius: 2px;
    }

    h3 .bi[b-p1ixwkckb5] {
        font-size: 2rem;
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
    }

/* Header Subtitle */
.page-subtitle[b-p1ixwkckb5] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid #0080ff;
}

/* Security Warning */
.security-warning[b-p1ixwkckb5] {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 141, 75, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    animation: pulseWarning-b-p1ixwkckb5 2s infinite;
}

@keyframes pulseWarning-b-p1ixwkckb5 {
    0%, 100% {
        border-color: rgba(255, 107, 107, 0.3);
    }

    50% {
        border-color: rgba(255, 107, 107, 0.6);
    }
}

.warning-header[b-p1ixwkckb5] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

    .warning-header .bi[b-p1ixwkckb5] {
        color: #ff6b6b;
        font-size: 1.5rem;
        filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
    }

.warning-title[b-p1ixwkckb5] {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.2rem;
}

.warning-content[b-p1ixwkckb5] {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

    .warning-content ul[b-p1ixwkckb5] {
        margin: 0.5rem 0;
        padding-left: 1.5rem;
    }

    .warning-content li[b-p1ixwkckb5] {
        margin: 0.5rem 0;
    }

/* Generator Card */
.generator-card[b-p1ixwkckb5] {
    background: linear-gradient(135deg, rgba(21, 61, 111, 0.3), rgba(44, 83, 100, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

    .generator-card[b-p1ixwkckb5]:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #0080ff, #00ffff);
        background-size: 200% 100%;
        animation: gradientFlow-b-p1ixwkckb5 3s infinite linear;
    }

@keyframes gradientFlow-b-p1ixwkckb5 {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Form Controls */
.form-group[b-p1ixwkckb5] {
    margin-bottom: 1.5rem;
}

.form-label[b-p1ixwkckb5] {
    color: #00ffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .form-label .bi[b-p1ixwkckb5] {
        font-size: 1.1rem;
        filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
    }

/* Form Inputs */
.form-control[b-p1ixwkckb5], .form-select[b-p1ixwkckb5] {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus[b-p1ixwkckb5], .form-select:focus[b-p1ixwkckb5] {
        background: rgba(0, 0, 0, 0.4);
        border-color: #00ffff;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
        color: #ffffff;
    }

    .form-control[b-p1ixwkckb5]::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

/* Custom Slider */
.range-slider[b-p1ixwkckb5] {
    width: 100%;
    margin: 1rem 0;
}

.slider-value[b-p1ixwkckb5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .slider-value .value-display[b-p1ixwkckb5] {
        background: linear-gradient(135deg, #00ffff, #0080ff);
        color: white;
        padding: 0.3rem 1rem;
        border-radius: 20px;
        font-weight: 600;
        font-size: 1.1rem;
        min-width: 60px;
        text-align: center;
    }

/* Generate Button */
.generate-btn[b-p1ixwkckb5] {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .generate-btn[b-p1ixwkckb5]:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .generate-btn:hover[b-p1ixwkckb5]:before {
        width: 300px;
        height: 300px;
    }

    .generate-btn:hover[b-p1ixwkckb5] {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    }

    .generate-btn:active[b-p1ixwkckb5] {
        transform: translateY(-1px);
    }

    .generate-btn .bi[b-p1ixwkckb5] {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

    .generate-btn:hover .bi[b-p1ixwkckb5] {
        transform: rotate(180deg);
    }

/* Wallet Preview */
.wallet-preview[b-p1ixwkckb5] {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-title[b-p1ixwkckb5] {
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-grid[b-p1ixwkckb5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.preview-item[b-p1ixwkckb5] {
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.preview-label[b-p1ixwkckb5] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.preview-value[b-p1ixwkckb5] {
    color: #ffffff;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 3px solid #00ffff;
}

/* Options Section */
.options-section[b-p1ixwkckb5] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.options-title[b-p1ixwkckb5] {
    color: #00ffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.option-checkbox[b-p1ixwkckb5] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
}

    .option-checkbox input[type="checkbox"][b-p1ixwkckb5] {
        width: 18px;
        height: 18px;
        border: 2px solid rgba(0, 255, 255, 0.3);
        border-radius: 4px;
        background: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        appearance: none;
        position: relative;
    }

        .option-checkbox input[type="checkbox"]:checked[b-p1ixwkckb5] {
            background: #00ffff;
            border-color: #00ffff;
        }

            .option-checkbox input[type="checkbox"]:checked[b-p1ixwkckb5]:after {
                content: '✓';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: white;
                font-weight: bold;
            }

.option-label[b-p1ixwkckb5] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

    .option-label small[b-p1ixwkckb5] {
        color: rgba(255, 255, 255, 0.5);
        display: block;
        margin-top: 0.2rem;
    }

/* Network Badges */
.network-badges[b-p1ixwkckb5] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.network-badge[b-p1ixwkckb5] {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .network-badge .bi[b-p1ixwkckb5] {
        font-size: 0.9rem;
    }

/* Animation for form elements */
@keyframes fadeInUp-b-p1ixwkckb5 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.generator-card[b-p1ixwkckb5] {
    animation: fadeInUp-b-p1ixwkckb5 0.5s ease forwards;
}

.security-warning[b-p1ixwkckb5] {
    animation: fadeInUp-b-p1ixwkckb5 0.5s ease 0.1s forwards;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-p1ixwkckb5] {
        padding: 1rem;
    }

    h3[b-p1ixwkckb5] {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .preview-grid[b-p1ixwkckb5] {
        grid-template-columns: 1fr;
    }

    .generate-btn[b-p1ixwkckb5] {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Loading overlay */
.loading-overlay[b-p1ixwkckb5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-p1ixwkckb5 0.3s ease;
}

@keyframes fadeIn-b-p1ixwkckb5 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.loading-content[b-p1ixwkckb5] {
    text-align: center;
    max-width: 400px;
}

.loading-spinner[b-p1ixwkckb5] {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 255, 255, 0.3);
    border-top: 3px solid #00ffff;
    border-radius: 50%;
    animation: spin-b-p1ixwkckb5 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes spin-b-p1ixwkckb5 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text[b-p1ixwkckb5] {
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.progress-bar[b-p1ixwkckb5] {
    width: 100%;
    height: 4px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill[b-p1ixwkckb5] {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #0080ff);
    border-radius: 2px;
    transition: width 0.3s ease;
}


.text-cyan[b-p1ixwkckb5] {
    color: #00ffff !important;
}

.text-muted[b-p1ixwkckb5] {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-range[b-p1ixwkckb5]::-webkit-slider-thumb {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.form-range[b-p1ixwkckb5]::-moz-range-thumb {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.h-100[b-p1ixwkckb5] {
    height: 100% !important;
}
/* /Shared/LanguageSwitcherComponent.razor.rz.scp.css */
.language-switcher[b-phqopdk5us] {
    position: relative;
    margin: 1rem 0.75rem 0.75rem 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hide mobile view by default on desktop */
.mobile-view[b-phqopdk5us] {
    display: none;
}

/* Desktop styles */
.desktop-view[b-phqopdk5us] {
    display: block;
}

.language-btn[b-phqopdk5us] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    color: #e9ecef;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

    .language-btn:hover[b-phqopdk5us] {
        background: rgba(103, 126, 234, 0.25);
        border-color: rgba(103, 126, 234, 0.5);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(103, 126, 234, 0.2);
    }

    .language-btn:active[b-phqopdk5us] {
        transform: translateY(0);
    }

.dropdown[b-phqopdk5us] {
    position: relative;
    width: 100%;
}

.dropdown-menu[b-phqopdk5us] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 100%;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1050;
    display: none;
    overflow: hidden;
}

    .dropdown-menu.show[b-phqopdk5us] {
        display: block;
        animation: dropdownSlide-b-phqopdk5us 0.3s ease forwards;
    }

@keyframes dropdownSlide-b-phqopdk5us {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item[b-phqopdk5us] {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

    .dropdown-item:last-child[b-phqopdk5us] {
        margin-bottom: 0;
    }

    .dropdown-item:hover[b-phqopdk5us] {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(4px);
    }

    .dropdown-item.active[b-phqopdk5us] {
        background: rgba(255, 255, 255, 0.25);
        color: #ffffff;
        font-weight: 600;
        position: relative;
    }

        .dropdown-item.active[b-phqopdk5us]::before {
            content: "";
            position: absolute;
            left: 4px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 60%;
            background: #4ade80;
            border-radius: 2px;
        }

.flag-icon[b-phqopdk5us] {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Mobile styles */
@media (max-width: 768px) {
    .desktop-view[b-phqopdk5us] {
        display: none !important;
    }

    .mobile-view[b-phqopdk5us] {
        display: block !important;
    }

    .language-switcher[b-phqopdk5us] {
        margin: 0.75rem;
        padding-top: 0.75rem;
    }

    .mobile-language-header[b-phqopdk5us] {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
        padding: 0 0.5rem;
        display: flex;
        align-items: center;
    }

    .mobile-language-options[b-phqopdk5us] {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .mobile-language-option[b-phqopdk5us] {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        color: #e9ecef;
        cursor: pointer;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        text-align: left;
        width: 100%;
        font-size: 0.95rem;
    }

        .mobile-language-option:hover[b-phqopdk5us] {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(0, 255, 255, 0.3);
            transform: translateX(4px);
        }

        .mobile-language-option.active[b-phqopdk5us] {
            background: linear-gradient(90deg, rgba(0, 255, 255, 0.15), rgba(0, 128, 255, 0.15));
            border-color: rgba(0, 255, 255, 0.3);
            color: #ffffff;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
            font-weight: 500;
        }

            .mobile-language-option.active .flag-icon[b-phqopdk5us] {
                filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
            }

        .mobile-language-option .bi-check-circle-fill[b-phqopdk5us] {
            color: #00ffff;
            font-size: 1rem;
            margin-left: auto;
            filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
        }
}

/* Desktop theme adjustments for top navbar */
@media (min-width: 769px) {
    .top-row .language-switcher[b-phqopdk5us] {
        margin: 0;
        padding-top: 0;
        border-top: none;
    }

    .top-row .language-btn[b-phqopdk5us] {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.15);
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

        .top-row .language-btn:hover[b-phqopdk5us] {
            background: rgba(103, 126, 234, 0.3);
        }

    .top-row .dropdown-menu[b-phqopdk5us] {
        top: 100%;
        right: 0;
        left: auto;
        margin-top: 0.25rem;
        min-width: 180px;
    }
}
/* /Shared/ToastDisplay.razor.rz.scp.css */
/* Minimal Toast Styles matching Data Chain */
.toast-container[b-dkl4uxsu77] {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1050;
}

.my-toast[b-dkl4uxsu77] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    margin-bottom: 12px;
    min-width: 320px;
    animation: toastSlideIn-b-dkl4uxsu77 0.3s ease-out;
}

    /* Type colors matching Data Chain theme */
    .my-toast.toast-info[b-dkl4uxsu77] {
        border-left: 4px solid #3b82f6;
        background: #eff6ff;
    }

    .my-toast.toast-success[b-dkl4uxsu77] {
        border-left: 4px solid #10b981;
        background: #f0fdf4;
    }

    .my-toast.toast-warning[b-dkl4uxsu77] {
        border-left: 4px solid #f59e0b;
        background: #fffbeb;
    }

    .my-toast.toast-error[b-dkl4uxsu77] {
        border-left: 4px solid #ef4444;
        background: #fef2f2;
    }

    .my-toast .toast-header[b-dkl4uxsu77] {
        padding: 12px 16px;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: white;
        border-radius: 8px 8px 0 0;
    }

        .my-toast .toast-header strong[b-dkl4uxsu77] {
            font-weight: 600;
            color: #1e293b;
            font-size: 0.95rem;
        }

    .my-toast .toast-close[b-dkl4uxsu77] {
        background: none;
        border: none;
        font-size: 1.25rem;
        cursor: pointer;
        color: #64748b;
        padding: 4px;
        border-radius: 4px;
    }

        .my-toast .toast-close:hover[b-dkl4uxsu77] {
            background: #f1f5f9;
            color: #dc2626;
        }

    .my-toast > div:not(.toast-header)[b-dkl4uxsu77] {
        padding: 16px;
        color: #475569;
        font-size: 0.9rem;
    }

@keyframes toastSlideIn-b-dkl4uxsu77 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
