<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* AI Dashboard Styles */

.ai-hero {
  background: linear-gradient(135deg, rgba(0, 0, 20, 0.9) 0%, rgba(0, 10, 40, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.ai-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/grid.png');
  opacity: 0.1;
  z-index: 1;
}

.ai-hero .hero-content {
  position: relative;
  z-index: 2;
}

.ai-brain-visual {
  position: relative;
  width: 100%;
  height: 400px;
  z-index: 2;
}

/* Dashboard Layout */
.ai-dashboard-section {
  padding: 80px 0;
  background-color: rgba(0, 5, 20, 0.8);
  position: relative;
}

.dashboard-container {
  display: flex;
  background-color: rgba(10, 15, 30, 0.7);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  overflow: hidden;
  margin-top: 40px;
  border: 1px solid rgba(50, 120, 255, 0.1);
}

.dashboard-sidebar {
  width: 280px;
  background-color: rgba(5, 10, 25, 0.9);
  padding: 24px;
  border-right: 1px solid rgba(50, 120, 255, 0.1);
}

.dashboard-main {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

/* Categories and Providers */
.model-categories,
.model-providers {
  margin-bottom: 32px;
}

.model-categories h3,
.model-providers h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.category-list li,
.provider-list li {
  padding: 10px 16px;
  margin-bottom: 4px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.category-list li:hover,
.provider-list li:hover {
  background-color: rgba(50, 120, 255, 0.1);
  color: #fff;
}

.category-list li.active,
.provider-list li.active {
  background-color: rgba(50, 120, 255, 0.2);
  color: #3080ff;
  font-weight: 500;
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(50, 120, 255, 0.1);
}

.model-search {
  position: relative;
  width: 300px;
}

.search-input {
  width: 100%;
  padding: 12px 16px;
  padding-right: 40px;
  background-color: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(50, 120, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}

.search-button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  bottom: -6px;
  right: -2px;
  transform: rotate(45deg);
}

.selected-model {
  display: flex;
  align-items: center;
  gap: 8px;
}

.model-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.model-name {
  color: #3080ff;
  font-weight: 600;
  font-size: 16px;
}

.model-provider {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Model List */
.model-list-container {
  margin-bottom: 24px;
}

.model-list-container h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.model-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 8px;
}

.model-card {
  background-color: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(50, 120, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.model-card:hover {
  background-color: rgba(20, 30, 60, 0.5);
  border-color: rgba(50, 120, 255, 0.3);
  transform: translateY(-2px);
}

.model-card.active {
  background-color: rgba(30, 40, 80, 0.5);
  border-color: rgba(50, 120, 255, 0.5);
  box-shadow: 0 4px 16px rgba(50, 120, 255, 0.2);
}

.model-info h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}

.model-info .provider {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.model-metrics {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  color: #3080ff;
  font-weight: 600;
  font-size: 18px;
}

.metric-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* Interaction Panel */
.interaction-panel {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.input-container,
.output-container {
  display: flex;
  flex-direction: column;
}

.input-container h3,
.output-container h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}

.text-input-container {
  position: relative;
  margin-bottom: 16px;
}

.text-input {
  width: 100%;
  height: 200px;
  padding: 16px;
  background-color: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(50, 120, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  resize: none;
}

.input-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.parameter-controls {
  margin-bottom: 16px;
}

.parameter {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.parameter label {
  width: 120px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.parameter-slider {
  flex: 1;
  height: 4px;
  background-color: rgba(50, 120, 255, 0.2);
  border-radius: 2px;
  appearance: none;
}

.parameter-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #3080ff;
  cursor: pointer;
}

.parameter-value {
  width: 40px;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.submit-button {
  padding: 14px 24px;
  background: linear-gradient(135deg, #2060ff 0%, #3080ff 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.submit-button:hover {
  background: linear-gradient(135deg, #2070ff 0%, #40a0ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(50, 120, 255, 0.3);
}

.output-display {
  background-color: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(50, 120, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.output-content {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  overflow-y: auto;
  padding-right: 8px;
}

.output-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(50, 120, 255, 0.1);
}

.control-button {
  padding: 8px 16px;
  background-color: rgba(50, 120, 255, 0.1);
  border: 1px solid rgba(50, 120, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.control-button:hover {
  background-color: rgba(50, 120, 255, 0.2);
  color: #fff;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: rgba(0, 5, 15, 0.9);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background-color: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(50, 120, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(50, 120, 255, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 16px;
  background-color: rgba(50, 120, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.text-icon::before {
  content: 'T';
  font-size: 32px;
  font-weight: 700;
  color: #3080ff;
}

.image-icon::before {
  content: 'I';
  font-size: 32px;
  font-weight: 700;
  color: #30a0ff;
}

.video-icon::before {
  content: 'V';
  font-size: 32px;
  font-weight: 700;
  color: #30c0ff;
}

.voice-icon::before {
  content: 'S';
  font-size: 32px;
  font-weight: 700;
  color: #30e0ff;
}

.feature-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .interaction-panel {
    grid-template-columns: 1fr;
  }
  
  .input-container {
    margin-bottom: 24px;
  }
}

@media (max-width: 992px) {
  .dashboard-container {
    flex-direction: column;
  }
  
  .dashboard-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(50, 120, 255, 0.1);
  }
  
  .model-categories, 
  .model-providers {
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .model-search {
    width: 100%;
  }
  
  .model-list {
    grid-template-columns: 1fr;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(50, 120, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(50, 120, 255, 0.5);
}
</pre></body></html>