@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
.footer-social-links {
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.9));
    padding: 15px;
    margin: 10px auto;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    border: 1px solid rgba(255, 79, 146, 0.3);
    box-shadow: 0 0 15px rgba(255, 79, 146, 0.1);
    animation: cardGlow 8s infinite alternate;
}

.footer-social-links p {
    font-family: 'Orbitron', sans-serif;
    color: #cccccc;
    margin: 10px 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
}

.footer-social-links a {
    color: #ff4f92;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 8px;
    position: relative;
}

.footer-social-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 79, 146, 0.7);
}

.footer-social-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #ff4f92;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-social-links a:hover::after {
    transform: scaleX(1);
}

.footer-social-links i {
    font-size: 24px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-social-links i:hover {
    transform: translateY(-3px) scale(1.1);
    text-shadow: 0 0 15px rgba(255, 79, 146, 0.8);
}

/* Footer Links Styling */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
    padding: 15px;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    border: 1px solid rgba(255, 79, 146, 0.2);
    box-shadow: 0 0 20px rgba(255, 79, 146, 0.05);
    animation: cardGlow 8s infinite alternate;
}

.footer-links p {
    font-family: 'Orbitron', sans-serif;
    color: #cccccc;
    margin: 5px 0;
    padding: 10px 15px;
    border-radius: 30px;
    background: rgba(26, 26, 26, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links p:hover {
    background: rgba(255, 79, 146, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 79, 146, 0.3);
}

.footer-links a {
    color: #ff4f92;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-links i:hover {
    transform: scale(1.2);
    color: white;
    text-shadow: 0 0 10px rgba(255, 79, 146, 0.7);
}
/* Live Chat Styles */
.live-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.live-chat button {
    background-color: #ff4f92;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.chat-box {
    display: none;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.chat-header {
    background-color: #ff4f92;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.chat-body {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

.chat-body p {
    margin: 5px 0;
    padding: 8px;
    border-radius: 5px;
    max-width: 80%;
}

.bot-message {
    background-color: #e0e0e0;
    color: #333;
    align-self: flex-start;
}

.user-message {
    background-color: #ff4f92;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chat-input {
    display: flex;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

.chat-input button {
    background-color: #ff4f92;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}
/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Subtle Grid Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 10%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

/* Header */
header {
    background: linear-gradient(90deg, #b80f57, #8a0c45, #650a32);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    animation: flicker 5s infinite alternate;
}

/* Flickering Neon Effect */
@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

/* Headings */
h1, h2 {
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.05);
    animation: textGlow 6s infinite alternate;
}

/* Text Glow Animation */
@keyframes textGlow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.1), 0 0 10px rgba(255, 255, 255, 0.05); }
    50% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.1); }
    100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.1), 0 0 10px rgba(255, 255, 255, 0.05); }
}

/*

/* Boosting Section */
.boosting-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

/* Boosting Cards */
.boosting-card {
    background: #111;
    padding: 20px;
    margin: 10px;
    border-radius: 15px;
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05), 0 0 20px rgba(255, 255, 255, 0.02);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: cardGlow 8s infinite alternate;
}

.boosting-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.05);
    animation: hoverGlow 4s infinite alternate;
}

/* Card Glow Animation */
@keyframes cardGlow {
    0% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.05), 0 0 20px rgba(255, 255, 255, 0.02); }
    50% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.05); }
    100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.05), 0 0 20px rgba(255, 255, 255, 0.02); }
}

/* Hover Glow Animation */
@keyframes hoverGlow {
    0% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.05); }
    50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 0 40px rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.05); }
}

/* Boosting Card Headings */
.boosting-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.05);
    animation: textGlow 6s infinite alternate;
}

/* Boosting Card Descriptions */
.boosting-card p {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #cccccc;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.05), 0 0 10px rgba(255, 255, 255, 0.02);
}

/* Inputs & Buttons */
select, input, button {
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    background: #111111;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

/* Buttons */
button {
    background: linear-gradient(90deg, #1a1a1a, #0d0d0d);
    color: white;
    cursor: pointer;
    transition: background 0.5s, transform 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

button:hover {
    background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.05);
}

/* CAPTCHA Styling */
.captcha-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #111;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
    z-index: 1001;
    display: none;
    animation: cardGlow 8s infinite alternate;
}

.captcha-container.active {
    display: block;
}

.captcha-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.captcha-image {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px;
    background: #000;
    margin-bottom: 15px;
    border-radius: 8px;
}

.captcha-input {
    padding: 12px;
    width: 80%;
    background: #000;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.captcha-verify {
    background: linear-gradient(90deg, #8a0c45, #650a32);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.captcha-verify:hover {
    background: linear-gradient(90deg, #650a32, #8a0c45);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

/* Footer */
footer {
    background-color: #000000;
    padding: 10px;
    margin-top: 20px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    animation: flicker 5s infinite alternate;
}

footer a {
    color: #ff007f;
    text-decoration: none;
    transition: text-shadow 0.5s ease-in-out;
}

footer a:hover {
    text-shadow: 0 0 5px #8a0c45, 0 0 15px #650a32, 0 0 30px rgba(255, 0, 127, 0.8);
}

footer i {
    margin: 0 10px;
    font-size: 20px;
    color: #ff007f;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer i:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Image Styling */
.mlbb-image {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.mlbb-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

/* Left Container */
.left-container {
    position: absolute;
    top: 200px;
    left: 30px;
    width: 300px;
    text-align: center;
    border: none;
    padding: 20px;
    box-sizing: border-box;
    animation: slideIn 2s ease-out;
}

/* Slide-In Animation */
@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Left Container Text */
.left-container p {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 16px;
    color: #cccccc;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Left Container Image */
.left-container img {
    width: 200%;
    margin-bottom: 10px;
    border-radius: 10px;
    animation: float 6s infinite ease-in-out;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Testimonials Section */
.testimonials {
    margin: 40px 0;
}

.testimonial-card {
    background: #111;
    padding: 20px;
    margin: 10px auto;
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    animation: cardGlow 8s infinite alternate;
}

.testimonial-card p {
    font-style: italic;
    color: #cccccc;
}

.testimonial-card span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #ff007f;
}

/* FAQ Section */
.faq {
    margin: 40px 0;
}

.faq-item {
    background: #111;
    padding: 20px;
    margin: 10px auto;
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    animation: cardGlow 8s infinite alternate;
}

.faq-item h3 {
    color: #ff007f;
    margin-bottom: 10px;
}

.faq-item p {
    color: #cccccc;
}

/* Live Chat Support */
.live-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.live-chat button {
    background: linear-gradient(90deg, #8a0c45, #650a32);
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.chat-box {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.chat-header {
    padding: 10px;
    background: #1a1a1a;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.chat-body {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    margin-right: 10px;
}
/* Media Query for Mobile Devices */

/* Confirm Button Styles */
.confirm-container {
    margin-top: 15px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.confirm-btn {
    background: linear-gradient(145deg, #ff69b4, #ff1493);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4),
                0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6),
                0 0 0 2px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(145deg, #ff1493, #ff69b4);
}

.confirm-btn:active {
    transform: translateY(1px);
}

.confirm-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    pointer-events: none;
}

.confirm-btn:hover::after {
    left: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */

/* Developer Mode indicators */
.dev-mode-active {
    position: relative;
}

.dev-mode-active::before {
    content: "Developer Mode Active";
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #ff5ec2;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 9999;
}

.dev-tools {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(30, 27, 41, 0.9);
    border: 2px solid #ff5ec2;
    padding: 15px;
    border-radius: 10px;
    z-index: 9998;
    max-width: 300px;
}

.dev-tools h3 {
    color: #ff5ec2;
    margin-top: 0;
}

.dev-tools button {
    background: #ff5ec2;
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.lilith-avatar {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 1.2em;
}



        /* Dev Mode Styles */
        .dev-mode-active {
            position: relative;
            border: 2px dashed red;
        }
        
        .dev-tools {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #fff;
            padding: 15px;
            border: 2px solid #333;
            border-radius: 5px;
            z-index: 9999;
            box-shadow: 0 0 10px rgba(0,0,0,0.5);
        }
        
        .dev-tools h3 {
            margin-top: 0;
            color: #ff0000;
        }
        
        .dev-tools button {
            display: block;
            margin: 5px 0;
            padding: 5px 10px;
            background: #333;
            color: white;
            border: none;
            cursor: pointer;
        }
        
        #devOutput {
            margin-top: 10px;
            padding: 5px;
            background: #f0f0f0;
            border: 1px solid #ccc;
            max-height: 150px;
            overflow-y: auto;
        }

 
@media screen and (max-width: 768px) {
    /* General Mobile Adjustments */
    body {
        font-size: 14px;
        overflow-x: hidden;
    }

    /* Header Adjustments */
    header {
        padding: 15px 10px;
        font-size: 0.9em;
        letter-spacing: 1px;
    }

    /* Main Content Layout */
    .left-container {
        position: static;
        width: 90%;
        margin: 20px auto;
        padding: 15px;
        animation: none;
    }

    .left-container img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
    }

    /* Boosting Section */
    .boosting-options {
        flex-direction: column;
        align-items: center;
        margin: 10px;
    }

    .boosting-card {
        width: 90%;
        max-width: 350px;
        margin: 10px auto;
        padding: 15px;
    }

    /* Testimonials & FAQ */
    .testimonial-card,
    .faq-item {
        width: 90%;
        padding: 15px;
        margin: 10px auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        display: flex;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
    
    }

    

    /* Image Adjustments */
    .mlbb-image {
        width: 95%;
        margin: 15px auto;
    }

        .testimonials h2, .faq h2 {
        font-size: 1.4em;
        font-family: 'Orbitron', sans-serif;
        color: #ff4f92;
        margin: 15px 0;
        text-align: center;
        position: relative;
    }

       @keyframes mobileHeaderPulse {
        0%, 100% { box-shadow: 0 2px 10px rgba(255, 20, 147, 0.3); }
        50% { box-shadow: 0 2px 15px rgba(255, 20, 147, 0.5); }
    }

    header {
        animation: mobileHeaderPulse 4s infinite;
    }

    /* Font adjustments for mobile readability */
    body {
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.5;
    }

    h1, h2, h3 {
        font-weight: 600;
    }

    .testimonials h2::after, .faq h2::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #ff4f92, transparent);
        margin: 5px auto;
    }


    /* Form Elements */
    select, input, button {
        padding: 8px 12px;
        margin: 8px;
        width: 90%;
        max-width: 300px;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    /* Chat System */
    .live-chat {
        bottom: 15px;
        right: 15px;
    }

    .live-chat button {
        padding: 12px;
        font-size: 18px;
    }

    .chat-box {
        width: 280px;
        right: 10px;
        bottom: 70px;
    }

    /* CAPTCHA Modal */
    .captcha-container {
        width: 90%;
        max-width: 350px;
        padding: 20px;
    }

    /* Footer Adjustments */
    footer {
        padding: 15px 10px;
        font-size: 0.9em;
    }

    /* Grid Animation Optimization */
    body::before {
        background-size: 20px 20px;
        animation: gridMove 30s linear infinite;
    }

    /* Dev Tools Adjustment */
    .dev-tools {
        width: 90%;
        max-width: 300px;
        bottom: 80px;
        right: 10px;
        font-size: 0.9em;
    }

     .footer-social-links {
        width: 95%;
        padding: 10px;
    }
    
    .footer-social-links p {
        font-size: 14px;
        margin: 8px 0;
    }
    
    .footer-social-links i {
        font-size: 20px;
        margin: 0 5px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
    }
    
    .footer-links p {
        width: 100%;
        justify-content: center;
        padding: 8px;
        font-size: 14px;
    }
    
    .footer-links i {
        font-size: 16px;
    }


    /* Button Enhancements */
    .confirm-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    /* Card Hover Effects Adjustment */
    .boosting-card:hover {
        transform: scale(1.02);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }

    /* Typography Adjustments */
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    /* Layout Stacking */
    .content-section {
        display: flex;
        flex-direction: column;
    }

    /* Input Group Styling */
    .input-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Animation Optimizations */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    /* Mobile-Specific Enhancements */
    .mobile-hidden {
        display: none;
    }

    .mobile-visible {
        display: block;
    }

    /* Touch Target Sizing */
    button, a, input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
    }
    .chat-input {
        display: flex;
        padding: 8px;
        background-color: #1a1a1a;
        border-top: 1px solid rgba(255, 79, 146, 0.3);
        align-items: center;
        gap: 8px;
    }

    .chat-input input {
        flex: 1;
        padding: 10px 12px;
        border: 1px solid rgba(255, 79, 146, 0.5);
        border-radius: 25px;
        margin-right: 0;
        background-color: #111;
        color: white;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4);
    }

    .chat-input input:focus {
        outline: none;
        border-color: #ff4f92;
        box-shadow: inset 0 0 12px rgba(255, 79, 146, 0.3), 
                    0 0 10px rgba(255, 79, 146, 0.2);
    }

    .chat-input input::placeholder {
        color: #888;
        font-style: italic;
    }

    .chat-input button {
        background: linear-gradient(135deg, #ff4f92, #d43c7a);
        color: white;
        border: none;
        padding: 10px 14px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(255, 79, 146, 0.4);
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chat-input button:hover {
        background: linear-gradient(135deg, #ff5e9e, #e64b85);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 79, 146, 0.6);
    }

    .chat-input button:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(255, 79, 146, 0.4);
    }

    /* Send icon styling */
    .chat-input button::after {
        content: '→';
        font-weight: bold;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
}


