 /* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 0;
    padding: 0 20px;
  }
  

  
  /* Roadmap Navigation */
  .roadmap-nav {
    background: #f8fafc;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .roadmap-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .roadmap-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
  }
  
  /* Progress Overview */
  .progress-overview {
    padding: 3rem 0;
    background: white;
  }
  
  .progress-content {
    text-align: center;
  }
  
  .progress-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937;
  }
  
  .progress-bars {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .progress-item {
    margin-bottom: 1.5rem;
  }
  
  .progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .progress-percentage {
    color: #3b82f6;
    font-weight: 600;
  }
  
  .progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
    transition: width 0.3s ease;
  }
  
  /* Roadmap CTA */
  .roadmap-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .btn-outline:hover {
    background: white;
    color: #667eea;
  }

  /* GitHub-Style Roadmap */
  .github-roadmap {
    background: #f6f8fa;
    padding: 2rem 0;
    min-height: 600px;
  }

  .roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #d0d7de;
  }

  .roadmap-title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #24292f;
    margin: 0;
  }

  .roadmap-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .view-filters {
    display: flex;
    gap: 0.5rem;
  }

  .view-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #d0d7de;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #24292f;
    transition: all 0.2s;
  }

  .view-btn:hover,
  .view-btn.active {
    background: #0969da;
    color: white;
    border-color: #0969da;
  }

  .roadmap-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .item-count {
    font-size: 0.875rem;
    color: #656d76;
  }

  .roadmap-content {
    display: flex;
    gap: 2rem;
  }

  .roadmap-sidebar {
    width: 280px;
    flex-shrink: 0;
  }

  .sidebar-section {
    background: white;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 1rem;
  }

  .sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #24292f;
    margin-bottom: 1rem;
  }

  .focus-filters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .focus-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s;
  }

  .focus-filter:hover {
    background: #f6f8fa;
  }

  .focus-filter input[type="radio"] {
    margin: 0;
  }

  .filter-icon {
    font-size: 1.25rem;
  }

  .filter-text {
    flex: 1;
    font-size: 0.875rem;
    color: #24292f;
  }

  .filter-count {
    background: #ddf4d8;
    color: #1a7f37;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .roadmap-board {
    flex: 1;
  }

  .roadmap-search {
    margin-bottom: 1rem;
  }

  .search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 0.875rem;
  }

  .search-input:focus {
    outline: none;
    border-color: #0969da;
    box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
  }

  .roadmap-columns {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    justify-content: space-between;
    width: 100%;
  }

  .roadmap-column {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 1rem;
  }

  .column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #d0d7de;
  }

  .column-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #24292f;
    margin: 0;
  }

  .column-header .item-count {
    font-size: 0.75rem;
    color: #656d76;
    background: #f6f8fa;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
  }

  .column-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .roadmap-item {
    background: white;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
  }

  .roadmap-item:hover {
    border-color: #0969da;
    box-shadow: 0 2px 8px rgba(9, 105, 218, 0.1);
    transform: translateY(-2px);
    cursor: pointer;
  }

  .roadmap-item {
    background: white;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .item-status {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }

  .item-status.ga { color: #1a7f37; }
  .item-status.preview { color: #9a6700; }
  .item-status.beta { color: #0969da; }
  .item-status.planned { color: #656d76; }
  .item-status.research { color: #cf222e; }

  .item-content {
    margin-left: 1.5rem;
  }

  .item-id {
    font-size: 0.75rem;
    color: #656d76;
    margin-bottom: 0.25rem;
  }

  .item-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #24292f;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .tag {
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .tag.enterprise { background: #ddf4d8; color: #1a7f37; }
  .tag.accounting { background: #ddf4d8; color: #1a7f37; }
  .tag.maintenance { background: #fff1e5; color: #9a6700; }
  .tag.reporting { background: #ddf4d8; color: #1a7f37; }
  .tag.integration { background: #ddf4d8; color: #1a7f37; }
  .tag.mobile { background: #fff1e5; color: #9a6700; }
  .tag.ai { background: #fef7ff; color: #8250df; }
  .tag.ga { background: #ddf4d8; color: #1a7f37; }
  .tag.preview { background: #fff1e5; color: #9a6700; }
  .tag.beta { background: #ddf4d8; color: #1a7f37; }
  .tag.planned { background: #f6f8fa; color: #656d76; }
  .tag.research { background: #ffebe9; color: #cf222e; }

  .item-focus {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #656d76;
  }

    .focus-icon {
    font-size: 1rem;
  }

  /* Roadmap Detail Modal */
  .roadmap-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
  }

  .roadmap-detail-modal.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9999 !important;
  }

  /* Ensure body doesn't scroll when modal is open */
  body.modal-open {
    overflow: hidden;
  }

  .modal-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10000;
    pointer-events: auto;
  }

  .modal-content.large {
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: white !important;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: visible;
    position: relative;
    z-index: 10001;
    transform: translateZ(0);
    pointer-events: auto;
    /* Debug: Make sure content is visible */
    border: 3px solid red;
    min-height: 400px;
    /* Force all text to be visible */
    color: black !important;
    font-size: 16px !important;
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #d0d7de;
    background: #f6f8fa;
    position: relative;
    z-index: 10002;
  }

  .modal-title h2 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin: 0 0 0.5rem 0;
    /* Debug: Force visibility */
    background: yellow !important;
    padding: 5px !important;
  }

  .modal-status {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
  }

  .status-badge.ga {
    background: #ddf4d8;
    color: #1a7f37;
  }

  .status-link {
    color: #0969da;
    font-size: 0.875rem;
    text-decoration: none;
  }

  .status-category {
    color: #656d76;
    font-size: 0.875rem;
  }

  .modal-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .action-btn {
    padding: 0.5rem;
    border: 1px solid #d0d7de;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    color: #656d76;
    transition: all 0.2s;
  }

  .action-btn:hover {
    background: #f6f8fa;
    border-color: #0969da;
    color: #0969da;
  }

  .close-modal {
    padding: 0.5rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #656d76;
    border-radius: 6px;
    transition: background-color 0.2s;
  }

  .close-modal:hover {
    background: #f6f8fa;
  }

  .modal-body {
    display: flex;
    height: calc(90vh - 120px);
    position: relative;
    z-index: 10001;
    /* Debug: Make sure body is visible */
    background: #f0f0f0;
    border: 2px solid blue;
  }

  .modal-main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    border-right: 1px solid #d0d7de;
    position: relative;
    z-index: 10001;
  }

  .detail-section {
    margin-bottom: 2rem;
  }

  .detail-header {
    margin-bottom: 1rem;
  }

  .detail-author {
    color: #656d76;
    font-size: 0.875rem;
  }

  .content-block {
    margin-bottom: 1.5rem;
  }

  .content-block h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #24292f;
    margin-bottom: 0.5rem;
  }

  .content-block p {
    color: #000000 !important;
    line-height: 1.6;
    margin: 0;
    /* Debug: Force visibility */
    background: lightblue !important;
    padding: 5px !important;
    font-size: 16px !important;
  }

  .activity-timeline h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #24292f;
    margin-bottom: 1rem;
  }

  .timeline-items {
    border-left: 2px solid #d0d7de;
    padding-left: 1rem;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #0969da;
    border-radius: 50%;
    border: 2px solid white;
  }

  .timeline-content {
    color: #656d76;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .timeline-icon {
    font-size: 1rem;
  }

  .timeline-date {
    font-weight: 500;
    color: #24292f;
    min-width: 80px;
  }

  .timeline-action {
    flex: 1;
  }

  .modal-sidebar {
    width: 320px;
    padding: 2rem;
    background: #f6f8fa;
    overflow-y: auto;
    position: relative;
    z-index: 10001;
  }

  .modal-sidebar .sidebar-section {
    background: white;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .modal-sidebar h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #24292f;
    margin: 0 0 0.75rem 0;
  }

  .status-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #24292f;
  }

  .status-indicator {
    font-size: 1.25rem;
  }

  .status-indicator.ga { color: #1a7f37; }
  .status-indicator.preview { color: #9a6700; }
  .status-indicator.beta { color: #0969da; }
  .status-indicator.planned { color: #656d76; }
  .status-indicator.research { color: #cf222e; }

  .labels-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .type-info,
  .milestone-info,
  .relationships-info,
  .development-info,
  .participants-info {
    font-size: 0.875rem;
    color: #656d76;
  }

  .project-name {
    font-weight: 500;
    color: #24292f;
    margin-bottom: 0.5rem;
  }

  .project-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .status-text {
    font-size: 0.875rem;
    color: #24292f;
  }

  .status-arrow {
    color: #0969da;
    font-weight: bold;
  }

  .project-focus {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .focus-dot {
    font-size: 1rem;
  }

  .focus-dot.accounting { color: #1a7f37; }
  .focus-dot.maintenance { color: #9a6700; }
  .focus-dot.reporting { color: #0969da; }

  .release-phase {
    background: #ddf4d8;
    color: #1a7f37;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .roadmap-stats {
      flex-direction: column;
      gap: 1rem;
    }
    
    .roadmap-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .roadmap-controls {
      width: 100%;
      justify-content: space-between;
    }
    
    .roadmap-content {
      flex-direction: column;
    }
    
    .roadmap-sidebar {
      width: 100%;
    }
    
    .roadmap-columns {
      flex-direction: column;
    }
    
    .roadmap-column {
      min-width: auto;
    }
    
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .cta-title {
      font-size: 1.875rem;
    }

    /* Modal responsive styles */
    .modal-overlay {
      padding: 1rem;
    }

    .modal-content.large {
      width: 95%;
      max-height: 95vh;
    }

    .modal-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
    }

    .modal-body {
      flex-direction: column;
      height: auto;
    }

    .modal-main {
      border-right: none;
      border-bottom: 1px solid #d0d7de;
      padding: 1rem;
    }

    .modal-sidebar {
      width: 100%;
      padding: 1rem;
    }

    .modal-status {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  }

  /* Header */
  .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  
  .logo-img {
    height: 40px;
    width: auto;
  }
  
  .nav-desktop {
    display: flex;
    gap: 32px;
  }
  
  .nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #3b82f6;
  }
  
  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b82f6;
    border-radius: 1px;
  }
  
  .header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s;
  }
  
  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-size: 14px;
  }
  
  .btn-primary {
    background: #3b82f6;
    color: white;
  }
  
  .btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
  }
  
  .btn-outline {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
  }
  
  .btn-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
  }
  
  /* Roadmap Hero */
  .roadmap-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
  }
  
  .roadmap-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  
  .roadmap-hero-description {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .roadmap-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  /* Roadmap Navigation */
  .roadmap-nav {
    padding: 40px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 70px;
    z-index: 100;
  }
  
  .roadmap-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .roadmap-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    background: white;
    color: #6b7280;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
  }
  
  .filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
  }
  
  .filter-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
  }
  
  /* Roadmap Areas */
  .roadmap-areas {
    padding: 80px 0;
    background: #f8fafc;
  }
  
  .roadmap-area {
    margin-bottom: 80px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
  }
  
  .roadmap-area:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  }
  
  .area-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
  }
  
  .area-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .area-icon.accounting {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
  }
  
  .area-icon.property-management {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
  }
  
  .area-icon.reporting {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
  }
  
  .area-icon.communications {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
  }
  
  .area-icon.mobile {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
  }
  
  .area-icon.integrations {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
  }
  
  .area-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .area-info {
    flex: 1;
  }
  
  .area-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
  }
  
  .area-description {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .area-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .stat-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  .stat-badge.completed {
    background: #d1fae5;
    color: #065f46;
  }
  
  .stat-badge.in-progress {
    background: #dbeafe;
    color: #1e40af;
  }
  
  .stat-badge.planned {
    background: #fef3c7;
    color: #92400e;
  }
  
  /* Features Timeline */
  .features-timeline {
    margin-top: 40px;
  }
  
  .timeline-section {
    margin-bottom: 48px;
  }
  
  .timeline-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1f2937;
  }
  
  .timeline-icon {
    width: 24px;
    height: 24px;
  }
  
  .timeline-section.completed .timeline-title {
    color: #065f46;
  }
  
  .timeline-section.in-progress .timeline-title {
    color: #1e40af;
  }
  
  .timeline-section.planned .timeline-title {
    color: #92400e;
  }
  
  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
  }
  
  .feature-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    background: white;
  }
  
  .feature-card.completed {
    border-left: 4px solid #10b981;
  }
  
  .feature-card.in-progress {
    border-left: 4px solid #3b82f6;
  }
  
  .feature-card.planned {
    border-left: 4px solid #f59e0b;
  }
  
  .feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    flex: 1;
    margin-right: 16px;
  }
  
  .feature-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .feature-status.completed {
    background: #d1fae5;
    color: #065f46;
  }
  
  .feature-status.in-progress {
    background: #dbeafe;
    color: #1e40af;
  }
  
  .feature-status.planned {
    background: #fef3c7;
    color: #92400e;
  }
  
  .status-icon {
    width: 14px;
    height: 14px;
  }
  
  .feature-description {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  
  .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
  }
  
  .feature-progress {
    margin-bottom: 16px;
  }
  
  .progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  
  .progress-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 4px;
    transition: width 0.3s ease;
  }
  
  .progress-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
  }
  
  .feature-votes {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .vote-btn,
  .comment-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .vote-btn:hover,
  .comment-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
  }
  
  .vote-btn.voted {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
  }
  
  .vote-icon,
  .comment-icon {
    width: 16px;
    height: 16px;
  }
  
  /* Modals */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-content {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }
  
  .modal-content.large {
    max-width: 800px;
  }
  
  .modal-overlay.active .modal-content {
    transform: scale(1);
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
  }
  
  .modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    color: #6b7280;
    transition: all 0.2s;
  }
  
  .modal-close:hover {
    background: #f3f4f6;
    color: #374151;
  }
  
  .modal-close svg {
    width: 20px;
    height: 20px;
  }
  
  /* Template Selection */
  .template-selection h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
  }
  
  .template-description {
    color: #6b7280;
    margin-bottom: 24px;
  }
  
  .template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .template-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .template-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  }
  
  .template-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: #3b82f6;
  }
  
  .template-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
  }
  
  .template-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
  }
  
  .template-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
  }
  
  /* Form Styles */
  .feature-request-form {
    display: none;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .form-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
  }
  
  /* Feature Detail Modal */
  .feature-detail-content {
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .feature-detail-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .feature-detail-description h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: #1f2937;
  }
  
  .feature-detail-description ul {
    margin: 16px 0;
    padding-left: 20px;
  }
  
  .feature-detail-description li {
    margin-bottom: 8px;
    color: #4b5563;
  }
  
  .progress-updates {
    margin: 16px 0;
  }
  
  .progress-update {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 6px;
  }
  
  .update-date {
    font-weight: 600;
    color: #6b7280;
    min-width: 100px;
    font-size: 0.875rem;
  }
  
  .update-content {
    color: #374151;
    font-size: 0.875rem;
  }
  
  /* Comments */
  .feature-comments {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
  }
  
  .feature-comments h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
  }
  
  .comments-list {
    margin-bottom: 24px;
  }
  
  .comment {
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .comment-author {
    font-weight: 600;
    color: #1f2937;
  }
  
  .comment-date {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  .comment-content {
    color: #4b5563;
    line-height: 1.6;
  }
  
  .add-comment h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
  }
  
  .comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    resize: vertical;
    margin-bottom: 12px;
  }
  
  .comment-form-actions {
    display: flex;
    justify-content: flex-end;
  }
  
  /* Footer */
  .footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
  }
  
  .footer-logo-img {
    height: 32px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
  }
  
  .footer-description {
    margin-bottom: 24px;
    line-height: 1.6;
  }
  
  .social-links {
    display: flex;
    gap: 16px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    color: #d1d5db;
    transition: all 0.2s;
  }
  
  .social-link:hover {
    background: #3b82f6;
    color: white;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
  }
  
  /* Animations */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-desktop {
      display: none;
    }
  
    .mobile-menu-btn {
      display: flex;
    }
  
    .nav-mobile.active {
      display: flex;
    }
  
    .roadmap-hero-title {
      font-size: 2.5rem;
    }
  
    .roadmap-stats {
      flex-direction: column;
      gap: 24px;
    }
  
    .roadmap-nav-content {
      flex-direction: column;
      gap: 20px;
      align-items: stretch;
    }
  
    .roadmap-filters {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .area-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
  
    .area-icon {
      width: 60px;
      height: 60px;
    }
  
    .area-icon svg {
      width: 30px;
      height: 30px;
    }
  
    .area-title {
      font-size: 1.5rem;
    }
  
    .area-stats {
      justify-content: flex-start;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .template-grid {
      grid-template-columns: 1fr;
    }
  
    .modal-content {
      padding: 24px;
      margin: 20px;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .form-actions {
      flex-direction: column;
    }
  
    .template-actions {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 16px;
    }
  
    .roadmap-hero {
      padding: 100px 0 60px;
    }
  
    .roadmap-hero-title {
      font-size: 2rem;
    }
  
    .roadmap-hero-description {
      font-size: 1rem;
    }
  
    .roadmap-area {
      padding: 24px;
    }
  
    .modal-content {
      width: 95%;
      padding: 20px;
    }
  
    .roadmap-filters {
      gap: 6px;
    }
  
    .filter-btn {
      padding: 6px 12px;
      font-size: 13px;
    }
  }
  
  /* Hidden class for filtering */
  .hidden {
    display: none !important;
  }
  
  /* Loading states */
  .loading {
    opacity: 0.6;
    pointer-events: none;
  }
  
  .loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  