/*# sourceMappingURL=maps/style.css.map */

/* ===================================
   AI-Powered Personalized Banner Styles
   =================================== */

   .ai-personalized-banner {
    position: relative;
    overflow: hidden;
  }
  
  /* AI Overlay and Indicator */
  .ai-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  
  .ai-indicator {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
  }
  
  .ai-pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
  }
  
  .ai-text {
    font-weight: 500;
  }
  
  @keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  /* AI Recommendation Cards */
  .ai-recommendations {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
  }
  
  .recommendation-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideInUp 0.8s ease-out;
  }
  
  .recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
  }
  
  .recommendation-card:nth-child(1) { animation-delay: 0.1s; }
  .recommendation-card:nth-child(2) { animation-delay: 0.2s; }
  .recommendation-card:nth-child(3) { animation-delay: 0.3s; }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
  }
  
  .recommendation-card h4 {
    color: var(--theme-heading-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .recommendation-card p {
    color: var(--theme-text-color);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
  }
  
  /* AI Insights Panel */
  .ai-insights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
  }
  
  .insight-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
  }
  
  .insight-item:nth-child(1) { animation-delay: 0.4s; }
  .insight-item:nth-child(2) { animation-delay: 0.5s; }
  .insight-item:nth-child(3) { animation-delay: 0.6s; }
  
  .insight-icon {
    font-size: 1.2rem;
    margin-right: 8px;
  }
  
  .insight-text {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
  }
  
  /* Dynamic Content Animations */
  #dynamicSubheading,
  #dynamicDescription {
    transition: all 0.5s ease;
  }
  
  #dynamicHeadline {
    transition: all 0.5s ease;
  }
  
  /* Button Enhancements */
  .btn-container {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background: #fff;
    color: var(--theme-heading-color);
    transform: translateY(-2px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .ai-recommendations {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    .recommendation-card {
      min-width: 250px;
      max-width: 300px;
    }
    
    .ai-insights {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    
    .btn-container {
      flex-direction: column;
      align-items: center;
    }
    
    .ai-overlay {
      top: 10px;
      right: 10px;
    }
    
    .ai-indicator {
      padding: 6px 12px;
      font-size: 11px;
    }
  }
  
  @media (max-width: 480px) {
    .recommendation-card {
      min-width: 200px;
      padding: 15px;
    }
    
    .card-icon {
      font-size: 2rem;
    }
    
    .recommendation-card h4 {
      font-size: 1rem;
    }
    
    .recommendation-card p {
      font-size: 0.8rem;
    }
  }
  
  /* Animation Keyframes */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* AI Personalization States */
  .ai-personalized-banner.analyzing .ai-indicator {
    animation: pulse 1s infinite;
  }
  
  .ai-personalized-banner.ready .ai-indicator {
    background: rgba(0, 255, 136, 0.2);
  }
  
  .ai-personalized-banner.ready .ai-pulse {
    background: #00ff88;
    animation: none;
  }
  
  /* Dynamic Video Background Enhancement */
  #dynamicVideo {
    filter: brightness(0.7) contrast(1.1);
    transition: filter 0.5s ease;
  }
  
  .ai-personalized-banner:hover #dynamicVideo {
    filter: brightness(0.8) contrast(1.2);
  }
  
  /* Loading States */
  .ai-personalized-banner.loading .banner-content {
    opacity: 0.7;
    pointer-events: none;
  }
  
  .ai-personalized-banner.loading .ai-recommendations,
  .ai-personalized-banner.loading .ai-insights {
    opacity: 0.5;
  }
  
  /* Accessibility Enhancements */
  .recommendation-card:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
  
  .insight-item:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
  
  /* High Contrast Mode Support */
  @media (prefers-contrast: high) {
    .recommendation-card {
      border: 2px solid #000;
      background: #fff;
    }
    
    .insight-item {
      border: 2px solid #fff;
      background: rgba(0, 0, 0, 0.8);
    }
  }
  
  /* Reduced Motion Support */
  @media (prefers-reduced-motion: reduce) {
    .ai-pulse,
    .recommendation-card,
    .insight-item {
      animation: none;
    }
    
    .recommendation-card:hover {
      transform: none;
    }
  }



  /* News Portal Start */


  .news-website-preview {
    padding: 20px;
  }
  
  .website-preview-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  
  .website-preview-header {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .browser-controls {
    display: flex;
    gap: 8px;
  }
  
  .browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  
  .browser-dot.red { background: #ff5f56; }
  .browser-dot.yellow { background: #ffbd2e; }
  .browser-dot.green { background: #27ca3f; }
  
  .website-url {
    color: #6c757d;
    font-size: 14px;
    font-family: monospace;
  }
  
  .browser-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
  }
  
  .browser-close-btn:hover {
    background-color: #e9ecef;
    color: #495057;
  }
  
  .website-preview-content {
    padding: 20px;
  }
  
  .website-screenshot {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .website-screenshot img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .website-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  .website-info p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .visit-website-btn {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .visit-website-btn:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .website-screenshot img {
      max-height: 200px;
    }
    
    .website-preview-content {
      padding: 15px;
    }
  }