/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: rgba(108,246,255,0.8);
    border: 2px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: background 0.2s, border 0.2s;
    mix-blend-mode: difference;
}
/* DJFEST Footer Styles */
.djfest-footer {
    background: linear-gradient(90deg, #111 60%, #222 100%);
    color: #fff;
    padding: 56px 0 32px 0;
    margin-top: 72px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    border-top: 4px solid #6cf6ff;
    box-shadow: 0 -4px 24px 0 rgba(108,246,255,0.12);
    position: relative;
    z-index: 10;
}
.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.footer-logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 0;
    color: #6cf6ff;
    text-shadow: 0 2px 12px #222, 0 0px 24px #6cf6ff44;
    padding-bottom: 12px;
    border-bottom: 2px solid #222;
    width: 100%;
    max-width: 320px;
}
.footer-links {
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 32px;
    padding: 18px 0 8px 0;
    width: 100%;
    max-width: 600px;
    border-bottom: 1px solid #222;
}
.footer-links a {
    color: #6cf6ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.12rem;
    padding: 10px 22px;
    border-radius: 22px;
    background: rgba(108,246,255,0.12);
    box-shadow: 0 2px 12px #6cf6ff22;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    margin: 4px 0;
}
.footer-links a:hover {
    color: #fff;
    background: linear-gradient(90deg, #6cf6ff 0%, #ff6cf6 100%);
    text-decoration: none;
    box-shadow: 0 4px 16px #ff6cf644;
}
.footer-copyright {
    font-size: 1.08rem;
    color: #6cf6ffcc;
    margin-top: 18px;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px #222;
    padding-top: 12px;
    width: 100%;
    max-width: 600px;
    border-top: 1px solid #222;
}
/* About Page Specific Styles */
.stats-section, .hero-section, .cta-section {
    margin: 2rem 0;
}
.stats-grid, .gamification-intro, .feature-card, .cta-button {
    /* Add more About-specific styles here as needed */
}



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            cursor: none;
        }
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255,0,255,0.5);
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: lighten;
            transition: transform 0.1s ease;
        }

        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .content-overlay {
            position: relative;
            z-index: 2;
            min-height: 100vh;
        }

        .hero-section {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(45deg, rgba(0,255,255,0.1), rgba(255,0,255,0.1));
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease-in-out infinite;
            margin-bottom: 1rem;
            text-shadow: 0 0 30px rgba(0,255,255,0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.8;
            max-width: 800px;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 1.2rem;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            border: none;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            margin: 0 10px;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,255,255,0.3);
        }

        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover:before {
            left: 100%;
        }

        .ecosystem-grid {
            padding: 100px 50px;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(20px);
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(0,255,255,0.1), rgba(255,0,255,0.1));
            border: 1px solid rgba(0,255,255,0.3);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,255,255,0.2);
            border-color: rgba(255,0,255,0.6);
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover:before {
            opacity: 1;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #00ffff;
        }

        .feature-description {
            line-height: 1.6;
            opacity: 0.9;
        }

        .mcp-documentation {
            padding: 100px 50px;
            background: linear-gradient(135deg, rgba(0,50,100,0.1), rgba(50,0,100,0.1));
        }

        .capability-card {
            background: linear-gradient(135deg, rgba(0,255,255,0.08), rgba(255,0,255,0.08));
            border: 1px solid rgba(0,255,255,0.3);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .capability-card:hover {
            border-color: rgba(255,0,255,0.6);
            box-shadow: 0 15px 30px rgba(0,255,255,0.1);
        }

        .capability-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .capability-title {
            font-size: 1.3rem;
            color: #00ffff;
            font-weight: bold;
        }

        .capability-id {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: #ff00ff;
            background: rgba(255,0,255,0.1);
            padding: 5px 10px;
            border-radius: 5px;
        }

        .expand-icon {
            color: #ffff00;
            transition: transform 0.3s ease;
            font-size: 1.2rem;
        }

        .expand-icon.expanded {
            transform: rotate(180deg);
        }

        .capability-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .capability-details.expanded {
            max-height: 1000px;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .spec-item {
            background: rgba(0,0,0,0.3);
            padding: 15px;
            border-radius: 10px;
            border-left: 3px solid #00ffff;
        }

        .spec-label {
            color: #ffff00;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .spec-value {
            color: #fff;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .json-code {
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            font-family: 'Courier New', monospace;
            font-size: 0.8rem;
            overflow-x: auto;
            color: #00ff00;
            position: relative;
        }

        .copy-button {
            position: absolute;
            top: 10px;
            right: 15px;
            background: rgba(0,255,255,0.2);
            border: 1px solid #00ffff;
            color: #00ffff;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .copy-button:hover {
            background: rgba(0,255,255,0.4);
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .integration-badge {
            display: inline-block;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            color: #000;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: bold;
            margin-left: 10px;
        }

        .stats-section {
            padding: 100px 50px;
            text-align: center;
            background: linear-gradient(135deg, rgba(0,255,255,0.05), rgba(255,0,255,0.05));
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            max-width: 1000px;
            margin: 50px auto 0;
        }

        .stat-item {
            position: relative;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(45deg, #00ffff, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .floating-element {
            position: absolute;
            background: radial-gradient(circle, rgba(0,255,255,0.1), rgba(255,0,255,0.1));
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .ecosystem-grid,
            .stats-section,
            .mcp-documentation {
                padding: 50px 20px;
            }
            
            .grid-container {
                grid-template-columns: 1fr;
            }
            
            .cta-button {
                font-size: 1rem;
                padding: 12px 30px;
                margin: 5px;
            }
        }

        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        .glow {
            text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }