:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #60a5fa;
    --background: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text: #f8fafc;
    --text-muted: #94a3b8;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--background) 0%, #1e3a8a 100%);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
  }
  
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  
  .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--accent);
  }
  
  .add-to-discord {
    background: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .add-to-discord:hover {
    background: var(--primary-dark);
    color: var(--text) !important;
    transform: translateY(-2px);
  }
  
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
  }
  
  .hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.2s backwards;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s backwards;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .btn.primary {
    background: var(--primary);
    color: var(--text);
  }
  
  .btn.primary:hover {
    background: var(--primary-dark);
  }
  
  .btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
  }
  
  .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .discord-card {
    background: var(--card-bg);
    border-radius: 0.75rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInRight 1s ease 0.6s backwards;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .discord-card-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    font-weight: 600;
  }
  
  .discord-card-content {
    padding: 1.5rem;
  }
  
  .bump-stats {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-text p {
      margin: 0 auto 2rem auto;
    }
  
    .cta-buttons {
      justify-content: center;
    }
  
    .hero-text h1 {
      font-size: 3rem;
    }
  }
  
  /* Footer Styles */
  footer {
      background: var(--card-bg);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 4rem 2rem 2rem;
      color: var(--text);
  }
  
  .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
  }
  
  .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.5rem;
      font-weight: bold;
  }
  
  .footer-logo img {
      width: 40px;
      height: 40px;
  }
  
  .footer-links {
      display: flex;
      gap: 4rem;
  }
  
  .footer-column {
      display: flex;
      flex-direction: column;
  }
  
  .footer-column h4 {
      color: var(--primary);
      margin-bottom: 1rem;
      font-size: 1rem;
  }
  
  .footer-column a {
      color: var(--text-muted);
      text-decoration: none;
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
      color: var(--primary);
  }
  
  .footer-social {
      display: flex;
      gap: 1rem;
  }
  
  .footer-social a {
      color: var(--text-muted);
      font-size: 1.5rem;
      transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
      color: var(--primary);
  }
  
  .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      color: var(--text-muted);
      font-size: 0.875rem;
  }
  
  @media (max-width: 768px) {
      .footer-content {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }
  
      .footer-links {
          flex-direction: column;
          gap: 2rem;
      }
  
      .footer-column {
          align-items: center;
      }
  }
  
  .recent-bump {
    background: var(--card-bg);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .recent-bump h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
  }
  
  .recent-bump-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .server-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .server-info {
    text-align: left;
  }
  
  .server-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
  }
  