/**
 * Trabajo24 Validator - Premium Frontend Styles
 *
 * Luxury design with glass-morphism, smooth animations, and professional aesthetics
 * Design inspiration: Stripe, Coinbase Pro, Apple
 *
 * @package Trabajo24_Validator
 * @since 1.0.0
 */

/* ==========================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================== */

:root {
    /* Primary Colors - Orange Gradient (Trabajo24 Brand) */
    --t24-primary-start: #ff6b35;
    --t24-primary-end: #ff8c42;
    --t24-primary-light: #ffad5a;
    --t24-primary-dark: #e85a20;

    /* Semantic Colors */
    --t24-success: #10b981;
    --t24-success-light: #34d399;
    --t24-error: #ef4444;
    --t24-warning: #f59e0b;
    --t24-info: #3b82f6;

    /* Neutrals - Light Theme */
    --t24-bg-primary: #ffffff;
    --t24-bg-secondary: #f8fafc;
    --t24-bg-tertiary: #f1f5f9;
    --t24-text-primary: #0f172a;
    --t24-text-secondary: #475569;
    --t24-text-tertiary: #94a3b8;
    --t24-border: #e2e8f0;
    --t24-border-hover: #cbd5e1;

    /* Glass-morphism */
    --t24-glass-bg: rgba(255, 255, 255, 0.7);
    --t24-glass-border: rgba(255, 255, 255, 0.18);
    --t24-glass-shadow: rgba(0, 0, 0, 0.1);

    /* Shadows */
    --t24-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --t24-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --t24-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --t24-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --t24-shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);

    /* Spacing Scale */
    --t24-space-xs: 0.25rem;
    --t24-space-sm: 0.5rem;
    --t24-space-md: 1rem;
    --t24-space-lg: 1.5rem;
    --t24-space-xl: 2rem;
    --t24-space-2xl: 3rem;
    --t24-space-3xl: 4rem;

    /* Border Radius */
    --t24-radius-sm: 0.375rem;
    --t24-radius-md: 0.5rem;
    --t24-radius-lg: 0.75rem;
    --t24-radius-xl: 1rem;
    --t24-radius-2xl: 1.5rem;
    --t24-radius-full: 9999px;

    /* Transitions */
    --t24-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --t24-transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --t24-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --t24-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --t24-font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, monospace;
}

/* Dark Theme */
[data-theme="dark"] {
    --t24-bg-primary: #000000;
    --t24-bg-secondary: #1a1a1a;
    --t24-bg-tertiary: #2a2a2a;
    --t24-text-primary: #ffffff;
    --t24-text-secondary: #e0e0e0;
    --t24-text-tertiary: #999999;
    --t24-border: #333333;
    --t24-border-hover: #555555;
    --t24-glass-bg: rgba(26, 26, 26, 0.7);
    --t24-glass-border: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */

.t24-frontend-dashboard {
    font-family: var(--t24-font-sans);
    color: var(--t24-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.t24-frontend-dashboard *,
.t24-frontend-dashboard *::before,
.t24-frontend-dashboard *::after {
    box-sizing: border-box;
}

/* ==========================================
   ANIMATED WAVE BACKGROUND (LIQUID EFFECT)
   ========================================== */

.t24-hero-background {
    position: relative;
    background: linear-gradient(135deg, var(--t24-primary-start) 0%, var(--t24-primary-end) 100%);
    overflow: hidden;
}

.t24-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        -45deg,
        rgba(255, 107, 53, 0.3),
        rgba(255, 140, 66, 0.3),
        rgba(255, 173, 90, 0.3),
        rgba(232, 90, 32, 0.3)
    );
    background-size: 400% 400%;
    animation: t24-wave-gradient 15s ease infinite;
    opacity: 0.8;
}

@keyframes t24-wave-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating particles effect */
.t24-hero-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: t24-float-particles 20s ease-in-out infinite;
}

@keyframes t24-float-particles {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* ==========================================
   GLASS-MORPHISM CARDS
   ========================================== */

.t24-glass-card {
    background: var(--t24-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--t24-glass-border);
    border-radius: var(--t24-radius-xl);
    box-shadow: var(--t24-shadow-xl);
    transition: all var(--t24-transition-base);
    position: relative;
    overflow: hidden;
}

.t24-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    opacity: 0;
    transition: opacity var(--t24-transition-base);
}

.t24-glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t24-shadow-xl), var(--t24-shadow-glow);
    border-color: rgba(255, 107, 53, 0.3);
}

.t24-glass-card:hover::before {
    opacity: 1;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.t24-hero {
    position: relative;
    padding: var(--t24-space-3xl) var(--t24-space-xl);
    text-align: center;
    color: white;
    overflow: hidden;
}

.t24-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.t24-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 var(--t24-space-lg);
    letter-spacing: -0.02em;
    animation: t24-fade-in-up 0.8s ease-out;
}

.t24-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin: 0 0 var(--t24-space-2xl);
    font-weight: 400;
    animation: t24-fade-in-up 0.8s ease-out 0.1s backwards;
}

@keyframes t24-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   WALLET CONNECT WIDGET
   ========================================== */

.t24-wallet-widget {
    background: white;
    border-radius: var(--t24-radius-xl);
    padding: var(--t24-space-xl);
    max-width: 400px;
    margin: 0 auto;
    box-shadow: var(--t24-shadow-xl);
    animation: t24-fade-in-up 0.8s ease-out 0.2s backwards;
}

.t24-connect-button {
    background: linear-gradient(135deg, var(--t24-primary-start), var(--t24-primary-end));
    color: white;
    border: none;
    border-radius: var(--t24-radius-lg);
    padding: var(--t24-space-md) var(--t24-space-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all var(--t24-transition-base);
    position: relative;
    overflow: hidden;
}

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

.t24-connect-button:hover::before {
    width: 300px;
    height: 300px;
}

.t24-connect-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.4);
}

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

.t24-wallet-address {
    display: flex;
    align-items: center;
    gap: var(--t24-space-md);
    padding: var(--t24-space-md);
    background: var(--t24-bg-secondary);
    border-radius: var(--t24-radius-md);
    font-family: var(--t24-font-mono);
    font-size: 0.875rem;
}

.t24-address-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.t24-copy-button {
    padding: var(--t24-space-sm);
    background: var(--t24-bg-primary);
    border: 1px solid var(--t24-border);
    border-radius: var(--t24-radius-sm);
    cursor: pointer;
    transition: all var(--t24-transition-fast);
}

.t24-copy-button:hover {
    background: var(--t24-primary-start);
    color: white;
    border-color: var(--t24-primary-start);
}

/* ==========================================
   STATS GRID WITH NUMBER COUNTER
   ========================================== */

.t24-stats-container {
    padding: var(--t24-space-3xl) var(--t24-space-xl);
    background: var(--t24-bg-secondary);
}

.t24-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--t24-space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.t24-stat-card {
    background: var(--t24-bg-primary);
    border: 1px solid var(--t24-border);
    border-radius: var(--t24-radius-xl);
    padding: var(--t24-space-xl);
    transition: all var(--t24-transition-base);
    position: relative;
    overflow: hidden;
}

.t24-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--t24-primary-start), var(--t24-primary-end));
    transition: height var(--t24-transition-base);
}

.t24-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--t24-shadow-lg);
    border-color: var(--t24-primary-start);
}

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

.t24-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--t24-radius-lg);
    background: linear-gradient(135deg, var(--t24-primary-start), var(--t24-primary-end));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--t24-space-lg);
    font-size: 1.75rem;
    color: white;
    transition: transform var(--t24-transition-base);
}

.t24-stat-card:hover .t24-stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.t24-stat-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--t24-text-tertiary);
    margin-bottom: var(--t24-space-sm);
}

.t24-stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--t24-text-primary);
    line-height: 1;
    margin-bottom: var(--t24-space-sm);
}

/* Number counter animation - will be animated via JS */
.t24-stat-number {
    display: inline-block;
}

.t24-stat-change {
    display: inline-flex;
    align-items: center;
    gap: var(--t24-space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    padding: var(--t24-space-xs) var(--t24-space-sm);
    border-radius: var(--t24-radius-sm);
}

.t24-stat-change.positive {
    color: var(--t24-success);
    background: rgba(16, 185, 129, 0.1);
}

.t24-stat-change.negative {
    color: var(--t24-error);
    background: rgba(239, 68, 68, 0.1);
}

/* ==========================================
   VALIDATOR NODES TABLE
   ========================================== */

.t24-nodes-section {
    padding: var(--t24-space-3xl) var(--t24-space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.t24-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--t24-space-2xl);
}

.t24-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--t24-text-primary);
    margin: 0;
}

.t24-nodes-table-wrapper {
    background: var(--t24-bg-primary);
    border: 1px solid var(--t24-border);
    border-radius: var(--t24-radius-xl);
    overflow: hidden;
}

.t24-nodes-table {
    width: 100%;
    border-collapse: collapse;
}

.t24-nodes-table thead {
    background: var(--t24-bg-secondary);
}

.t24-nodes-table th {
    padding: var(--t24-space-md) var(--t24-space-lg);
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--t24-text-tertiary);
    border-bottom: 1px solid var(--t24-border);
}

.t24-nodes-table td {
    padding: var(--t24-space-lg);
    border-bottom: 1px solid var(--t24-border);
    transition: background var(--t24-transition-fast);
}

.t24-nodes-table tbody tr {
    transition: all var(--t24-transition-fast);
    position: relative;
}

.t24-nodes-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--t24-primary-start), transparent);
    transition: width var(--t24-transition-fast);
}

.t24-nodes-table tbody tr:hover {
    background: var(--t24-bg-secondary);
}

.t24-nodes-table tbody tr:hover::before {
    width: 4px;
}

.t24-node-name {
    font-weight: 600;
    color: var(--t24-text-primary);
}

.t24-node-status {
    display: inline-flex;
    align-items: center;
    gap: var(--t24-space-sm);
    padding: var(--t24-space-xs) var(--t24-space-md);
    border-radius: var(--t24-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.t24-node-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--t24-success);
}

.t24-node-status.inactive {
    background: rgba(100, 116, 139, 0.1);
    color: var(--t24-text-tertiary);
}

.t24-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: t24-pulse-dot 2s ease-in-out infinite;
}

@keyframes t24-pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.t24-tier-badge {
    display: inline-block;
    padding: var(--t24-space-xs) var(--t24-space-md);
    border-radius: var(--t24-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.t24-tier-bronze {
    background: linear-gradient(135deg, #cd7f32, #a0652a);
    color: white;
}

.t24-tier-silver {
    background: linear-gradient(135deg, #c0c0c0, #909090);
    color: #333;
}

.t24-tier-gold {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #333;
}

.t24-tier-platinum {
    background: linear-gradient(135deg, #e5e4e2, #b8b8b8);
    color: #333;
}

/* ==========================================
   REWARDS SECTION
   ========================================== */

.t24-rewards-card {
    background: linear-gradient(135deg, var(--t24-primary-start), var(--t24-primary-end));
    color: white;
    border-radius: var(--t24-radius-xl);
    padding: var(--t24-space-2xl);
    position: relative;
    overflow: hidden;
    margin-top: var(--t24-space-2xl);
}

.t24-rewards-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: t24-rewards-glow 8s ease-in-out infinite;
}

@keyframes t24-rewards-glow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-10%, -10%) scale(1.1);
    }
}

.t24-rewards-content {
    position: relative;
    z-index: 1;
}

.t24-rewards-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--t24-space-md);
}

.t24-claim-button {
    background: white;
    color: var(--t24-primary-start);
    border: none;
    border-radius: var(--t24-radius-lg);
    padding: var(--t24-space-md) var(--t24-space-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t24-transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.t24-claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   LOADING STATES
   ========================================== */

.t24-loading {
    text-align: center;
    padding: var(--t24-space-3xl);
}

.t24-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--t24-border);
    border-top-color: var(--t24-primary-start);
    border-radius: 50%;
    animation: t24-spin 0.8s linear infinite;
    margin: 0 auto var(--t24-space-lg);
}

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

/* Skeleton loading */
.t24-skeleton {
    background: linear-gradient(
        90deg,
        var(--t24-bg-tertiary) 25%,
        var(--t24-bg-secondary) 50%,
        var(--t24-bg-tertiary) 75%
    );
    background-size: 200% 100%;
    animation: t24-skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--t24-radius-md);
}

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

.t24-skeleton-text {
    height: 1em;
    margin: var(--t24-space-sm) 0;
}

.t24-skeleton-title {
    height: 2em;
    width: 60%;
    margin: var(--t24-space-md) 0;
}

/* ==========================================
   TOAST NOTIFICATIONS
   ========================================== */

.t24-toast-container {
    position: fixed;
    top: var(--t24-space-xl);
    right: var(--t24-space-xl);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--t24-space-md);
    pointer-events: none;
}

.t24-toast {
    background: var(--t24-bg-primary);
    border: 1px solid var(--t24-border);
    border-radius: var(--t24-radius-lg);
    padding: var(--t24-space-md) var(--t24-space-lg);
    box-shadow: var(--t24-shadow-xl);
    min-width: 300px;
    pointer-events: auto;
    animation: t24-toast-slide-in 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: var(--t24-space-md);
}

@keyframes t24-toast-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.t24-toast.success {
    border-left: 4px solid var(--t24-success);
}

.t24-toast.error {
    border-left: 4px solid var(--t24-error);
}

.t24-toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.t24-toast-message {
    flex: 1;
    font-size: 0.875rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .t24-hero-title {
        font-size: 2rem;
    }

    .t24-hero-subtitle {
        font-size: 1rem;
    }

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

    .t24-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--t24-space-md);
    }

    .t24-nodes-table-wrapper {
        overflow-x: auto;
    }

    .t24-toast-container {
        right: var(--t24-space-md);
        left: var(--t24-space-md);
    }

    .t24-toast {
        min-width: 0;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.t24-frontend-dashboard *:focus-visible {
    outline: 2px solid var(--t24-primary-start);
    outline-offset: 2px;
}

/* ==========================================
   WALLET SELECTION MODAL
   ========================================== */

.t24-wallet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: t24-fade-in 0.2s ease-out;
    padding: var(--t24-space-lg);
}

.t24-wallet-modal {
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: t24-modal-slide-up 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes t24-modal-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.t24-wallet-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--t24-space-xl);
    border-bottom: 1px solid var(--t24-border);
}

.t24-wallet-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--t24-text-primary);
    margin: 0;
}

.t24-wallet-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--t24-text-tertiary);
    cursor: pointer;
    padding: var(--t24-space-sm);
    line-height: 1;
    transition: all var(--t24-transition-fast);
    border-radius: var(--t24-radius-sm);
}

.t24-wallet-modal-close:hover {
    background: var(--t24-bg-secondary);
    color: var(--t24-text-primary);
}

.t24-wallet-modal-body {
    padding: var(--t24-space-xl);
}

.t24-wallet-modal-description {
    color: var(--t24-text-secondary);
    margin: 0 0 var(--t24-space-xl);
    line-height: 1.6;
}

.t24-wallet-options {
    display: flex;
    flex-direction: column;
    gap: var(--t24-space-md);
    margin-bottom: var(--t24-space-xl);
}

.t24-wallet-option {
    display: flex;
    align-items: center;
    gap: var(--t24-space-lg);
    padding: var(--t24-space-lg);
    background: var(--t24-bg-primary);
    border: 2px solid var(--t24-border);
    border-radius: var(--t24-radius-lg);
    cursor: pointer;
    transition: all var(--t24-transition-base);
    text-align: left;
    width: 100%;
}

.t24-wallet-option:hover:not(.t24-wallet-option-disabled) {
    border-color: var(--t24-primary-start);
    background: var(--t24-bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--t24-shadow-lg);
}

.t24-wallet-option-disabled {
    opacity: 0.6;
    cursor: default;
}

.t24-wallet-option-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--t24-bg-secondary);
    border-radius: var(--t24-radius-md);
    transition: transform var(--t24-transition-base);
}

.t24-wallet-option:hover:not(.t24-wallet-option-disabled) .t24-wallet-option-icon {
    transform: scale(1.1);
}

.t24-wallet-option-info {
    flex: 1;
}

.t24-wallet-option-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--t24-text-primary);
    margin-bottom: var(--t24-space-xs);
}

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

.t24-wallet-option-status {
    flex-shrink: 0;
}

.t24-wallet-status-badge {
    display: inline-block;
    padding: var(--t24-space-xs) var(--t24-space-md);
    border-radius: var(--t24-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.t24-wallet-status-installed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--t24-success);
}

.t24-wallet-status-notinstalled {
    background: var(--t24-bg-secondary);
    color: var(--t24-text-tertiary);
}

.t24-wallet-modal-footer {
    padding-top: var(--t24-space-lg);
    border-top: 1px solid var(--t24-border);
}

.t24-wallet-modal-help {
    font-size: 0.875rem;
    color: var(--t24-text-secondary);
    margin: 0;
    text-align: center;
}

.t24-wallet-modal-help a {
    color: var(--t24-primary-start);
    text-decoration: none;
    font-weight: 600;
}

.t24-wallet-modal-help a:hover {
    text-decoration: underline;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.t24-text-gradient {
    background: linear-gradient(135deg, var(--t24-primary-start), var(--t24-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t24-fade-in {
    animation: t24-fade-in 0.6s ease-out;
}

@keyframes t24-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
