        .page-glosario-web3 {
            --primary: #ff6b35;
            --secondary: #004e89;
            --accent: #1a936f;
            --dark: #f2f2f7;
            --light: #0f0f1e;
            --warning: #e63946;
            --hive: #e31337;
            --azul: #04223f;    
        }
        .page-glosario-web3, .page-glosario-web3 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .page-glosario-web3 {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        /* Hero Section */
        .page-glosario-web3 .hero {
            background: linear-gradient(135deg, var(--azul) 0%, var(--secondary) 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-glosario-web3 .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,107,53,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: gridMove 20s linear infinite;
        }

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

        .page-glosario-web3 .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-glosario-web3 .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, var(--primary));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-glosario-web3 .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        /* Search & Filter Bar */
        .page-glosario-web3 .controls {
            background: #1a1a2e;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .page-glosario-web3 .controls-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .page-glosario-web3 .search-box {
            flex: 1;
            min-width: 250px;
            position: relative;
        }

        .page-glosario-web3 .search-box input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            border: 2px solid #374151;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s;
            background: #0f0f1e;
            color: #f7f7f2;
        }

        .page-glosario-web3 .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
        }

        .page-glosario-web3 .search-box::before {
            content: '🔍';
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
        }

        .page-glosario-web3 .level-filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .page-glosario-web3 .filter-btn {
            padding: 0.5rem 1rem;
            border: 2px solid transparent;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            background: #f3f4f6;
        }

        .page-glosario-web3 .filter-btn:hover {
            transform: translateY(-2px);
        }

        .page-glosario-web3 .filter-btn.active {
            background: var(--primary);
            color: white;
        }

        .page-glosario-web3 .filter-btn.hive {
            background: rgba(227,19,55,0.1);
            color: var(--hive);
            border-color: var(--hive);
        }

        .page-glosario-web3 .filter-btn.hive.active {
            background: var(--hive);
            color: white;
        }

        /* Alphabet Navigation */
        .page-glosario-web3 .alpha-nav {
            background: var(--azul);
            padding: 1rem;
            position: sticky;
            top: 90px;
            z-index: 99;
            overflow-x: auto;
        }

        .page-glosario-web3 .alpha-nav ul {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            list-style: none;
            min-width: max-content;
        }

        .page-glosario-web3 .alpha-nav a {
            color: white;
            text-decoration: none;
            padding: 0.45rem 0.75rem;
            border-radius: 5px;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .page-glosario-web3 .alpha-nav a:hover, .page-glosario-web3 .alpha-nav a.active {
            background: var(--primary);
            transform: scale(1.1);
        }

        /* Main Content */
        .page-glosario-web3 .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .page-glosario-web3 .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary);
        }

        .page-glosario-web3 .section-header h2 {
            font-size: 2rem;
            color: var(--dark);
        }

        .page-glosario-web3 .level-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .badge-basic { background: #dbeafe; color: #1e40af; }
        .badge-intermediate { background: #fef3c7; color: #92400e; }
        .badge-advanced { background: #fce7f3; color: #be185d; }
        .badge-hive { background: rgba(227,19,55,0.1); color: var(--hive); }
        .badge-warning { background: #fee2e2; color: #991b1b; }

        /* Dictionary Grid */
        .page-glosario-web3 .dict-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .page-glosario-web3 .term-card {
            background: #1a1a2e;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border-left: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .page-glosario-web3 .term-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .page-glosario-web3 .term-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
        }

        .page-glosario-web3 .term-card:hover::before {
            transform: scaleX(1);
        }

        .page-glosario-web3 .term-card.hive-specific {
            border-left-color: var(--hive);
            background: linear-gradient(135deg, #1a1a2e 0%, rgba(227,19,55,0.08) 100%);
        }

        .page-glosario-web3 .term-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 0.75rem;
        }

        .page-glosario-web3 .term-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .page-glosario-web3 .term-english {
            font-size: 0.875rem;
            color: #9ca3af;
            font-style: italic;
        }

        .page-glosario-web3 .term-badges {
            display: flex;
            gap: 0.25rem;
            flex-wrap: wrap;
        }

        .page-glosario-web3 .mini-badge {
            padding: 0.125rem 0.5rem;
            border-radius: 10px;
            font-size: 0.625rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .page-glosario-web3 .term-definition {
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .page-glosario-web3 .term-example {
            background: #111827;
            padding: 1rem;
            border-radius: 8px;
            border-left: 3px solid var(--accent);
            font-size: 0.875rem;
            color: #d1d5db;
        }

        .page-glosario-web3 .term-example strong {
            color: var(--accent);
        }

        .page-glosario-web3 .term-meta {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #374151;
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .page-glosario-web3 .related-terms {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .page-glosario-web3 .related-tag {
            background: #374151;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .page-glosario-web3 .related-tag:hover {
            background: var(--primary);
            color: white;
        }

        /* No Results */
        .page-glosario-web3 .no-results {
            text-align: center;
            padding: 4rem 2rem;
            display: none;
        }

        .page-glosario-web3 .no-results.active {
            display: block;
        }

        /* Progress Indicator */
        .page-glosario-web3 .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--hive));
            z-index: 1000;
            transition: width 0.1s;
        }

        /* Responsive */
        @media (max-width: 768px) {
        .page-glosario-web3 .dict-grid {
                grid-template-columns: 1fr;
            }
            
        .page-glosario-web3 .controls-container {
                flex-direction: column;
            }
            
        .page-glosario-web3 .alpha-nav {
                top: 160px;
            }

        .page-glosario-web3 .alpha-nav a {
                padding: 0.35rem 0.6rem;
                font-size: 0.8rem;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .page-glosario-web3 .term-card {
            animation: fadeIn 0.5s ease-out forwards;
        }

        /* Se mantiene en paleta oscura para alinearse con el resto del sitio */
