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

:root {
    --primary-color: #00ff88;
    --primary-dark: #00cc6f;
    --primary-light: #33ffa3;
    --secondary-color: #00cc6f;
    --accent-color: #00ff88;
    --bg-dark: #000000;
    --bg-darker: #000000;
    --bg-card: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: #1a1a1a;
    --success-color: #00ff88;
    --green-bright: #00ff88;
    --green-medium: #00cc6f;
    --green-dark: #00a85c;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
    --gradient-2: linear-gradient(135deg, #00ff88 0%, #00a85c 100%);
    --gradient-3: linear-gradient(135deg, #33ffa3 0%, #00ff88 100%);
    --gradient-green: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
    --gradient-green-light: linear-gradient(135deg, #33ffa3 0%, #00ff88 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    transition: background-color 0.3s ease;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--green-bright);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--green-bright);
    outline-offset: 2px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sidebar */
.sidebar {
    width: 280px;
    min-width: 280px;
    background: rgba(0, 0, 0, 0.95);
    border-right: 1px solid var(--border-color);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-logo svg {
    color: var(--green-bright);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.sidebar-nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-nav-item:hover {
    color: var(--green-bright);
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
}

.sidebar-stats {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.sidebar-stats-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.sidebar-stats-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-bright);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.sidebar-stats-period {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.sidebar-stats-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-darker);
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.sidebar-stats-bar-fill {
    width: 75%;
    height: 100%;
    background: var(--green-bright);
    border-radius: 9999px;
}

.sidebar-stats-users {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.sidebar-social {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: rgba(10, 10, 10, 0.5);
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--green-bright);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0.875rem 0;
    box-shadow: 0 1px 0 rgba(0, 255, 136, 0.05);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--green-bright);
    color: var(--green-bright);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-search {
    flex: 1;
    max-width: 600px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
}

.search-input-wrapper:focus-within {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
    background: #1f1f1f;
}

.search-icon {
    color: #71717a;
    margin-right: 0.75rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    min-height: 44px;
}

.search-input::placeholder {
    color: #71717a;
}

.search-shortcuts {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.shortcut-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.375rem;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    color: #a1a1aa;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::before,
.btn-secondary:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    color: #000000;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.35);
    opacity: 0.95;
}

.btn-secondary {
    background: var(--gradient-1);
    color: #000000;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.35);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--green-bright);
    background: rgba(0, 255, 136, 0.08);
    color: var(--green-bright);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 0.75rem;
    min-height: 52px;
    touch-action: manipulation;
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 9999px;
    color: var(--green-bright);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    animation: fadeIn 0.6s ease-out;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
}

.highlight {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
}

.stat-card:focus-within {
    border-color: rgba(0, 255, 136, 0.5);
    outline: 2px solid rgba(0, 255, 136, 0.3);
    outline-offset: 2px;
}

.stat-value {
    font-size: 2.75rem;
    font-weight: 900;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.users-count {
    color: var(--green-bright);
    font-weight: 700;
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 8rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.03);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.step-card:focus-within {
    border-color: rgba(0, 255, 136, 0.5);
    outline: 2px solid rgba(0, 255, 136, 0.3);
    outline-offset: 2px;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    opacity: 0.2;
    line-height: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features */
.features {
    padding: 8rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.feature-card .feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.feature-card:focus-within {
    border-color: rgba(0, 255, 136, 0.5);
    outline: 2px solid rgba(0, 255, 136, 0.3);
    outline-offset: 2px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 4rem 0 3rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-logo svg {
    color: var(--green-bright);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

.modal.active .modal-content {
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
    background: #1A1E24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2rem;
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
    color: var(--green-bright);
}

.modal-close:active {
    transform: rotate(90deg) scale(0.9);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    position: relative;
    min-height: 2.5rem;
    padding-top: 0.25rem;
}

.modal-header-left {
    display: flex;
    align-items: center;
    width: 2rem;
}

.modal-help {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.modal-help:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.modal-title-simple {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: none;
    margin: 0;
    letter-spacing: 0.01em;
    flex: 1;
    text-align: center;
}

.modal-title-simple:has-text("Demo") {
    color: var(--green-bright);
}

/* Demo Mode Indicator */
.demo-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: var(--bg-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.modal-back {
    position: absolute;
    left: 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    font-weight: 600;
}

.modal-back:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--green-bright);
    transform: translateX(-2px);
}

.modal-back:active {
    transform: translateX(-2px) scale(0.95);
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.modal-logo svg {
    color: var(--green-bright);
}

.modal-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.modal-body {
    min-height: 200px;
    padding: 0;
}

.wallet-select-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.wallet-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.75rem;
    padding: 0.75rem 0;
}

.pill-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.pill-icon svg {
    filter: drop-shadow(0 0 8px rgba(98, 230, 148, 0.3));
}

.login-email-socials {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.625rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    width: 100%;
    transition: all 0.3s ease;
    min-height: 60px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.login-email-socials:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
}

.login-email-socials:active {
    transform: scale(0.98);
}

.login-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    stroke-width: 2;
}

.login-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.login-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9375rem;
    line-height: 1.2;
    text-transform: none;
}

.login-subtitle {
    font-weight: 400;
    color: #a1a1aa;
    font-size: 0.8125rem;
    line-height: 1.2;
}

.login-arrow {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.wallet-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #a1a1aa;
    font-size: 0.875rem;
    position: relative;
    width: 100%;
}

.wallet-separator::before,
.wallet-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-separator span {
    padding: 0 1rem;
    color: #a1a1aa;
    font-weight: 400;
    background: #1A1E24;
}

.wallet-option {
    background: #2C3036;
    border: none;
    border-radius: 0.625rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.wallet-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--green-bright);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.wallet-option:hover {
    background: #353A42;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wallet-option:hover::before {
    transform: scaleY(1);
}

.wallet-option:active {
    transform: translateX(2px);
}

.wallet-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phantom-icon {
    background: #9F7AEA;
    border-radius: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

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

.solflare-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.backpack-icon {
    background: linear-gradient(135deg, #1E1E1E 0%, #000000 100%);
    border: 1px solid var(--border-color);
}

.ledger-icon-special {
    background: transparent;
    border: 2px dashed var(--border-color);
    position: relative;
}

.ledger-icon-special::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border: 2px dashed var(--text-secondary);
    border-radius: 4px;
}

.coinbase-icon {
    background: linear-gradient(135deg, #0052FF 0%, #0038CC 100%);
}

.wallet-icon-svg {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-icon-svg svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.ledger-icon-correct {
    background: transparent;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ledger-icon-correct svg {
    width: 24px;
    height: 24px;
}

.solflare-icon-correct {
    background: #000000;
    border: none;
    border-radius: 0.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solflare-icon-correct svg {
    width: 20px;
    height: 20px;
}

.jupiter-icon {
    background: transparent;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jupiter-icon svg {
    width: 24px;
    height: 24px;
}

.metamask-icon {
    background: transparent;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metamask-icon svg {
    width: 24px;
    height: 24px;
}

.wallet-option-title {
    font-weight: 500;
    color: #ffffff;
    flex: 1;
    font-size: 0.9375rem;
    text-transform: none;
}

.wallet-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #2C3036;
    border: none;
    border-radius: 0.625rem;
    padding: 0.875rem 1rem;
    margin-top: 1rem;
    width: 100%;
}

.wallet-search svg {
    width: 16px;
    height: 16px;
    color: #71717a;
    flex-shrink: 0;
}

.wallet-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.9375rem;
    outline: none;
}

.wallet-search-input::placeholder {
    color: #71717a;
}

.wallet-search-count {
    color: #71717a;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.wallet-status {
    text-align: center;
    padding: 2rem;
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.status-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.status-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.scanning-animation {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--green-bright);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.rug-pull-result {
    text-align: center;
    padding: 2rem;
}

.rug-pull-count {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cashback-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-bright);
    margin: 1rem 0;
}

.cashback-usd {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-bright);
    margin-bottom: 1rem;
}

.success-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* QR Code Styles */
.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

.qr-code-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.qr-code-placeholder {
    width: 280px;
    height: 280px;
    position: relative;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 0.5rem;
}

.qr-code-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(25, 1fr);
    grid-template-rows: repeat(25, 1fr);
    gap: 0;
}

.qr-module {
    width: 100%;
    height: 100%;
}

.qr-black {
    background: #000;
}

.qr-white {
    background: #fff;
}

.qr-instruction {
    color: var(--text-primary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-copy-link {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.btn-copy-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--green-bright);
    color: var(--green-bright);
}

.wallet-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.wallet-footer-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.btn-get-wallet {
    background: #0052FF;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-wallet:hover {
    background: #0038CC;
    transform: translateX(2px);
}

/* Ledger Styles */
.ledger-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.ledger-icon-wrapper {
    margin-bottom: 2rem;
}

.ledger-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    position: relative;
}

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

.ledger-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.ledger-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    text-align: center;
}

.btn-try-again {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.btn-try-again:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--green-bright);
    color: var(--green-bright);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 200;
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .main-content {
        margin-left: 0;
    }

    .header {
        left: 0;
        padding: 0.75rem 0;
    }
    
    .header-content {
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        width: 100%;
        margin-top: 0.75rem;
    }
    
    .modal-content {
        max-width: 90%;
        margin: 1rem;
        padding: 1.5rem;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header {
        padding: 0.625rem 0;
    }

    .header-content {
        gap: 0.75rem;
    }

    .header-search {
        max-width: 100%;
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .search-shortcuts {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
        flex: 1;
        justify-content: flex-end;
    }

    .btn-primary, .btn-secondary {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        min-height: 44px;
    }

    .sidebar {
        width: 100%;
        max-width: 320px;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9375rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .modal {
        padding: 0.5rem;
    }
    
    .wallet-status {
        padding: 1.5rem 1rem;
    }
    
    .success-message {
        padding: 1.5rem 1rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .success-amount {
        font-size: 2rem;
    }
    
    .cashback-amount {
        font-size: 2rem;
    }

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

    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        min-height: 52px;
        font-size: 1rem;
    }

    .step-card,
    .feature-card {
        padding: 1.5rem;
    }

    .modal-content {
        max-width: 95%;
        margin: 0.5rem;
        padding: 1.25rem;
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-header {
        padding: 1rem 0;
    }

    .modal-title-simple {
        font-size: 1.125rem;
    }

    .wallet-option {
        padding: 1rem;
        min-height: 60px;
    }

    .wallet-option-title {
        font-size: 1rem;
    }

    .private-key-input {
        font-size: 16px;
        min-height: 120px;
    }

    .private-key-container {
        padding: 1rem 0;
    }

    .qr-code-wrapper {
        padding: 1rem;
    }

    .qr-code-grid {
        width: 200px;
        height: 200px;
    }

    .container {
        padding: 0 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .modal-content {
        padding: 1rem;
        border-radius: 0.75rem;
    }

    .wallet-select-container {
        gap: 0.75rem;
    }

    .wallet-option {
        padding: 0.875rem;
    }

    .search-input {
        font-size: 16px;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .header-actions .btn-primary,
    .header-actions .btn-secondary {
        width: 100%;
    }

    .stats-grid {
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .step-card,
    .feature-card {
        padding: 1.25rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 0.875rem;
    }

    .btn-large {
        font-size: 0.9375rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .stats-grid {
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
}

/* Additional Mobile Responsive Improvements - Consolidated into existing 768px query */

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .step-card h3,
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .step-description,
    .feature-description {
        font-size: 0.875rem;
    }
    
    .modal-title-simple {
        font-size: 1rem;
    }
    
    .status-title {
        font-size: 1.125rem;
    }
    
    .status-description {
        font-size: 0.875rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .btn-large {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }
    
    .wallet-option {
        min-height: 64px;
    }
    
    .modal-close {
        width: 44px;
        height: 44px;
    }
    
    input,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .modal-content {
        max-height: 90vh;
    }
    }
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--green-bright);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.btn-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-primary);
    font-size: 0.75rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 136, 0.3);
}

/* Selection color */
::selection {
    background: rgba(0, 255, 136, 0.3);
    color: var(--text-primary);
}

/* Improved modal animations */
.modal-content {
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Pulse animation for important elements */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Improved hover effects */
.wallet-option,
.step-card,
.feature-card,
.stat-card {
    cursor: pointer;
}

.wallet-option:active,
.step-card:active,
.feature-card:active {
    transform: scale(0.98);
}

/* Better focus states */
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--green-bright);
    outline-offset: 2px;
}

/* Improved button states */
button:not(:disabled):hover {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.loading-overlay-content {
    text-align: center;
    color: var(--text-primary);
}

.loading-overlay-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--green-bright);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* Wallet Connection States */
.btn-primary.connected,
.btn-secondary.connected {
    background: var(--gradient-green);
    color: var(--bg-dark);
    font-weight: 600;
    position: relative;
    padding-right: 2.5rem;
}

.btn-primary.connected::after,
.btn-secondary.connected::after {
    content: '✓';
    position: absolute;
    right: 0.75rem;
    font-size: 1rem;
}

.btn-primary.connected:hover,
.btn-secondary.connected:hover {
    background: var(--gradient-green-light);
    transform: translateY(-1px);
}

/* Wallet Error Styles */
.wallet-error {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.wallet-error-content {
    background: #1A1E24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}

.wallet-error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.wallet-error-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.wallet-error-message {
    color: #a1a1aa;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.wallet-error-content .btn-primary {
    width: 100%;
}

/* Private Key Input */
.private-key-container {
    padding: 1rem 0;
}

.private-key-description {
    margin-bottom: 1.5rem;
    text-align: center;
}

.private-key-description p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.private-key-input-wrapper {
    margin-bottom: 1rem;
}

.private-key-input {
    width: 100%;
    background: #2C3036;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.625rem;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Courier New', monospace;
    resize: vertical;
    min-height: 120px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    touch-action: manipulation;
}

.private-key-input:focus {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
    background: #353A42;
}

.private-key-input::placeholder {
    color: #71717a;
    font-family: 'Inter', sans-serif;
}

.private-key-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 0.5rem;
    color: #FFC107;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.private-key-warning svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.private-key-warning span {
    line-height: 1.4;
}

/* Wallet Option Disabled State */
.wallet-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.wallet-option.installed {
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.wallet-option.installed:hover {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.05);
}

/* Loading State */
.wallet-connecting {
    position: relative;
    pointer-events: none;
}

.wallet-connecting::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--green-bright);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
