/* ====================
   Global Styles & Variables
   ==================== */

:root {
    /* Purple Gradient Colors from Presentation */
    --primary-purple: #2D1B69;
    --secondary-purple: #4C1D95;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-cyan: #06B6D4;

    /* Text Colors */
    --text-light: #F9FAFB;
    --text-gray: #9CA3AF;
    --text-dark: #111827;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #06B6D4 100%);
    --gradient-dark: linear-gradient(180deg, #1a0d3e 0%, #2D1B69 50%, #1a0d3e 100%);
    --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);

    /* Spacing */
    --section-padding: 100px 0;
}

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

body {
    font-family: 'Noto Sans TC', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0118;
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ====================
   Typography
   ==================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====================
   Navigation
   ==================== */

.navbar {
    background: rgba(26, 13, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.navbar.scrolled {
    background: rgba(26, 13, 62, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    color: var(--accent-purple);
}

.brand-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-purple) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

/* ====================
   Buttons
   ==================== */

.btn-gradient-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--accent-purple);
    color: var(--accent-purple);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--accent-purple);
    color: white;
}

/* ====================
   Hero Section
   ==================== */

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    padding-top: 80px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-purple);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Hero Image Animation */
.hero-image-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-brain-animation {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-brain-animation i {
    color: var(--accent-purple);
    filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.6));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent-purple);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation: float 4.5s ease-in-out infinite 1s;
}

/* ====================
   Sections
   ==================== */

.section-padding {
    padding: var(--section-padding);
}

.bg-dark-gradient {
    background: var(--gradient-dark);
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ====================
   Problem Cards
   ==================== */

.problem-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-gray);
}

/* ====================
   Value Cards
   ==================== */

.value-card {
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.value-card.featured {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--accent-purple);
    font-size: 1.2rem;
}

/* ====================
   Feature Showcase
   ==================== */

.feature-showcase {
    margin-bottom: 5rem;
}

.feature-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-purple);
    margin-top: 5px;
}

.highlight-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Code Window */
.code-window {
    background: #1e1e2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.code-header {
    background: #2a2a3e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.code-title {
    margin-left: auto;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.code-body {
    padding: 20px;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
    color: #e0e0e0;
}

.code-comment { color: #6a9955; }
.code-function { color: #dcdcaa; }
.code-string { color: #ce9178; }

/* Chat Demo */
.chat-demo {
    background: #1e1e2e;
    border-radius: 16px;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chat-message {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.message-bubble {
    background: rgba(139, 92, 246, 0.2);
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 70%;
}

.chat-message.user .message-bubble {
    background: var(--gradient-primary);
    color: white;
}

.typing-indicator {
    display: flex;
    gap: 4px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Chatbot Preview */
.chatbot-preview {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.chatbot-window {
    flex: 1;
    background: #1e1e2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chatbot-header {
    background: var(--gradient-primary);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #27c93f;
    border-radius: 50%;
    margin-left: auto;
    animation: pulse 2s infinite;
}

.chatbot-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.bot-message, .user-message {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.user-message {
    flex-direction: row-reverse;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message {
    background: rgba(139, 92, 246, 0.2);
    padding: 10px 15px;
    border-radius: 12px;
    max-width: 70%;
}

.user-message .message {
    background: var(--accent-purple);
}

.chatbot-footer {
    padding: 15px 20px;
    background: #2a2a3e;
    display: flex;
    gap: 10px;
}

.chatbot-footer input {
    flex: 1;
    background: #1e1e2e;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
}

.chatbot-footer button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    cursor: pointer;
}

.line-preview {
    text-align: center;
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    padding: 30px;
}

.line-preview i {
    color: #06B6D4;
}

/* ====================
   Tech Stack
   ==================== */

.tech-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.tech-card i {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.tech-card h4 {
    margin-bottom: 0.5rem;
}

.tech-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.architecture-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.arch-layer {
    text-align: center;
}

.layer-box {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 20px 40px;
    font-weight: 600;
    display: inline-block;
}

.layer-box.integration {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.arch-arrow {
    font-size: 1.5rem;
    color: var(--accent-purple);
}

/* ====================
   Pricing
   ==================== */

.pricing-card {
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price {
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features i {
    color: var(--accent-purple);
    font-size: 1.2rem;
}

.pricing-features li.disabled i {
    color: var(--text-gray);
}

/* ====================
   CTA Section
   ==================== */

.cta-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.demo-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 14px 24px;
    color: white;
}

.demo-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.demo-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-purple);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

/* ====================
   Contact
   ==================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-purple);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 14px 20px;
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    color: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

/* ====================
   Footer
   ==================== */

.footer {
    background: #0a0118;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer h5, .footer h6 {
    margin-bottom: 1.5rem;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-purple);
}

/* ====================
   Scroll to Top
   ==================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

/* ====================
   Animations
   ==================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================
   Responsive Design
   ==================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-showcase {
        margin-bottom: 3rem;
    }

    .feature-showcase .row {
        flex-direction: column-reverse !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .chatbot-preview {
        flex-direction: column;
    }
}

/* ====================
   Utility Classes
   ==================== */

.bg-dark {
    background-color: #0a0118 !important;
}

.text-muted {
    color: var(--text-gray) !important;
}
