:root {
    --background-primary: #121212;
    --background-secondary: #1e1e1e;
    --background-tertiary: #252525;
    --accent-primary: #ff4d4d;
    --accent-secondary: #3a7bd5;
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --border-color: #333;
    --success-color: #00b894;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Grid background effect */
  .grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
      linear-gradient(rgba(18, 18, 18, 0.97) 1px, transparent 1px),
      linear-gradient(90deg, rgba(18, 18, 18, 0.97) 1px, transparent 1px);
    background-size: 50px 50px;
    background-color: var(--background-primary);
  }
  
  .header {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
  }
  
  .logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.3);
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .user-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #ff7e7e);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.25);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 77, 77, 0.35);
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid var(--accent-secondary);
    color: var(--accent-secondary);
  }
  
  .btn-outline:hover {
    background-color: rgba(58, 123, 213, 0.1);
  }
  
  .btn-success {
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.25);
  }
  
  .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 184, 148, 0.35);
  }
  
  .hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3rem 1rem;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-primary), #d0d0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
  }
  
  .hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  
  /* Map overlay effect */
  .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233a7bd5' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
                url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ff4d4d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 1;
  }
  
  /* Features Section */
  .features {
    padding: 3rem 1rem;
    background-color: var(--background-secondary);
  }
  
  .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .feature-card {
    background-color: var(--background-tertiary);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 77, 77, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent-primary);
    position: relative;
  }
  
  .feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    z-index: -1;
  }
  
  .feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }
  
  .feature-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
  }
  
  /* Stats Section */
  .stats {
    padding: 3rem 1rem;
    position: relative;
  }
  
  .stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.05), rgba(255, 77, 77, 0.05));
    z-index: -1;
  }
  
  .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .stat-card {
    background-color: var(--background-tertiary);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    height: 100%;
  }
  
  .stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
  }
  
  /* Footer */
  .footer {
    background-color: var(--background-tertiary);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  
  .footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: var(--accent-primary);
  }
  
  .copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  /* Glitch effect for title */
  @keyframes glitch {
    0% {
      transform: translate(0);
    }
    20% {
      transform: translate(-3px, 3px);
    }
    40% {
      transform: translate(-3px, -3px);
    }
    60% {
      transform: translate(3px, 3px);
    }
    80% {
      transform: translate(3px, -3px);
    }
    100% {
      transform: translate(0);
    }
  }
  
  .glitch-effect {
    position: relative;
    animation: glitch 5s infinite;
    animation-timing-function: step-end;
    animation-delay: 3s;
  }
  
  .glitch-effect:hover {
    animation: glitch 0.3s infinite;
  }
  
  /* Loading/animated elements */
  .loading-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 0 2px;
    background-color: white;
    animation: loading 1.4s infinite ease-in-out both;
  }
  
  .loading-dot:nth-child(1) {
    animation-delay: -0.32s;
  }
  
  .loading-dot:nth-child(2) {
    animation-delay: -0.16s;
  }
  
  @keyframes loading {
    0%, 80%, 100% {
      transform: scale(0);
    }
    40% {
      transform: scale(1);
    }
  }
  
  .terminal {
    background-color: #1e1e1e;
    border-radius: 8px;
    margin: 1.5rem 0;
    position: relative;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
  }
  
  .terminal-header {
    display: flex;
    align-items: center;
    background-color: #252526;
    padding: 8px 12px;
    border-bottom: 1px solid #333;
  }
  
  .terminal-buttons {
    display: flex;
    gap: 6px;
  }
  
  .terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  
  .terminal-button.red {
    background-color: #ff5f56;
  }
  
  .terminal-button.yellow {
    background-color: #ffbd2e;
  }
  
  .terminal-button.green {
    background-color: #27c93f;
  }
  
  .terminal-title {
    margin-left: auto;
    margin-right: auto;
    color: #888;
    font-size: 0.75rem;
  }
  
  .terminal-body {
    display: flex;
    overflow-x: auto;
  }
  
  .line-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px 8px;
    background-color: #1e1e1e;
    color: #858585;
    font-size: 0.85rem;
    user-select: none;
    border-right: 1px solid #333;
    min-width: 30px;
    text-align: right;
  }
  
  .line-numbers span {
    line-height: 1.4;
  }
  
  .terminal-code {
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 10px;
    width: 100%;
    text-align: left; /* Ensure text is left-aligned */
  }
  
  .terminal-code p {
    margin: 0;
    white-space: pre;
  }
  
  .cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: #aeafad;
    vertical-align: middle;
    margin-left: 1px;
    animation: blink 1s step-end infinite;
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  .terminal-code .comment { color: #6a9955; }
  .terminal-code .tag { color: #569cd6; }
  .terminal-code .attribute { color: #9cdcfe; }
  .terminal-code .value { color: #ce9178; }
  .terminal-code .bracket { color: #d4d4d4; }
  .terminal-code .property { color: #9cdcfe; }
  .terminal-code .string { color: #ce9178; }
  .terminal-code .number { color: #b5cea8; }
  
  .typing-effect::after {
    content: '|';
    animation: cursor 1s infinite step-start;
  }
  
  @keyframes cursor {
    50% {
      opacity: 0;
    }
  }
  
  /* Welcome Section */
  .welcome {
    padding: 3rem 1rem;
    background-color: var(--background-primary);
    position: relative;
  }
  
  .welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
  
  .welcome-content {
    flex: 1;
    min-width: 280px;
  }
  
  .welcome-image {
    flex: 1;
    min-width: 280px;
    position: relative;
  }
  
  .welcome-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--border-color);
    height: auto;
  }
  
  .welcome-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
  }
  
  .welcome-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
  }
  
  .welcome-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 3rem 1rem;
    background-color: var(--background-secondary);
  }
  
  .testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    background-color: var(--background-tertiary);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  }
  
  .testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    flex-shrink: 0;
  }
  
  .testimonial-content {
    padding-left: 1rem;
    flex: 1;
    min-width: 200px;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 1.25rem;
    position: relative;
    font-size: 0.95rem;
  }
  
  .testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 77, 77, 0.1);
    position: absolute;
    top: -20px;
    left: -15px;
  }
  
  .testimonial-author {
    font-weight: 600;
    margin-bottom: 0.3rem;
  }
  
  .testimonial-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  .testimonial-rating {
    display: flex;
    gap: 5px;
    margin-top: 0.8rem;
    color: #ffbd2e;
  }
  
  /* Featured Communities Section */
  .communities {
    padding: 3rem 1rem;
    background-color: var(--background-primary);
  }
  
  .communities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .community-card {
    background-color: var(--background-tertiary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .community-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .community-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .community-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .community-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex-grow: 1;
  }
  
  .community-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .community-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  /* Team Section */
  .team {
    padding: 3rem 1rem;
    background-color: var(--background-secondary);
  }
  
  .team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.25rem;
  }
  
  .team-member {
      background-color: var(--background-tertiary);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      text-align: center;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
  }
  @media (max-width: 1100px) {
  .team-grid {
  grid-template-columns: repeat(3, 1fr);
  }
  }
  
  @media (max-width: 768px) {
  .team-grid {
  grid-template-columns: repeat(2, 1fr);
  }
  }
  
  @media (max-width: 480px) {
  .team-grid {
  grid-template-columns: 1fr;
  }
  
  .team-image {
  height: 200px; /* Slightly reduced height on very small screens */
  }
  }
  
  .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .team-image {
      width: 100%;
      height: 250px;
      object-fit: contain; /* Changed from 'cover' to 'contain' */
      background-color: var(--background-tertiary); /* Adding background color */
      object-position: center; /* Changed from 'center top' to just 'center' */
      }
  
  .team-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  }
  
  .team-name {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
  }
  
  .team-role {
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  }
  
  .team-description {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  flex-grow: 1;
  /* Add ellipsis for long descriptions */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  }
  
  .team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0.8rem;
  }
  .team-social a {
  text-decoration: none; /* This removes the underline from links */
  }
  
  .social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--background-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s ease;
  }
  
  .social-icon:hover {
  background-color: var(--accent-primary);
  transform: translateY(-3px);
  }
  
  /* Support Us Section */
  .pricing {
    padding: 3rem 1rem;
    background-color: var(--background-primary);
  }
  
  .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .pricing-card {
    background-color: var(--background-tertiary);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .pricing-card.featured {
    border: 2px solid var(--accent-primary);
  }
  
  .pricing-card img {
    margin-bottom: 1.25rem;
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    position: center;
  }
  
  .pricing-card.featured::before {
   content: 'Most Popular';
   position: absolute;
   top: 15px;
   right: -30px;
   background: var(--accent-primary);
   color: white;
   padding: 5px 30px;
   font-size: 0.8rem;
   transform: rotate(45deg);
   font-weight: 600;
  }
  
  .pricing-title {
   font-size: 1.4rem;
   margin-bottom: 0.5rem;
   font-weight: 600;
  }
  
  .pricing-description {
   color: var(--text-secondary);
   margin-bottom: 1.25rem;
   font-size: 0.9rem;
  }
  
  .pricing-price {
   font-size: clamp(1.8rem, 4vw, 2.5rem);
   font-weight: 700;
   margin-bottom: 1.25rem;
   color: var(--text-primary);
  }
  
  .pricing-price span {
   font-size: 1rem;
   font-weight: 400;
   color: var(--text-secondary);
  }
  
  .pricing-features {
   list-style: none;
   margin-bottom: 1.5rem;
   text-align: left;
   flex-grow: 1;
   width: 100%;
    padding-left: 10px;
  }
  
  .pricing-features li {
   padding: 0.5rem 0;
   color: var(--text-secondary);
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 0.9rem;
  }
  
  .pricing-features li i {
   color: var(--accent-primary);
   font-size: 1.1rem;
   flex-shrink: 0;
  }
  
  .pricing-features li.disabled {
   color: var(--text-secondary);
   opacity: 0.5;
  }
  
  .pricing-features li.disabled i {
   color: var(--border-color);
  }
  
  /* About Us Section */
  .about {
   padding: 3rem 1rem;
   background-color: var(--background-secondary);
  }
  
  .about-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1rem;
  }
  
  .about-content {
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   align-items: center;
  }
  
  .about-text {
   flex: 1;
   min-width: 280px;
  }
  
  .about-title {
   font-size: clamp(1.8rem, 4vw, 2.5rem);
   margin-bottom: 1.25rem;
   position: relative;
   display: inline-block;
  }
  
  .about-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 0;
   width: 60px;
   height: 3px;
   background: var(--accent-primary);
  }
  
  .about-description {
   color: var(--text-secondary);
   margin-bottom: 1.5rem;
   font-size: 1rem;
  }
  
  .about-vision {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   margin-top: 2rem;
  }
  
  .vision-card {
   flex: 1;
   min-width: 250px;
   background-color: var(--background-tertiary);
   border-radius: 12px;
   padding: 1.25rem;
   border: 1px solid var(--border-color);
  }
  
  .vision-icon {
   font-size: 1.8rem;
   color: var(--accent-primary);
   margin-bottom: 0.8rem;
  }
  
  .vision-title {
   font-size: 1.1rem;
   margin-bottom: 0.5rem;
   font-weight: 600;
  }
  
  .vision-description {
   color: var(--text-secondary);
   font-size: 0.9rem;
  }
  
  /* Discord Connect Section */
  .discord-connect {
   padding: 3rem 1rem;
   position: relative;
   background-color: var(--background-primary);
   overflow: hidden;
  }
  
  .discord-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 1rem;
  }
  
  .discord-content {
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   align-items: center;
  }
  
  .discord-text {
   flex: 1;
   min-width: 280px;
  }
  
  .discord-widget {
   flex: 1;
   min-width: 280px;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   height: 380px;
  }
  
  .discord-title {
   font-size: clamp(1.6rem, 4vw, 2.2rem);
   margin-bottom: 1.25rem;
   position: relative;
   display: inline-block;
  }
  
  .discord-title::after {
   content: '';
   position: absolute;
   bottom: -10px;
   left: 20%;
   width: 60%;
   height: 4px;
   background: linear-gradient(90deg, transparent, #5865F2, transparent);
  }
  
  .discord-description {
   color: var(--text-secondary);
   margin-bottom: 1.5rem;
   font-size: 1rem;
  }
  
  .btn-discord {
   background: linear-gradient(135deg, #5865F2, #7289DA);
   color: white;
   box-shadow: 0 4px 12px rgba(88, 101, 242, 0.25);
  }
  
  .btn-discord:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 16px rgba(88, 101, 242, 0.35);
  }
  
  .discord-bg {
   position: absolute;
   bottom: -50px;
   right: -50px;
   width: 300px;
   height: 300px;
   background-color: rgba(88, 101, 242, 0.05);
   border-radius: 50%;
   z-index: -1;
  }
  
  /* Additional responsive fixes */
  @media (max-width: 992px) {
   .hero {
     min-height: 500px;
   }
   
   .hero-cta {
     width: 100%;
   }
   
   .terminal {
     width: 90%;
     max-width: none;
   }
  }
  
  @media (max-width: 768px) {
    .terminal {
      align-self: center;
    }
  }
  
  @media (max-width: 768px) {
   .header-container {
     justify-content: center;
     padding: 0.5rem 1rem;
   }
   
   .hero {
     min-height: 400px;
   }
   
   .hero-title {
     font-size: clamp(1.8rem, 5vw, 2.5rem);
   }
   
   .hero-subtitle {
     font-size: clamp(0.9rem, 3vw, 1.1rem);
     margin-bottom: 2rem;
   }
   
   .welcome-title, 
   .about-title, 
   .discord-title {
     font-size: clamp(1.5rem, 4vw, 2rem);
   }
   
   .section-heading {
     font-size: clamp(1.5rem, 4vw, 2rem);
     margin-bottom: 2rem;
   }
   
   .terminal {
     padding: 1rem 0.75rem;
   }
   
   .terminal-code {
     font-size: 0.8rem;
   }
   
   .testimonial-avatar {
     width: 60px;
     height: 60px;
   }
  }
  
  @media (max-width: 576px) {
   .header {
     padding: 0.8rem 0;
   }
   
   .logo-icon {
     width: 30px;
     height: 30px;
     font-size: 1rem;
   }
   
   .logo-text {
     font-size: 1.25rem;
   }
   
   .btn {
     padding: 0.5rem 1rem;
     font-size: 0.85rem;
   }
   
   .hero {
     min-height: 350px;
     padding: 2rem 0.5rem;
   }
   
   .hero-content {
     padding: 1rem 0.5rem;
   }
   
   .hero-title {
     font-size: 1.8rem;
   }
   
   .hero-subtitle {
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
   }
   
   .feature-card,
   .stat-card,
   .testimonial-card,
   .community-card,
   .team-member,
   .pricing-card,
   .vision-card {
     padding: 1.25rem 1rem;
   }
   
   .feature-icon {
     width: 40px;
     height: 40px;
     font-size: 1rem;
   }
   
   .terminal {
     margin: 1rem 0;
     padding: 0.75rem 0.5rem;
   }
   
   .testimonial-avatar {
     width: 50px;
     height: 50px;
   }
   
   .team-image,
   .community-image {
     height: 160px;
   }
   
   .discord-widget {
     height: 300px;
   }
   
   .footer {
     padding: 1.5rem 0;
   }
   
   .footer-container {
     flex-direction: column;
     text-align: center;
   }
   
   .footer-links {
     justify-content: center;
     margin-bottom: 1rem;
   }
  }
  
  @media (max-width: 380px) {
   .hero-title {
     font-size: 1.6rem;
   }
   
   .hero-subtitle {
     font-size: 0.85rem;
   }
   
   .feature-title,
   .community-name,
   .team-name,
   .pricing-title {
     font-size: 1.1rem;
   }
   
   .terminal-buttons {
     gap: 4px;
   }
   
   .terminal-button {
     width: 10px;
     height: 10px;
   }
   
   .terminal-code {
     font-size: 0.75rem;
   }
   
   .btn {
     width: 100%;
     justify-content: center;
   }
  }
  
  .floating-communities {
    position: relative;
    height: 300px;
    margin: 40px 0;
    overflow: hidden;
  }
  
  .community-circle {
    position: absolute;
    animation-name: floating;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .community-circle:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 17s;
    left: 10%;
    top: 20%;
  }
  
  .community-circle:nth-child(2) {
    animation-delay: -5s;
    animation-duration: 19s;
    left: 40%;
    top: 50%;
  }
  
  .community-circle:nth-child(3) {
    animation-delay: -9s;
    animation-duration: 18s;
    left: 70%;
    top: 30%;
  }
  
  .community-circle:nth-child(4) {
    animation-delay: -4s;
    animation-duration: 20s;
    left: 25%;
    top: 65%;
  }
  
  .community-circle:nth-child(5) {
    animation-delay: -7s;
    animation-duration: 18s;
    left: 60%;
    top: 15%;
  }
  
  .community-circle:nth-child(6) {
    animation-delay: -11s;
    animation-duration: 21s;
    left: 85%;
    top: 55%;
  }
  
  .community-circle:nth-child(7) {
    animation-delay: -3s;
    animation-duration: 19s;
    left: 15%;
    top: 40%;
  }
  
  .community-circle:nth-child(8) {
    animation-delay: -8s;
    animation-duration: 22s;
    left: 50%;
    top: 25%;
  }
  
  .community-circle:nth-child(9) {
    animation-delay: -6s;
    animation-duration: 20s;
    left: 75%;
    top: 70%;
  }
  
  .community-circle:nth-child(10) {
    animation-delay: -10s;
    animation-duration: 17s;
    left: 30%;
    top: 10%;
  }
  
  .community-circle:nth-child(11) {
    animation-delay: -1s;
    animation-duration: 19s;
    left: 90%;
    top: 40%;
  }
  
  .circle-image-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .circle-overlay h3 {
    color: white;
    font-size: 16px;
    text-align: center;
    padding: 10px;
  }
  
  /* Hover effects */
  .circle-image-container:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }
  
  .circle-image-container:hover .circle-overlay {
    opacity: 1;
  }
  
  .circle-image-container:hover .circle-image {
    transform: scale(1.1);
  }
  
  /* Random floating animation */
  @keyframes floating {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    25% {
      transform: translate(40px, 20px) rotate(5deg);
    }
    50% {
      transform: translate(20px, 40px) rotate(-5deg);
    }
    75% {
      transform: translate(-20px, 20px) rotate(3deg);
    }
    100% {
      transform: translate(0, 0) rotate(0deg);
    }
  }
  
  /* Optional: pause animation on hover */
  .community-circle:hover {
    animation-play-state: paused;
  }
  

  
  .tier-header {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 0.9em;
    color: #6b7280;
  }
  
  .pricing-features {
    margin-bottom: 20px;
  }