/* ===================================================
   IroncladBridges - Global Stylesheet
   =================================================== */

/* ===========================
   1. Base / Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    min-height: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Body Variants per Page */
body.page-landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
}

body.page-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body.page-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

body.page-registration {
    padding: 40px 20px;
}

body.page-engine {
    overflow-x: hidden;
}

/* ===========================
   2. App Layout (Dashboard pages)
   =========================== */
.page-dashboard {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-container {
    display: flex;
    flex: 1;
    min-height: 100vh;
    width: 100%;
}

/* ===========================
   3. Sidebar (App Pages - 280px)
   =========================== */
.sidebar {
    width: 280px;
    background-color: #0a0a0a;
    border-right: 1px solid #1a1a1a;
    padding: 15px 12px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

/* Logo */
.logo-section {
    margin-bottom: 20px;
    padding: 0 10px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

/* Navigation */
.nav-menu {
    flex: 1;
    margin-bottom: 10px;
}

.nav-section-title {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    margin-top: 40px;
    padding: 0 15px;
    font-weight: 600;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.nav-link.active {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Logout Button */
.logout-section {
    margin-bottom: 20px;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #ef4444;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: transparent;
    border: 1px solid #262626;
    width: 100%;
    cursor: pointer;
}

.logout-btn:hover {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

/* User Profile Section */
.user-profile-section {
    border-top: 1px solid #1a1a1a;
    padding-top: 15px;
    position: relative;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #262626;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.user-profile-btn:hover {
    background-color: #262626;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
    text-align: left;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.user-email {
    font-size: 0.75rem;
    color: #6b7280;
}

.user-dropdown-icon {
    color: #6b7280;
    font-size: 0.9rem;
}

/* User Dropdown Menu */
.user-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 10px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 8px;
    display: none;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.user-dropdown.active {
    display: block;
}

.user-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.user-dropdown-link:hover {
    background-color: #262626;
    color: #ffffff;
}

/* ===========================
   4. Main Content (App Pages)
   =========================== */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 10px 20px;
    min-width: 0;
    width: calc(100% - 280px);
    min-height: 100vh;
}

/* Page Header */
.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}

.page-description {
    font-size: 1.05rem;
    color: #9ca3af;
}

/* Content Cards */
.content-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #262626;
    margin-bottom: 25px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

/* ===========================
   5. Form Styles
   =========================== */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.form-control {
    background-color: #0a0a0a;
    border: 1px solid #262626;
    border-radius: 12px;
    color: #ffffff;
    padding: 14px 18px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #0a0a0a;
    border-color: #10b981;
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-control::placeholder {
    color: #4b5563;
}

.form-control:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: #6b7280;
}

.form-select {
    background-color: #0a0a0a;
    border: 1px solid #262626;
    border-radius: 12px;
    color: #ffffff;
    padding: 14px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-select:focus {
    background-color: #0a0a0a;
    border-color: #10b981;
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* ===========================
   6. Button Styles (App Pages)
   =========================== */
.btn-primary-custom {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary-custom:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary-custom {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #262626;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary-custom:hover {
    background-color: #262626;
    border-color: #10b981;
}

/* ===========================
   7. Settlement / Transaction Items
   =========================== */
.settlement-item {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 16px;
    padding: 25px 30px;
    border: 1px solid #262626;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.settlement-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.settlement-date {
    color: #6b7280;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.settlement-type {
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
    font-size: 1.05rem;
}

.settlement-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.settlement-amount {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.settlement-status {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ===========================
   8. Info & Warning Boxes
   =========================== */
.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
}

.info-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.6;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.2rem;
}

.warning-box {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.warning-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.warning-box p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   9. Stat Value (Shared)
   =========================== */
.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    font-style: italic;
}

.stat-change {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

/* ===========================
   10. Mobile / Responsive Base
   =========================== */
/* Mobile Header Bar (hidden on desktop) */
.mobile-header-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
}

.mobile-logo .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
}

.mobile-logo .logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 1px solid #262626;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: #262626;
    border-color: #374151;
}

.mobile-menu-toggle svg {
    flex-shrink: 0;
}

.sidebar.mobile-open {
    transform: translateX(0);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
}

.overlay.active {
    display: block;
}

/* Nav icon sizing for SVGs */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    flex-shrink: 0;
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.user-dropdown-icon {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .mobile-header-bar {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding: 80px 30px 30px;
        width: 100%;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar .logo-section {
        display: none;
    }

    .sidebar .nav-menu {
        margin-top: 0;
        margin-bottom: 120px;
        flex: 0;
    }

    .sidebar {
        padding-top: 15px;
    }

    .sidebar .logout-section {
        margin-bottom: 10px;
    }

    .sidebar .user-profile-section {
        margin-top: 0;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 75px 20px 30px;
    }

    .page-title {
        font-size: 2rem;
    }

    .content-card {
        padding: 25px 20px;
    }

    .settlement-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .settlement-right {
        width: 100%;
        justify-content: space-between;
    }
}

/* ===================================================
   PAGE-SPECIFIC STYLES
   =================================================== */

/* ===========================
   11. Dashboard Page
   =========================== */

/* Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.node-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.node-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.node-details h1 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.node-status {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.uptime-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.uptime-label {
    color: #6b7280;
    margin-right: 8px;
}

.uptime-value {
    color: #10b981;
}

.settings-btn {
    width: 45px;
    height: 45px;
    background-color: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.settings-btn svg {
    flex-shrink: 0;
}

.settings-btn:hover {
    background-color: #262626;
    color: #ffffff;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #262626;
}

.stat-card.highlight {
    background: linear-gradient(145deg, #0d3d2f, #0a2a20);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stat-label.green {
    color: #10b981;
}

.stat-value.green {
    color: #10b981;
}

.stat-sublabel {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}

.btn-move-wallet {
    background-color: #10b981;
    color: #0a0a0a;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-move-wallet:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

/* Efficiency Card */
.efficiency-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #262626;
    margin-bottom: 30px;
}

.efficiency-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.efficiency-title {
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}

.efficiency-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.efficiency-subtitle span {
    font-weight: 600;
    color: #ffffff;
}

.performance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.performance-indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

/* Dashboard Progress Bar */
.progress-container {
    position: relative;
    margin-bottom: 20px;
}

.progress-bar-custom {
    width: 100%;
    height: 12px;
    background: #1f2937;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    border-radius: 50px;
    width: 85%;
    position: relative;
}

.progress-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.progress-labels .institutional {
    color: #10b981;
    font-weight: 700;
}

/* Tier zone markers behind progress bar */
.tier-zones {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    z-index: 0;
    pointer-events: none;
}

.tier-zone {
    height: 100%;
}

.progress-bar-custom {
    position: relative;
    z-index: 1;
}

/* Active tier label highlight */
.progress-labels .tier-active {
    color: #ffffff;
    font-weight: 700;
    position: relative;
}

.progress-labels .tier-active::after {
    content: "●";
    margin-left: 5px;
    font-size: 0.5rem;
    vertical-align: middle;
}

/* Settlements Section */
.settlements-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.auto-audited {
    font-size: 0.85rem;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
    body.page-dashboard .stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    body.page-dashboard .stat-value {
        font-size: 2rem;
    }

    body.page-dashboard .settlement-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .efficiency-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    body.page-dashboard .settlement-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===========================
   12. Deposit Page
   =========================== */

/* Currency Toggle */
.currency-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.currency-btn {
    flex: 1;
    padding: 14px 20px;
    background-color: #1a1a1a;
    border: 1px solid #262626;
    border-radius: 12px;
    color: #9ca3af;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.currency-btn:hover {
    border-color: #10b981;
    color: #ffffff;
}

.currency-btn.active {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

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

.wallet-address-display {
    background-color: #0a0a0a;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 18px;
    font-family: "Courier New", monospace;
    font-size: 0.95rem;
    color: #10b981;
    word-break: break-all;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.copy-btn {
    background-color: #10b981;
    color: #0a0a0a;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background-color: #059669;
}

/* Payment Option Sections - Show/Hide */
.payment-option-section {
    display: none;
}

.payment-option-section.active {
    display: block;
}

/* Deposit Status Badges */
.status-confirmed {
    color: #10b981 !important;
}

.status-pending {
    color: #eab308 !important;
}

/* Deposit Responsive */
@media (max-width: 768px) {
    .currency-toggle {
        flex-direction: column;
    }

    .wallet-address-display {
        flex-direction: column;
        align-items: stretch;
    }

    .copy-btn {
        width: 100%;
    }
}

/* ===========================
   13. Withdraw Page
   =========================== */
.wallet-info-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.wallet-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.wallet-value {
    font-size: 1rem;
    color: #10b981;
    font-family: "Courier New", monospace;
    word-break: break-all;
}

.edit-wallet-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.edit-wallet-link:hover {
    color: #60a5fa;
}

/* Withdraw Responsive */
@media (max-width: 768px) {
    body.page-withdraw .settlement-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===========================
   14. History Page
   =========================== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #262626;
    overflow: hidden;
    min-width: 0;
}

.stat-box .stat-value {
    font-size: clamp(1.2rem, 4vw, 2rem);
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination-btn {
    background-color: #1a1a1a;
    color: #9ca3af;
    border: 1px solid #262626;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #262626;
    border-color: #10b981;
    color: #ffffff;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.pagination-info {
    color: #6b7280;
    font-size: 0.9rem;
}

a.pagination-btn {
    text-decoration: none;
    display: inline-block;
}

span.pagination-btn.active {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
}

.status-confirmed {
    color: #10b981;
}

.status-pending {
    color: #f59e0b;
}

.status-declined {
    color: #ef4444;
}

/* History Responsive */
@media (max-width: 768px) {
    body.page-history .settlement-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-box {
        padding: 18px 15px;
    }

    .stat-box .stat-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   15. Profile Page
   =========================== */
.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #262626;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.profile-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-info p {
    font-size: 1rem;
    color: #9ca3af;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #262626;
}

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

.info-label {
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 600;
}

.info-value {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-primary {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Profile Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-info h2 {
        font-size: 1.5rem;
    }

    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ===========================
   16. Settings Page
   =========================== */
.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #262626;
}

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

.setting-label {
    color: #9ca3af;
    font-size: 0.95rem;
}

.setting-value {
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===========================
   17. Engine Page
   =========================== */

/* Status Cards */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.status-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #262626;
    transition: all 0.3s ease;
}

.status-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.status-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.status-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    font-style: italic;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: engine-blink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

@keyframes engine-blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.indicator-text {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

/* Engine and Activity Container */
.engine-activity-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* Engine Visualization */
.engine-section {
    flex: 1;
    min-width: 0;
}

.engine-container {
    position: relative;
    min-height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    border: 1px solid #262626;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated Background Grid */
.engine-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-flow 20s linear infinite;
    pointer-events: none;
}

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

/* Central Node */
.central-node {
    position: relative;
    width: 240px;
    height: 240px;
    z-index: 10;
}

.node-core {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow:
        0 0 60px rgba(16, 185, 129, 0.8),
        0 0 100px rgba(16, 185, 129, 0.5),
        inset 0 0 60px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.6));
}

.node-core::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border: 3px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    animation: rotate-ring 8s linear infinite;
}

.node-core::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    border: 2px dashed rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    border-bottom-color: transparent;
    border-right-color: transparent;
    animation: rotate-ring-reverse 12s linear infinite;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring:nth-child(1) {
    width: 160%;
    height: 160%;
    animation: rotate-ring 15s linear infinite;
    border-style: dotted;
}

.orbit-ring:nth-child(2) {
    width: 180%;
    height: 180%;
    animation: rotate-ring-reverse 20s linear infinite;
}

.orbit-ring:nth-child(3) {
    width: 200%;
    height: 200%;
    animation: rotate-ring 25s linear infinite;
    border-style: dashed;
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow:
            0 0 60px rgba(16, 185, 129, 0.8),
            0 0 100px rgba(16, 185, 129, 0.5),
            inset 0 0 60px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 80px rgba(16, 185, 129, 1),
            0 0 120px rgba(16, 185, 129, 0.7),
            inset 0 0 80px rgba(16, 185, 129, 0.5);
        transform: scale(1.05);
    }
}

@keyframes rotate-ring {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotate-ring-reverse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Protocol Nodes */
.protocol-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.protocol-node {
    position: absolute;
    width: 110px;
    height: 110px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid #262626;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: engine-float 6s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.protocol-node:hover {
    border-color: #10b981;
    transform: scale(1.15) translateY(-10px);
    box-shadow:
        0 10px 40px rgba(16, 185, 129, 0.4),
        0 0 30px rgba(16, 185, 129, 0.3);
    background: linear-gradient(145deg, #0d3d2f, #0a2a20);
}

.protocol-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 5px rgba(16, 185, 129, 0.3));
    transition: all 0.3s ease;
}

.protocol-node:hover .protocol-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 10px rgba(16, 185, 129, 0.6));
}

.protocol-name {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.protocol-node.active .protocol-name,
.protocol-node:hover .protocol-name {
    color: #10b981;
}

.protocol-node:nth-child(1) {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}
.protocol-node:nth-child(2) {
    top: 25%;
    right: 8%;
    animation-delay: 1s;
}
.protocol-node:nth-child(3) {
    bottom: 25%;
    right: 8%;
    animation-delay: 2s;
}
.protocol-node:nth-child(4) {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}
.protocol-node:nth-child(5) {
    bottom: 25%;
    left: 8%;
    animation-delay: 4s;
}
.protocol-node:nth-child(6) {
    top: 25%;
    left: 8%;
    animation-delay: 5s;
}

@keyframes engine-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    transform-origin: left center;
    animation: pulse-line 3s ease-in-out infinite;
    pointer-events: none;
    filter: blur(1px);
}

@keyframes pulse-line {
    0%,
    100% {
        opacity: 0.2;
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    }
}

/* Activity Log Section */
.activity-section {
    flex: 0 0 420px;
    min-width: 0;
}

.activity-log {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #262626;
    height: 600px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 30px;
}

.log-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.log-title::before {
    content: "📡";
    font-size: 1.5rem;
}

.log-items-container {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.log-items-container::-webkit-scrollbar {
    width: 6px;
}

.log-items-container::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-radius: 10px;
}

.log-items-container::-webkit-scrollbar-thumb {
    background: #262626;
    border-radius: 10px;
}

.log-items-container::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}

.log-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #0a0a0a;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #262626;
    animation: slideInRight 0.5s ease-out;
    transition: all 0.3s ease;
}

.log-item:hover {
    border-color: #10b981;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.log-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.log-content {
    flex: 1;
    min-width: 0;
}

.log-message {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 500;
}

.log-time {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Energy Particles */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #10b981, transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: particle-flow 4s ease-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

@keyframes particle-flow {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1.5);
    }
}

/* Engine Responsive */
@media (max-width: 1400px) {
    .engine-activity-container {
        flex-direction: column;
    }

    .activity-section {
        flex: 1;
        width: 100%;
    }

    .activity-log {
        height: 500px;
        position: static;
    }
}

@media (max-width: 992px) {
    .status-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .engine-container {
        min-height: 500px;
        padding: 30px 20px;
    }

    .central-node {
        width: 180px;
        height: 180px;
    }

    .node-core {
        font-size: 4.5rem;
    }

    .protocol-node {
        width: 90px;
        height: 90px;
    }

    .protocol-icon {
        font-size: 2rem;
    }

    .protocol-name {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    body.page-engine .page-title {
        font-size: 2rem;
    }

    .status-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .engine-container {
        min-height: 450px;
        padding: 20px;
    }

    .central-node {
        width: 150px;
        height: 150px;
    }

    .node-core {
        font-size: 3.5rem;
    }

    .protocol-node {
        width: 75px;
        height: 75px;
    }

    .protocol-icon {
        font-size: 1.6rem;
    }

    .protocol-name {
        font-size: 0.6rem;
    }

    .activity-log {
        padding: 20px;
        height: 450px;
    }

    .log-title {
        font-size: 1.1rem;
    }

    .log-item {
        padding: 15px;
    }

    .log-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .status-grid {
        grid-template-columns: 1fr;
    }

    .engine-container {
        min-height: 400px;
    }

    .central-node {
        width: 130px;
        height: 130px;
    }

    .node-core {
        font-size: 3rem;
    }

    .protocol-node {
        width: 65px;
        height: 65px;
    }

    .protocol-icon {
        font-size: 1.4rem;
    }

    .protocol-name {
        font-size: 0.55rem;
    }
}

/* ===========================
   18. Landing Page (digital-liquidity-engine)
   =========================== */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Landing Status Badge */
body.page-landing .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}

body.page-landing .status-indicator {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    animation: landing-pulse 2s infinite;
}

@keyframes landing-pulse {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.8);
    }
}

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

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

/* Main Heading */
.main-heading {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.main-heading .white-text {
    color: #ffffff;
    font-style: italic;
    display: block;
}

.main-heading .gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    display: block;
    position: relative;
}

/* Landing Description */
.description {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.button-group a {
    text-decoration: none;
}

@media (max-width: 768px) {
    .button-group a {
        width: 100%;
    }
}

/* Landing page button overrides */
body.page-landing .btn-primary-custom {
    background-color: #ffffff;
    color: #0a0a0a;
    border: none;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    width: auto;
    margin-top: 0;
}

body.page-landing .btn-primary-custom:hover {
    background-color: #e5e5e5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

body.page-landing .btn-primary-custom:active {
    transform: translateY(-1px);
}

body.page-landing .btn-secondary-custom {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #374151;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: auto;
    margin-top: 0;
}

body.page-landing .btn-secondary-custom:hover {
    border-color: #6b7280;
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

body.page-landing .btn-secondary-custom:active {
    transform: translateY(-1px);
}

/* Partners Section */
.partners-section {
    margin-top: 80px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.partners-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    font-weight: 500;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    flex-wrap: wrap;
}

.partner-logo {
    color: #4b5563;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    color: #6b7280;
    transform: scale(1.05);
}

/* Footer */
.footer-text {
    position: fixed;
    bottom: 25px;
    left: 25px;
    font-size: 0.7rem;
    color: #374151;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
}

.footer-right {
    position: fixed;
    bottom: 25px;
    right: 25px;
    font-size: 0.7rem;
    color: #374151;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
}

/* Background Glow */
.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(16, 185, 129, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

/* Landing Responsive */
@media (max-width: 768px) {
    body.page-landing {
        justify-content: flex-start;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 40px 0 20px;
    }

    .hero-section {
        padding: 40px 24px 50px;
        max-width: 100%;
        width: 100%;
    }

    body.page-landing .status-badge {
        font-size: 11px;
        padding: 8px 18px;
        letter-spacing: 1.5px;
        margin-bottom: 35px;
    }

    body.page-landing .status-indicator {
        width: 8px;
        height: 8px;
    }

    .main-heading {
        font-size: clamp(2rem, 9vw, 3.2rem);
        margin-bottom: 25px;
    }

    .description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 40px;
        padding: 0 5px;
    }

    .button-group {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 60px;
        padding: 0 10px;
    }

    body.page-landing .btn-primary-custom,
    body.page-landing .btn-secondary-custom {
        width: 100%;
        padding: 16px 30px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .partners-section {
        margin-top: 40px;
    }

    .partners-label {
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .partners-logos {
        gap: 25px 35px;
    }

    .partner-logo {
        font-size: 0.9rem;
    }

    .footer-text,
    .footer-right {
        position: static;
        text-align: center;
        width: 100%;
        margin: 8px auto;
        font-size: 0.65rem;
    }

    .bg-glow {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 20px 16px 30px;
    }

    body.page-landing .status-badge {
        font-size: 9px;
        padding: 7px 14px;
        letter-spacing: 1px;
        margin-bottom: 24px;
    }

    .main-heading {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 16px;
    }

    .description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .button-group {
        gap: 10px;
        margin-bottom: 40px;
        padding: 0;
    }

    body.page-landing .btn-primary-custom,
    body.page-landing .btn-secondary-custom {
        padding: 14px 24px;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }

    .partners-section {
        margin-top: 30px;
    }

    .partners-logos {
        gap: 18px 28px;
    }

    .partner-logo {
        font-size: 0.8rem;
    }

    .bg-glow {
        width: 300px;
        height: 300px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-section {
        padding: 16px 12px 24px;
    }

    body.page-landing .status-badge {
        font-size: 8px;
        padding: 6px 12px;
    }

    .main-heading {
        font-size: 1.6rem;
    }

    .description {
        font-size: 0.85rem;
    }

    body.page-landing .btn-primary-custom,
    body.page-landing .btn-secondary-custom {
        padding: 13px 20px;
        font-size: 0.8rem;
    }

    .partners-logos {
        gap: 14px 22px;
    }

    .partner-logo {
        font-size: 0.75rem;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    body.page-landing {
        align-items: flex-start;
    }

    .hero-section {
        padding: 20px 20px;
    }

    body.page-landing .status-badge {
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .button-group {
        flex-direction: row;
        margin-bottom: 30px;
    }

    body.page-landing .btn-primary-custom,
    body.page-landing .btn-secondary-custom {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .partners-section {
        margin-top: 25px;
    }
}

/* ===========================
   19. Loading Page
   =========================== */

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

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(16, 185, 129, 0.1) 0%,
        transparent 70%
    );
    animation: loading-float 6s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.bg-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}
.bg-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes loading-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

/* Loading Container */
.loading-container {
    text-align: center;
    z-index: 10;
    max-width: 600px;
    padding: 40px 20px;
}

/* Loading Status Badge */
body.page-loading .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
    animation: loading-pulse-badge 2s ease-in-out infinite;
}

body.page-loading .status-indicator {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    animation: loading-blink 1.5s ease-in-out infinite;
}

@keyframes loading-blink {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
    }
}

@keyframes loading-pulse-badge {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Loading Spinner */
.spinner-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 50px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.spinner-ring:nth-child(1) {
    border-top-color: #10b981;
    border-right-color: #10b981;
    animation: spin 2s linear infinite;
}

.spinner-ring:nth-child(2) {
    border-bottom-color: #06b6d4;
    border-left-color: #06b6d4;
    animation: spin 3s linear infinite reverse;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.spinner-ring:nth-child(3) {
    border-top-color: #3b82f6;
    border-right-color: #3b82f6;
    animation: spin 4s linear infinite;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

.spinner-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

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

@keyframes pulse-icon {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.8);
    }
}

/* Loading Text */
.loading-title {
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease-out;
}

.loading-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

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

/* Loading Progress Bar */
body.page-loading .progress-container {
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

body.page-loading .progress-bar-custom {
    width: 100%;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

body.page-loading .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #06b6d4, #3b82f6);
    border-radius: 50px;
    width: 0%;
    animation: fillProgress 5s ease-in-out forwards;
    position: relative;
}

body.page-loading .progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

/* Loading Steps */
.loading-steps {
    margin-top: 40px;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.step-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.3;
    transition: all 0.5s ease;
    font-size: 0.95rem;
    color: #9ca3af;
}

.step-item.active {
    opacity: 1;
    color: #10b981;
}

.step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}

.step-item.active .step-icon {
    border-color: #10b981;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.step-item.completed .step-icon {
    border-color: #10b981;
    background: #10b981;
    color: #ffffff;
}

/* Loading Responsive */
@media (max-width: 576px) {
    .loading-title {
        font-size: 1.8rem;
    }

    .loading-subtitle {
        font-size: 1rem;
    }

    .spinner-container {
        width: 150px;
        height: 150px;
    }

    .spinner-center {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .step-item {
        font-size: 0.85rem;
    }
}

/* ===========================
   20. Login Page
   =========================== */
.login-container {
    max-width: 480px;
    width: 100%;
}

body.page-login .logo-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
}

body.page-login .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

body.page-login .status-indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.logo-title {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.login-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 45px 40px;
    border: 1px solid #262626;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 35px;
}

/* Login button variant */
body.page-login .btn-primary-custom {
    padding: 14px;
    margin-top: 25px;
}

/* Login Options Row */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #10b981;
    cursor: pointer;
}

.remember-me label {
    color: #9ca3af;
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 0;
}

.forgot-password {
    text-align: right;
}

.forgot-password a {
    color: #10b981;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #06b6d4;
}

/* Back to Login Link */
.back-to-login {
    text-align: center;
    margin-top: 25px;
}

.back-to-login a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.back-to-login a:hover {
    color: #10b981;
}

/* Alert Success */
.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Alert Error */
.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Input Validation Error */
.input-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 6px;
    display: block;
}

.form-control.is-invalid {
    border-color: #ef4444 !important;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #6b7280;
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #262626;
}

.divider span {
    padding: 0 15px;
}

.register-link {
    text-align: center;
    margin-top: 25px;
    color: #9ca3af;
    font-size: 0.95rem;
}

.register-link a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #06b6d4;
}

/* Login Responsive */
@media (max-width: 576px) {
    .login-card {
        padding: 35px 25px;
    }

    .logo-title {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 1rem;
    }

    .form-title {
        font-size: 1.5rem;
    }
}

/* ===========================
   21. Registration Page
   =========================== */
.registration-container {
    max-width: 700px;
    margin: 0 auto;
}

body.page-registration .logo-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
}

body.page-registration .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

body.page-registration .status-indicator {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.registration-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 45px 40px;
    border: 1px solid #262626;
}

/* Registration button variant */
body.page-registration .btn-primary-custom {
    padding: 14px;
    margin-top: 25px;
}

/* Slots Section */
.slots-section {
    margin-top: 25px;
    display: none;
}

.slots-section.active {
    display: block;
}

.slots-label {
    font-size: 0.85rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.slot-card {
    background: linear-gradient(145deg, #0a0a0a, #050505);
    border: 2px solid #262626;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slot-card.available:hover {
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

.slot-card.selected {
    border-color: #10b981;
    background: linear-gradient(145deg, #0d3d2f, #0a2a20);
}

.slot-card.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-number {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.slot-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.slot-status.available {
    color: #10b981;
}

.slot-status.unavailable {
    color: #6b7280;
}

.slot-card.selected::after {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 12px;
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Verification Code */
.verification-box {
    background: linear-gradient(145deg, #0a0a0a, #050505);
    border: 2px solid #262626;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
}

.verification-label {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.verification-code {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: #10b981;
    font-family: "Courier New", monospace;
    user-select: none;
}

.login-link {
    text-align: center;
    margin-top: 25px;
    color: #9ca3af;
    font-size: 0.95rem;
}

.login-link a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #06b6d4;
}

/* Alert & Toast Components */
.alert-container {
    margin-bottom: 20px;
}

.alert-box {
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(145deg, #0d3d2f, #0a2a20);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-icon {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Resend Section */
.resend-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #262626;
}

.resend-text {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.btn-resend {
    background: transparent;
    border: 1px solid #374151;
    color: #10b981;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-resend:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Registration Responsive */
@media (max-width: 576px) {
    .registration-card {
        padding: 35px 25px;
    }

    body.page-registration .logo-title {
        font-size: 1.5rem;
    }

    body.page-registration .logo-subtitle {
        font-size: 1rem;
    }

    body.page-registration .form-title {
        font-size: 1.5rem;
    }

    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .verification-code {
        font-size: 1.5rem;
        letter-spacing: 5px;
    }
}

/* ===========================
   22. Documentation Page
   =========================== */
.documentation-container {
    display: flex;
    min-height: 100vh;
}

/* Documentation Sidebar (250px) */
.documentation-container .sidebar {
    width: 250px;
    padding: 40px 20px;
}

/* Back to Home Link */
.back-home-link {
    display: block;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.back-home-link:hover {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.08);
}

.sidebar-title {
    font-size: 0.7rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Documentation nav overrides */
.documentation-container .nav-menu {
    list-style: none;
}

.documentation-container .nav-item {
    margin-bottom: 8px;
}

.documentation-container .nav-link {
    display: block;
    padding: 12px 20px;
    cursor: pointer;
}

/* Documentation Main Content */
.documentation-container .main-content {
    margin-left: 250px;
    padding: 60px 80px;
}

.documentation-container .page-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.documentation-container .page-description {
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
}

.documentation-container .page-description strong {
    color: #ffffff;
    font-weight: 600;
}

/* Feature Cards */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #262626;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(145deg, #0f2d3d, #0a1e2a);
    border-radius: 20px;
    padding: 30px 35px;
    border: 1px solid #1e4a5f;
    margin-top: 40px;
}

.quote-box p {
    font-size: 1.05rem;
    color: #60a5fa;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* Info Grid (Doc page) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Documentation info-box variant */
.documentation-container .info-box {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #262626;
    margin-top: 0;
}

.documentation-container .info-box h3 {
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.documentation-container .info-box p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.7;
    font-style: italic;
}

/* Security Cards */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.security-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 40px 35px;
    border: 1px solid #262626;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: #374151;
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.security-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.security-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.security-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ffffff;
}

.security-card p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.7;
    font-style: italic;
}

/* Settlement Calendar */
.calendar-container {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #262626;
    margin-bottom: 40px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-title {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calendar-status {
    font-size: 0.85rem;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.calendar-day {
    text-align: center;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
}

.calendar-day-name {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-day.active {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
}

/* Documentation Warning Box */
.documentation-container .warning-box {
    background: linear-gradient(145deg, #2d1f0a, #1f1507);
    border-radius: 20px;
    padding: 30px 35px;
    border: 1px solid #4a3310;
    margin-top: 40px;
    margin-bottom: 0;
}

.documentation-container .warning-title {
    font-size: 0.9rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

.documentation-container .warning-box p {
    font-size: 0.95rem;
    color: #9ca3af;
    font-style: italic;
    line-height: 1.7;
}

/* Aggregation Tiers */
.tier-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tier-item {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 20px;
    padding: 30px 35px;
    border: 1px solid #262626;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.tier-item::after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

.tier-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 8px;
}

.tier-content p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

/* Reward Tiers Styles */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.tier-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid #262626;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: #374151;
}

.tier-card.active {
    background: linear-gradient(145deg, #0d3d2f, #0a2a20);
    border: 2px solid #10b981;
}

.tier-card.active::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.tier-title {
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}

.tier-title.green {
    color: #10b981;
}

.tier-range {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.tier-section {
    margin-bottom: 25px;
}

.tier-section-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tier-section-value {
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
}

.tier-section-value.green {
    color: #10b981;
}

.tier-status {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 30px;
}

.tier-description {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 15px;
    line-height: 1.5;
}

/* Protocol Constraints */
.constraints-section {
    margin-top: 40px;
}

.constraints-header {
    background: linear-gradient(145deg, #2d0a0a, #1f0707);
    border-radius: 20px;
    padding: 30px 35px;
    border: 1px solid #4a1010;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.constraints-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.constraints-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 5px;
    color: #ffffff;
}

.constraints-subtitle {
    font-size: 0.85rem;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.constraints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.constraint-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid #262626;
}

.constraint-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.constraint-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.constraint-rule {
    font-size: 0.7rem;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.constraint-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.constraint-value .days {
    font-size: 0.85rem;
    color: #6b7280;
}

.constraint-description {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.7;
    font-style: italic;
}

/* Info Card for Reward Tiers */
.info-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #262626;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
}

.info-content p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.8;
}

/* Documentation Mobile Toggle */
.documentation-container .mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Documentation Responsive */
@media (max-width: 992px) {
    .documentation-container .main-content {
        margin-left: 0;
        padding: 80px 40px 40px;
    }

    .documentation-container .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        z-index: 200;
    }

    .documentation-container .sidebar.mobile-open {
        transform: translateX(0);
    }

    .documentation-container .overlay {
        z-index: 150;
    }

    .documentation-container .mobile-menu-toggle {
        display: block;
    }

    .documentation-container .page-title {
        font-size: 2.5rem;
    }

    .info-grid,
    .security-grid,
    .tiers-grid,
    .constraints-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .documentation-container .main-content {
        padding: 80px 25px 40px;
    }

    .documentation-container .page-title {
        font-size: 2rem;
    }

    .documentation-container .page-description {
        font-size: 1rem;
    }

    .feature-card {
        flex-direction: column;
    }

    .calendar-week {
        grid-template-columns: repeat(4, 1fr);
    }

    .tier-item {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 30px;
    }

    .tier-item::after {
        right: 20px;
        top: 30px;
    }

    .security-card,
    .tier-card,
    .constraint-card {
        padding: 30px 25px;
    }

    .info-card,
    .constraints-header {
        flex-direction: column;
        padding: 25px;
    }

    .tier-title {
        font-size: 1.5rem;
    }

    .tier-section-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .calendar-week {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .security-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===========================
   23. Dashboard Page
   =========================== */
.dashboard-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 30px;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #1a1a1a;
}

.dashboard-header-left {
    flex: 1;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.dashboard-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.dashboard-subtitle strong {
    color: #10b981;
    font-weight: 700;
}

.dashboard-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Dashboard Action Buttons */
.btn-dashboard-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-dashboard-action:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-1px);
}

/* Logout Button */
.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    color: #ef4444;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1rem;
}

/* Welcome Card */
.dashboard-welcome-card {
    background: linear-gradient(145deg, #0d3d2f, #0a2a20);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 24px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.dashboard-welcome-card.admin-card {
    background: linear-gradient(145deg, #0f2d3d, #0a1e2a);
    border-color: rgba(59, 130, 246, 0.25);
}

.welcome-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.welcome-content {
    flex: 1;
}

.welcome-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.welcome-content p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

.welcome-status {
    flex-shrink: 0;
}

.status-badge-active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-badge-admin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
    box-shadow: 0 0 10px currentColor;
}

/* Stats Grid */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 1px solid #262626;
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #374151;
    transform: translateY(-2px);
}

.stat-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.stat-value {
    font-size: 2.9rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-value.text-green {
    color: #10b981;
}

.stat-value.text-blue {
    color: #60a5fa;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 25px 20px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .dashboard-header-right {
        width: 100%;
    }

    .dashboard-welcome-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .welcome-content h2 {
        font-size: 1.2rem;
    }

    .dashboard-title {
        font-size: 1.5rem;
    }

    .dashboard-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dashboard-header-right {
        flex-direction: column;
    }

    .btn-dashboard-action,
    .btn-logout {
        width: 100%;
        justify-content: center;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 22px 20px;
    }

    .stat-value {
        font-size: 1.3rem;
    }
}

/* Login Responsive additions */
@media (max-width: 576px) {
    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .forgot-password {
        text-align: left;
    }
}

/* ===========================
   Dashboard Marquee Notification
   =========================== */
.notification-marquee {
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.1),
        rgba(59, 130, 246, 0.05)
    );
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

.marquee-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    margin-right: 14px;
    z-index: 1;
}

.marquee-track {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-text {
    color: #e5e7eb;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marqueeSlide 30s linear infinite;
}

@keyframes marqueeSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.notification-marquee:hover .marquee-text {
    animation-play-state: paused;
}

.notification-marquee:hover .marquee-track {
    cursor: default;
}

/* ===========================
   Profile Completion Modal
   =========================== */
/* Disable dashboard interaction when modal is open */
body.modal-open .dashboard-header,
body.modal-open .stats-section,
body.modal-open .efficiency-card,
body.modal-open .settlements-header,
body.modal-open .settlement-item {
    pointer-events: none;
    filter: blur(3px);
    user-select: none;
}

/* Modal Overlay */
.profile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* Modal Container */
.profile-modal {
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    padding: 32px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(16, 185, 129, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

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

/* Modal Header */
.profile-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.profile-modal-header .modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.2),
        rgba(16, 185, 129, 0.05)
    );
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #10b981;
}

.profile-modal-header .modal-icon.wallet-icon {
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.2),
        rgba(59, 130, 246, 0.05)
    );
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.profile-modal-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-modal-header p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Form Styles */
.profile-modal-form .form-group {
    margin-bottom: 16px;
}

.profile-modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.profile-modal-form label {
    display: block;
    color: #d1d5db;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.profile-modal-form label .required {
    color: #ef4444;
}

.profile-modal-form input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.profile-modal-form input:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.profile-modal-form input::placeholder {
    color: #6b7280;
}

/* Submit Button */
.btn-complete-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-complete-profile:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

/* Wallet Modal Styles */
.wallet-modal-content {
    text-align: center;
}

.wallet-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.wallet-info-box .info-icon {
    flex-shrink: 0;
    color: #3b82f6;
    margin-top: 2px;
}

.wallet-info-box p {
    color: #9ca3af;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.btn-skip-wallet {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.btn-skip-wallet:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #9ca3af;
}

/* Modal Responsive */
@media (max-width: 480px) {
    .profile-modal {
        padding: 24px 20px;
    }
    .profile-modal-form .form-row {
        grid-template-columns: 1fr;
    }
}
