* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    flex-direction: column;
}

.loading-content {
    text-align: center;
    max-width: 600px;
    width: 90%;
}

.loading-video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(254, 230, 0, 0.3);
    margin-bottom: 2rem;
}

.loading-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.loading-text p {
    font-size: 1.2rem;
    color: #b3b3b3;
    animation: pulse 2s ease-in-out infinite;
}

.loading-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(254, 230, 0, 0.3);
    border-top: 3px solid #fee600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Main content initially hidden */
.main-content.hidden {
    display: none;
}

.chakra-text {
    color: #fee600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight {
    color: #fee600;
    background: linear-gradient(135deg, #fee600, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Chat Starter */
.chat-starter {
    background: rgba(254, 230, 0, 0.1);
    border: 1px solid rgba(254, 230, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.chat-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.aura-text {
    color: #fee600;
    font-weight: 700;
}

.chat-form {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(254, 230, 0, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #fee600;
    box-shadow: 0 0 0 3px rgba(254, 230, 0, 0.1);
}

.input-group input::placeholder {
    color: #888;
}

.start-chat-btn {
    background: linear-gradient(135deg, #fee600, #ffd700);
    color: #121212;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.start-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 230, 0, 0.3);
}

/* Quick Actions */
.quick-actions {
    margin-top: 2rem;
}

.quick-actions h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fee600;
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.quick-btn {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(254, 230, 0, 0.2);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: left;
}

.quick-btn:hover {
    background: rgba(254, 230, 0, 0.1);
    border-color: #fee600;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aura-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(30, 30, 30, 0.6);
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 2px solid rgba(254, 230, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.aura-logo-container:hover {
    border-color: rgba(254, 230, 0, 0.6);
    box-shadow: 0 15px 40px rgba(254, 230, 0, 0.2);
    transform: translateY(-5px);
}

.aura-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.aura-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(254, 230, 0, 0.3));
}

.aura-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fee600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(254, 230, 0, 0.3);
}

.aura-info p {
    font-size: 1.1rem;
    color: #b3b3b3;
    font-weight: 500;
}

/* App Download Section */
.app-download-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(5px);
}

.download-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fee600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(254, 230, 0, 0.3);
}

.app-store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-store-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(254, 230, 0, 0.3);
}

.store-badge {
    height: 60px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.app-store-btn:hover .store-badge {
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(254, 230, 0, 0.4));
}

.download-subtitle {
    font-size: 0.9rem;
    color: #b3b3b3;
    font-weight: 500;
    margin-top: 0.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(254, 230, 0, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 230, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fee600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #b3b3b3;
    line-height: 1.6;
}

/* Chat Interface Styles */
.chat-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 120px);
    margin-top: 120px;
}

.chat-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(254, 230, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(254, 230, 0, 0.2);
}

.chat-messages {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 15px;
}

.message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    max-width: 80%;
}

.user-message {
    background: rgba(254, 230, 0, 0.2);
    margin-left: auto;
    text-align: right;
    border: 1px solid rgba(254, 230, 0, 0.3);
}

.assistant-message {
    background: rgba(30, 30, 30, 0.8);
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loading {
    text-align: center;
    color: #fee600;
    font-style: italic;
}

.chat-input-section {
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fee600, transparent);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(254, 230, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fee600, transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(254, 230, 0, 0.3);
    box-shadow: 0 15px 40px rgba(254, 230, 0, 0.15);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(254, 230, 0, 0.1);
    border: 2px solid rgba(254, 230, 0, 0.3);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(254, 230, 0, 0.2);
    border-color: #fee600;
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fee600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #b3b3b3;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #fee600;
    transform: translateY(-2px);
}

a.contact-link:hover {
    text-decoration: underline;
}

/* Contact CTA Section */
.contact-cta {
    text-align: center;
    background: rgba(254, 230, 0, 0.05);
    border: 1px solid rgba(254, 230, 0, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
}

.quick-contact-form {
    display: inline-block;
}

.cta-button {
    background: linear-gradient(135deg, #fee600, #ffd700);
    color: #121212;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(254, 230, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 230, 0, 0.5);
    background: linear-gradient(135deg, #ffd700, #fee600);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .quick-buttons {
        grid-template-columns: 1fr;
    }
    
    .aura-logo-container {
        padding: 2rem 1.5rem;
    }
    
    .aura-logo {
        width: 120px;
        height: 120px;
    }
    
    /* App Download Section Responsive */
    .app-download-section {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .app-store-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .store-badge {
        height: 50px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .loading-video {
        max-width: 350px;
    }
    
    .loading-text h1 {
        font-size: 2rem;
    }
    
    /* Contact Section Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .chat-starter {
        padding: 1.5rem;
    }
    
    .aura-logo {
        width: 100px;
        height: 100px;
    }
    
    .loading-text h1 {
        font-size: 1.5rem;
    }
    
    .loading-video {
        max-width: 280px;
    }
    
    /* App Download Mobile Optimization */
    .app-download-section {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .download-title {
        font-size: 1.1rem;
    }
    
    .store-badge {
        height: 45px;
    }
    
    .download-subtitle {
        font-size: 0.8rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-cta h3 {
        font-size: 1.3rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(30, 30, 30, 0.3);
}

/* Markdown Content Styles for Chat */
.markdown-content {
    line-height: 1.6;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4,
.markdown-content h5,
.markdown-content h6 {
    margin: 1rem 0 0.5rem 0;
    color: #fee600;
    font-weight: 600;
}

.markdown-content h1 {
    font-size: 1.5rem;
    border-bottom: 2px solid rgba(254, 230, 0, 0.3);
    padding-bottom: 0.3rem;
}

.markdown-content h2 {
    font-size: 1.3rem;
}

.markdown-content h3 {
    font-size: 1.1rem;
}

.markdown-content p {
    margin: 0.8rem 0;
}

.markdown-content ul,
.markdown-content ol {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
}

.markdown-content li {
    margin: 0.3rem 0;
}

.markdown-content blockquote {
    border-left: 4px solid #fee600;
    background: rgba(254, 230, 0, 0.1);
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.markdown-content code {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    color: #fee600;
}

.markdown-content pre {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(254, 230, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.markdown-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.markdown-content table {
    border-collapse: collapse;
    margin: 1rem 0;
    width: 100%;
}

.markdown-content th,
.markdown-content td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    text-align: left;
}

.markdown-content th {
    background: rgba(254, 230, 0, 0.2);
    font-weight: 600;
}

.markdown-content a {
    color: #fee600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.markdown-content a:hover {
    border-bottom-color: #fee600;
}

.markdown-content strong {
    color: #fee600;
    font-weight: 600;
}

.markdown-content em {
    color: #cccccc;
    font-style: italic;
}

.markdown-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(254, 230, 0, 0.5), transparent);
    margin: 1.5rem 0;
}




        /* Navigation */
        .navbar {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(254, 230, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo h2 {
            font-size: 1.75rem;
            font-weight: 700;
        }

        .nav-logo .subheading {
            font-size: 0.75rem;
            color: #888;
            font-weight: 400;
            margin-top: -0.25rem;
        }

        .chakra-text {
            background: linear-gradient(135deg, #fee600 0%, #ffd700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #fee600;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #fee600;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Main Content Container */
        .main-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        /* Hero Title */
        .hero-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            line-height: 1.3;
        }

        .highlight {
            color: #fee600;
        }

        /* App Download Section */
        .app-download-section {
            padding: 2rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .download-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .app-store-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .app-store-btn {
            transition: transform 0.3s ease;
        }

        .app-store-btn:hover {
            transform: translateY(-5px);
        }

        .store-badge {
            height: 50px;
            width: auto;
        }

        .download-subtitle {
            color: #888;
            font-size: 0.9rem;
        }

        /* Quick Actions Section - Chakra Circle */
        .quick-actions-section {
            margin-bottom: 4rem;
            padding: 2rem 0;
        }

 .quick-actions-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.section-subheading {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #ccc;
    text-align: center;
}

.chakra-circle {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
}

.chakra-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(254, 230, 0, 0.3) 0%, rgba(254, 230, 0, 0.1) 100%);
    border-radius: 50%;
    border: 3px solid rgba(254, 230, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(254, 230, 0, 0.3);
}

.chakra-center-text {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #fee600;
    line-height: 1.3;
}

.slice-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.slice-container:nth-child(2) { transform: rotate(0deg); }
.slice-container:nth-child(3) { transform: rotate(90deg); }
.slice-container:nth-child(4) { transform: rotate(180deg); }
.slice-container:nth-child(5) { transform: rotate(270deg); }

.quick-slice {
    position: absolute;
    width: 225px;
    height: 225px;
    top: 0;
    left: 50%;
    transform-origin: 50% 100%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0% 100%, 50% 100%, 100% 100%, 100% 0%, 0% 0%);
    pointer-events: auto;
}

.quick-slice:hover {
    transform: translateY(-15px);
}

.slice-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    top: 0;
    left: -225px;
    background: conic-gradient(
        from 0deg at 50% 100%,
        rgba(254, 230, 0, 0.15) 0deg,
        rgba(254, 230, 0, 0.25) 45deg,
        rgba(254, 230, 0, 0.15) 90deg
    );
    clip-path: polygon(50% 100%, 100% 100%, 100% 0%, 50% 0%);
    border-right: 2px solid rgba(254, 230, 0, 0.4);
    border-top: 2px solid rgba(254, 230, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-slice:hover .slice-bg {
    background: conic-gradient(
        from 0deg at 50% 100%,
        rgba(254, 230, 0, 0.3) 0deg,
        rgba(254, 230, 0, 0.5) 45deg,
        rgba(254, 230, 0, 0.3) 90deg
    );
    border-right-color: rgba(254, 230, 0, 0.9);
    border-top-color: rgba(254, 230, 0, 0.9);
}

.slice-content {
    position: absolute;
    top: 80px;
    left: 50%;
    text-align: center;
    width: 120px;
    pointer-events: none;
    z-index: 2;
}

/* Rotate content to be upright for each slice */
.slice-container:nth-child(2) .slice-content {
    transform: translateX(-50%) rotate(0deg);
}

.slice-container:nth-child(3) .slice-content {
    transform: translateX(-50%) rotate(-90deg);
}

.slice-container:nth-child(4) .slice-content {
    transform: translateX(-50%) rotate(-180deg);
}

.slice-container:nth-child(5) .slice-content {
    transform: translateX(-50%) rotate(-270deg);
}

.slice-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.quick-slice:hover .slice-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 16px rgba(254, 230, 0, 0.5));
}

.slice-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.quick-slice::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    top: 0;
    left: -225px;
    background: radial-gradient(
        circle at 50% 100%,
        rgba(254, 230, 0, 0.3) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.quick-slice:hover::before {
    opacity: 1;
}
        /* Chat Section */
        .chat-section {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 3rem;
        }

        .chat-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .aura-text {
            background: linear-gradient(135deg, #fee600 0%, #ffd700 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .input-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .input-group input {
            flex: 1;
            min-width: 250px;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .input-group input:focus {
            outline: none;
            border-color: #fee600;
            background: rgba(255, 255, 255, 0.08);
        }

        .input-group input::placeholder {
            color: #888;
        }

        .start-chat-btn {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #fee600 0%, #ffd700 100%);
            border: none;
            border-radius: 12px;
            color: #000;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .start-chat-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(254, 230, 0, 0.3);
        }

        /* Contact Section */
        .contact-section {
            padding: 3rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-subtitle {
            text-align: center;
            color: #888;
            margin-bottom: 3rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(254, 230, 0, 0.3);
            transform: translateY(-5px);
        }

        .contact-icon {
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .contact-card p {
            color: #888;
            margin-bottom: 1rem;
        }

        .contact-link {
            color: #fee600;
            text-decoration: none;
            font-weight: 500;
        }

        .contact-cta {
            background: linear-gradient(135deg, rgba(254, 230, 0, 0.1) 0%, rgba(254, 230, 0, 0.05) 100%);
            border: 2px solid rgba(254, 230, 0, 0.3);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
        }

        .contact-cta h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .contact-cta p {
            color: #888;
            margin-bottom: 2rem;
        }

        .cta-button {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #fee600 0%, #ffd700 100%);
            border: none;
            border-radius: 12px;
            color: #000;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(254, 230, 0, 0.4);
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a0a;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .loading-content {
            text-align: center;
        }

        .loading-video {
            max-width: 400px;
            width: 100%;
        }

        .loading-text {
            margin-top: 2rem;
        }

        .loading-text h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .loading-text p {
            color: #888;
        }

        .hidden {
            display: none !important;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Design */
      /* Replace lines 611-723 with this: */

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(254, 230, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .main-container {
        padding: 2rem 1rem;
    }

    .chakra-circle {
        width: 350px;
        height: 350px;
    }

    .quick-slice {
        width: 175px;
        height: 175px;
    }

    .slice-bg {
        width: 350px;
        height: 350px;
        left: -175px;
    }

    .quick-slice::before {
        width: 350px;
        height: 350px;
        left: -175px;
    }

    .slice-content {
        top: 60px;
        width: 100px;
    }

    .slice-icon {
        font-size: 2.5rem;
    }

    .slice-text {
        font-size: 0.85rem;
    }

    .chakra-center {
        width: 110px;
        height: 110px;
    }

    .chakra-center-text {
        font-size: 0.85rem;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group input {
        min-width: 100%;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .chakra-circle {
        width: 300px;
        height: 300px;
    }

    .quick-slice {
        width: 150px;
        height: 150px;
    }

    .slice-bg {
        width: 300px;
        height: 300px;
        left: -150px;
    }

    .quick-slice::before {
        width: 300px;
        height: 300px;
        left: -150px;
    }

    .slice-content {
        top: 50px;
        width: 90px;
    }

    .slice-icon {
        font-size: 2rem;
    }

    .slice-text {
        font-size: 0.75rem;
    }

    .chakra-center {
        width: 90px;
        height: 90px;
    }

    .chakra-center-text {
        font-size: 0.75rem;
    }
}
.streaming-content {
    display: inline;
}

.typing-indicator {
    display: inline-block;
    animation: typing 1.4s infinite;
    font-size: 1.5em;
    line-height: 1;
}

@keyframes typing {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Ensure code blocks in streaming content are properly styled */
.markdown-content pre {
    margin: 0.5em 0;
    padding: 1em;
    background: #1e1e1e;
    border-radius: 4px;
    overflow-x: auto;
}

.markdown-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.markdown-content pre code {
    background: transparent;
    padding: 0;
}



      .video-hero-section {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 500px;
            overflow: hidden;
            margin-bottom: 3rem;
            border-radius: 12px;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .video-background iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        @media (min-aspect-ratio: 16/9) {
            .video-background iframe {
                height: 56.25vw;
            }
        }
        @media (max-aspect-ratio: 16/9) {
            .video-background iframe {
                width: 177.78vh;
            }
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .video-hero-content {
            text-align: center;
            color: white;
            padding: 2rem;
            max-width: 800px;
        }

        .video-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .video-hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .play-button {
            background: linear-gradient(135deg, #fee600 0%, #ffd700 100%);
            color: #1a1a1a;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(254, 230, 0, 0.3);
        }

        .play-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(254, 230, 0, 0.4);
        }

        .play-button svg {
            width: 24px;
            height: 24px;
        }

        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .video-modal.active {
            display: flex;
        }

        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            aspect-ratio: 16/9;
        }

        .video-modal-content iframe {
            width: 100%;
            height: 100%;
            border-radius: 8px;
        }

        .close-video {
            position: absolute;
            top: -40px;
            right: 0;
            background: transparent;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: transform 0.2s;
        }

        .close-video:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .video-hero-section {
                height: 60vh;
                min-height: 400px;
            }

            .video-hero-title {
                font-size: 2rem;
            }

            .video-hero-subtitle {
                font-size: 1.1rem;
            }

            .play-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }
        