body {
    display: grid;
    place-items: center;
    height: 100vh;
    background-color: #0f0f0f;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
  }
  
  h1 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: #00ff88;
    padding: 1.5rem;
    border: 2px dashed #3ff0d3;
    border-radius: 12px;
    max-width: 90vw;
    word-wrap: break-word;
    line-height: 1.2;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  h1:hover {
    background-color: #00ff88;
    color: #0f0f0f;
    cursor: pointer;
  }

  .github-corner {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    z-index: 1000;
    text-decoration: none;
  }
  
  .triangle {
    width: 0;
    height: 0;
    border-top: 100px solid #3ff0d3; /* triangle color */
    border-right: 100px solid transparent;
    position: relative;
    transform: rotate(0deg);
  }
  
  .github-icon {
    color: #0f0f0f;
    position: absolute;
    top: -84px;
    left: 10px;
    width: 42px;
    height: 38px;
  }
  
  .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .welcome-text {
    font-size: 3.5rem;
    color: #00ff88;
    font-weight: 600;
    letter-spacing: 5px;
    margin: 0;
    text-transform: uppercase;
  }
  
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 90vw;
    padding-top: 2rem;
  }
  
  .welcome-text {
    font-size: 2.4rem;
    color: #00ff88;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .tagline {
    font-size: 1rem;
    color: #b6ffe0;
    font-style: italic;
    opacity: 0.85;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.9rem 1.7rem;
    font-size: 1rem;
    font-weight: 600;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background: rgba(63, 240, 211, 0.2);
    box-shadow: 0 0 20px rgba(63, 240, 211, 0.5);
    color: #3ff0d3;
    transform: translateY(-2px);
  }
  
  .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover .arrow {
    transform: translateX(4px);
  }
  
  .theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: rgba(63, 240, 211, 0.1);
    border: 1px solid #3ff0d3;
    color: #3ff0d3;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .theme-toggle:hover {
    background-color: rgba(63, 240, 211, 0.3);
  }

  /* .dev-joke {
    position: fixed;
    top: 3.4rem;
    right: 1rem;
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
    font-family: 'Space Mono', monospace;
    opacity: 0.7;
    pointer-events: none;
  } */
  
  /* #dark-toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #00ff88;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Space Mono', monospace;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
  }
  #dark-toast.show {
    opacity: 1;
  } */
  
  .sun-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #3ff0d3;
    z-index: 999;
    transition: transform 0.3s ease;
  }
  
  .sun-toggle.shake {
    animation: shake 0.5s;
  }
  
  @keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
  }
  
  #nope-msg {
    position: fixed;
    top: 4.2rem;
    right: 1rem;
    background: rgba(63, 240, 211, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    color: #3ff0d3;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  
  #nope-msg.show {
    opacity: 1;
  }
  
  .about-gang {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    text-align: center;
    color: #d0f5e8;
    font-family: 'Inter', sans-serif;
  }
  
  .about-gang h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
  }
  
  .about-gang p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  
  .about-gang {
    padding: 4rem 2rem;
  }
  
  .why-bonk {
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
  }
  
  .why-bonk h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff88;
    font-family: 'Space Mono', monospace;
  }
  
  .bonk-cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 900px;
    margin: 0 auto;
  }
  
  .bonk-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed #3ff0d3;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
  }
  
  .bonk-card:hover {
    transform: scale(1.05);
    border-color: #00ff88;
  }
  
  .meet-gang {
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
  }
  
  .meet-gang h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #00ff88;
    font-family: 'Space Mono', monospace;
  }
  
  .gang-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .gang-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed #3ff0d3;
    border-radius: 12px;
    padding: 1.5rem;
    width: 250px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border 0.3s ease;
  }
  
  .gang-card:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
  }
  
  .gang-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid #00ff88;
  }
  
  .gang-card h3 {
    margin: 0.5rem 0 0.25rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
  }
  
  .gang-card .role {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.5rem;
  }
  
  .gang-card .power {
    font-size: 0.95rem;
    color: #3ff0d3;
  }
  
  .gang-card h3 a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .gang-card h3 a:hover {
    color: #3ff0d3; /* or any neon highlight on hover */
  }
  
  
  .footer {
    width: 100vw; /* full screen width */
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid #3ff0d3;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
    position: relative;
    left: 0;
  }
  
  .footer-links {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: #3ff0d3;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  
  .footer-links a:hover {
    opacity: 0.8;
  }
  

