  :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;
            --neon-pink: #ff0080;
            --cyber-orange: #ff6600;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0033 50%, #003d26 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: 4px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 50%;
            animation: float 8s infinite ease-in-out;
            opacity: 0.6;
        }

        .particle:nth-child(odd) {
            animation-duration: 12s;
            background: var(--primary-color);
        }

        .particle:nth-child(3n) {
            background: var(--secondary-color);
            animation-duration: 16s;
        }

        .particle:nth-child(5n) {
            background: var(--neon-pink);
            animation-duration: 20s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
            50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
        }

        .container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero {
            text-align: center;
            padding: 60px 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: 3.5em;
            margin-bottom: 15px;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--neon-pink));
            -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.3em;
            max-width: 800px;
            margin: 0 auto 20px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
            padding: 10px 20px;
            background: rgba(0, 255, 136, 0.1);
            border-radius: 10px;
            border: 1px solid var(--primary-color);
        }

        .hero-stat-number {
            font-size: 1.8em;
            font-weight: bold;
            color: var(--primary-color);
        }

        .hero-stat-label {
            font-size: 0.8em;
            color: var(--accent-color);
        }

        .main-dashboard {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .dashboard-section {
            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;
        }

        .dashboard-section:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
            border-color: var(--primary-color);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-icon {
            font-size: 2.5em;
            margin-right: 15px;
            filter: drop-shadow(0 0 5px var(--primary-color));
        }

        .section-title {
            font-size: 1.8em;
            color: var(--primary-color);
            font-weight: bold;
        }

        .player-container {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .player-info {
            text-align: center;
            margin-bottom: 20px;
        }

        .current-song {
            font-size: 1.2em;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .current-artist {
            color: var(--accent-color);
            font-size: 0.9em;
        }

        .player-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .control-btn {
            background: var(--secondary-color);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2em;
        }

        .control-btn:hover {
            background: var(--primary-color);
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
        }

        .play-btn {
            width: 60px;
            height: 60px;
            background: var(--neon-pink);
        }

        .progress-container {
            margin-bottom: 15px;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            width: 0%;
            transition: width 0.1s ease;
        }

        .time-display {
            display: flex;
            justify-content: space-between;
            font-size: 0.8em;
            color: var(--accent-color);
            margin-top: 5px;
        }

        .search-container {
            margin-bottom: 20px;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            width: 100%;
            background: rgba(17, 17, 17, 0.8);
            border: 2px solid var(--secondary-color);
            color: var(--text-light);
            padding: 12px 45px 12px 15px;
            border-radius: 25px;
            font-size: 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: 8px 12px;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-btn:hover {
            background: var(--primary-color);
        }

        .weather-widget {
            background: linear-gradient(135deg, rgba(0, 136, 255, 0.1), rgba(68, 255, 255, 0.1));
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .weather-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .weather-temp {
            font-size: 2.5em;
            font-weight: bold;
            color: var(--primary-color);
        }

        .weather-desc {
            color: var(--accent-color);
            font-size: 0.9em;
        }

        .weather-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            font-size: 0.8em;
        }

        .weather-detail {
            background: rgba(0, 0, 0, 0.3);
            padding: 8px;
            border-radius: 5px;
            text-align: center;
        }

        .api-directory {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .api-card {
            background: rgba(0, 136, 255, 0.1);
            border: 1px solid var(--secondary-color);
            border-radius: 10px;
            padding: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .api-card:hover {
            background: rgba(0, 255, 136, 0.1);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .api-name {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .api-category {
            font-size: 0.8em;
            color: var(--accent-color);
            margin-bottom: 8px;
        }

        .api-desc {
            font-size: 0.8em;
            line-height: 1.4;
        }

        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .action-btn {
            padding: 15px 10px;
            background: linear-gradient(45deg, var(--mystic-purple), var(--secondary-color));
            border: none;
            color: white;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9em;
            font-weight: bold;
        }

        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
        }

        .favorites-section {
            grid-column: 1 / -1;
            background: var(--card-bg);
            border-radius: 20px;
            padding: 25px;
            border: 2px solid var(--neon-pink);
            margin-top: 20px;
        }

        .favorites-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .favorite-item {
            background: rgba(255, 0, 128, 0.1);
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            padding: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .favorite-item:hover {
            background: rgba(255, 0, 128, 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: 30px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            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);
        }

        .notification {
            position: fixed;
            top: 90px;
            right: 20px;
            background: var(--primary-color);
            color: var(--dark-bg);
            padding: 15px 20px;
            border-radius: 10px;
            font-weight: bold;
            z-index: 9999;
            transform: translateX(400px);
            transition: transform 0.3s ease;
        }

        .notification.show {
            transform: translateX(0);
        }

        .hidden {
            display: none !important;
        }

        @media (max-width: 768px) {
            .main-dashboard {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5em;
            }

            .hero-stats {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 1.4em;
            }

            .player-controls {
                gap: 10px;
            }

            .control-btn {
                width: 40px;
                height: 40px;
            }

            .play-btn {
                width: 50px;
                height: 50px;
            }

            .quick-actions {
                grid-template-columns: repeat(2, 1fr);
            }
        }