  :root {
            --primary-color: #00ff88;
            --secondary-color: #0088ff;
            --accent-color: #44ffff;
            --dark-bg: #0a0a0a;
            --card-bg: #111111;
            --text-light: #ffffff;
            --earth-brown: #8b4513;
            --water-blue: #0066cc;
            --heart-red: #ff3366;
            --sacred-gold: #ffd700;
            --mystic-purple: #8a2be2;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0033 50%, var(--earth-brown) 100%);
            color: var(--text-light);
            overflow-x: hidden;
            min-height: 100vh;
            padding-top: 70px;
        }

        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 50%;
            animation: float 8s infinite ease-in-out;
            opacity: 0.4;
        }

        .particle:nth-child(odd) {
            animation-duration: 12s;
            background: var(--primary-color);
        }

        .particle:nth-child(3n) {
            background: var(--secondary-color);
            animation-duration: 16s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
            50% { transform: translateY(-80px) rotate(180deg); opacity: 0.8; }
        }

        .container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero {
            text-align: center;
            padding: 80px 20px;
            background: rgba(17, 17, 17, 0.9);
            border-radius: 20px;
            margin-bottom: 40px;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
            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.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.1); opacity: 0.2; }
        }

        .hero h1 {
            font-size: 4em;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 2;
            text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5)); }
            to { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8)); }
        }

        .hero p {
            font-size: 1.4em;
            max-width: 900px;
            margin: 0 auto 30px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .sacred-number {
            display: inline-block;
            font-size: 3em;
            font-weight: bold;
            color: var(--sacred-gold);
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
            animation: sacredPulse 2s ease-in-out infinite;
        }

        @keyframes sacredPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .database-controls {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 40px;
            border: 2px solid var(--secondary-color);
            box-shadow: 0 0 20px rgba(0, 136, 255, 0.2);
        }

        .search-controls {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .search-box {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .search-input {
            width: 100%;
            background: rgba(17, 17, 17, 0.8);
            border: 2px solid var(--secondary-color);
            color: var(--text-light);
            padding: 15px 50px 15px 20px;
            border-radius: 25px;
            font-size: 1.1em;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
        }

        .search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--secondary-color);
            border: none;
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: var(--primary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .filter-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            background: rgba(0, 136, 255, 0.2);
            border: 2px solid var(--secondary-color);
            color: var(--text-light);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9em;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: rgba(0, 255, 136, 0.2);
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
        }

        .stats-display {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: rgba(0, 255, 136, 0.1);
            border: 2px solid var(--primary-color);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
        }

        .stat-label {
            color: var(--accent-color);
            font-size: 0.9em;
            margin-top: 5px;
        }

        .database-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .record-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 25px;
            border: 2px solid var(--mystic-purple);
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .record-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
            border-color: var(--primary-color);
        }

        .record-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.6s ease;
        }

        .record-card:hover::before {
            left: 100%;
        }

        .record-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .record-icon {
            font-size: 2.5em;
            margin-right: 15px;
            filter: drop-shadow(0 0 5px var(--primary-color));
        }

        .record-title {
            font-size: 1.5em;
            color: var(--primary-color);
            font-weight: bold;
        }

        .record-description {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .record-data {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .data-field {
            background: rgba(0, 136, 255, 0.1);
            padding: 10px;
            border-radius: 8px;
            border: 1px solid var(--secondary-color);
        }

        .data-label {
            color: var(--accent-color);
            font-size: 0.8em;
            margin-bottom: 5px;
        }

        .data-value {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.1em;
        }

        .record-actions {
            display: flex;
            gap: 10px;
            position: relative;
            z-index: 2;
        }

        .action-btn {
            flex: 1;
            padding: 10px;
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid var(--primary-color);
            color: var(--text-light);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9em;
        }

        .action-btn:hover {
            background: rgba(0, 255, 136, 0.2);
            transform: translateY(-2px);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--card-bg);
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--heart-red);
            border: none;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2em;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--primary-color);
            transform: scale(1.1);
        }

        .modal-title {
            font-size: 2.5em;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .modal-data {
            display: grid;
            gap: 20px;
        }

        .modal-section {
            background: rgba(0, 255, 136, 0.05);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .modal-section h4 {
            color: var(--accent-color);
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        .export-controls {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            margin-top: 40px;
            border: 2px solid var(--sacred-gold);
            text-align: center;
        }

        .export-btn {
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--sacred-gold), var(--primary-color));
            border: none;
            color: var(--dark-bg);
            font-weight: bold;
            border-radius: 25px;
            cursor: pointer;
            margin: 0 10px;
            transition: all 0.3s ease;
            font-size: 1.1em;
        }

        .export-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }

        .hidden {
            display: none !important;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5em;
            }

            .database-grid {
                grid-template-columns: 1fr;
            }

            .search-controls {
                flex-direction: column;
            }

            .search-box {
                min-width: auto;
            }

            .filter-buttons {
                justify-content: center;
            }

            .stats-display {
                grid-template-columns: repeat(2, 1fr);
            }

            .record-data {
                grid-template-columns: 1fr;
            }

            .modal-content {
                margin: 20px;
                padding: 20px;
            }
        }