.llm-page {
    background-color: #111827;
    color: #F9FAFB;
    scroll-behavior: smooth;
}

.message-content {
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.message-content strong {
    font-weight: 600;
    color: inherit;
}

.message-content br {
    display: block;
    content: "";
    margin-top: 0.5em;
}

/* Green AI specific styles */
.green-ai-feature {
    transition: all 0.3s ease;
}

.green-ai-feature:hover {
    transform: translateY(-5px);
}

.green-ai-stat {
    @apply bg-green-500/10 rounded-lg p-4 border border-green-500/20;
    transition: all 0.3s ease;
}

.green-ai-stat:hover {
    @apply bg-green-500/20 border-green-500/30;
}

.green-ai-comparison {
    position: relative;
    overflow: hidden;
}

.green-ai-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0) 0%, rgba(16, 185, 129, 0.2) 50%, rgba(16, 185, 129, 0) 100%);
}

.green-ai-comparison::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0) 0%, rgba(16, 185, 129, 0.2) 50%, rgba(16, 185, 129, 0) 100%);
}

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

.animate-pulse-green {
    animation: pulse-green 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.llm-header {
    text-align: center;
    margin-bottom: 4rem;
}

.llm-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.llm-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto;
}

.vision-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.vision-content {
    flex: 1;
}

.vision-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-text {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    color: #10B981;
    margin-right: 1rem;
}

.ai-preview {
    flex: 1;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

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

.feature-card {
    background-color: #1F2937;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.feature-card-icon {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card-text {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.community-section {
    text-align: center;
    margin-top: 3rem;
}

.community-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.community-text {
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.chat-container {
    background-color: #1F2937;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    border: 1px solid #374151;
}

.chat-header {
    background-color: #111827;
    padding: 1.5rem;
    border-bottom: 1px solid #374151;
}

.chat-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.chat-title-icon {
    color: #10B981;
    margin-right: 0.75rem;
}

.chat-subtitle {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    scroll-behavior: smooth;
}

.message {
    margin-bottom: 1rem;
    display: flex;
}

.message-user {
    justify-content: flex-end;
}

.message-ai {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 1rem;
    border-radius: 0.75rem;
}

.message-user .message-content {
    background-color: #10B981;
    color: white;
    border-top-right-radius: 0;
}

.message-ai .message-content {
    background-color: #374151;
    color: white;
    border-top-left-radius: 0;
}

.chat-input-container {
    padding: 1.5rem;
    background-color: #1F2937;
    border-top: 1px solid #374151;
}

.chat-input-form {
    display: flex;
}

.chat-input {
    flex: 1;
    background-color: #374151;
    border: 1px solid #4B5563;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
}

.chat-input:focus {
    outline: none;
    border-color: #10B981;
}

.send-button {
    background-color: #10B981;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.send-button:hover {
    background-color: #059669;
}

.send-button:disabled {
    background-color: #4B5563;
    cursor: not-allowed;
}

.suggestions-container {
    margin-bottom: 1rem;
}

.suggestions-title {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-button {
    background-color: #374151;
    color: #D1D5DB;
    border: none;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-button:hover {
    background-color: #4B5563;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
}

.typing-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #10B981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.disclaimer {
    color: #9CA3AF;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .vision-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .chat-messages {
        height: 300px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}
