/* ===== BASE STYLES ===== */
:root {
    /* Dark Minecraft Color Palette */
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --input-bg: #2d2d2d;
    --border-color: #333;
    
    /* Vibrant Accents */
    --grass: #5cdb95;
    --diamond: #00ffff;
    --gold: #ffd700;
    --redstone: #ff5555;
    --emerald: #00fa9a;
    --nether: #9400d3;
  }
  
  /* ===== LAYOUT ===== */
  body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .home-background {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('https://images.unsplash.com/photo-1607513746994-51f730a44832?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover fixed;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
  }
  
  /* ===== NAVIGATION BAR ===== */
  .navbar {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo {
    color: var(--grass);
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  
  .nav-logo:hover {
    color: var(--diamond);
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
  }
  
  .nav-link:hover {
    color: var(--diamond);
  }
  
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  @keyframes pulse {
    0% {
      transform: translateX(-50%) scale(1);
      box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
      transform: translateX(-50%) scale(1.2);
      box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
      transform: translateX(-50%) scale(1);
      box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
  }
  
  .nav-link.active {
    color: var(--gold);
  }
  
  /* ===== MAIN CONTENT ===== */
  .page-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* ===== DOWNLOAD TABLES ===== */
  .download-section {
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow: hidden;
  }
  
  .section-header {
    background: linear-gradient(to right, var(--dark-bg), var(--darker-bg));
    color: var(--grass);
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .download-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .download-table th {
    background: var(--darker-bg);
    padding: 1rem;
    text-align: left;
    color: var(--diamond);
    font-weight: 500;
  }
  
  .download-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: #ccc;
  }
  
  .download-table tr:last-child td {
    border-bottom: none;
  }
  
  .download-table tr:hover {
    background: rgba(92, 219, 149, 0.05);
  }
  
  .version {
    font-family: monospace;
    color: var(--emerald);
    font-weight: bold;
  }
  
  .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, var(--grass), var(--emerald));
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
  }
  
  .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(92, 219, 149, 0.3);
  }
  
  .file-size {
    color: #aaa;
    font-size: 0.9rem;
  }
  
  .release-date {
    color: #aaa;
  }
  
  .release-notes {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--diamond);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .release-notes:hover {
    color: var(--gold);
  }
  
  /* ===== FOOTER ===== */
  .footer {
    background: #0a0a0a;
    padding: 2rem;
    margin-top: 3rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  
  .footer-column h3 {
    color: var(--grass);
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  .footer-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: var(--grass);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: var(--diamond);
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s;
  }
  
  .footer-social a:hover {
    color: var(--gold);
  }
  
  .footer-copyright {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
  }
  
  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 768px) {
    .nav-container {
      flex-direction: column;
      gap: 1rem;
    }
  
    .nav-links {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .download-table {
      display: block;
      overflow-x: auto;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-links {
      align-items: center;
    }
  
    .footer-social {
      justify-content: center;
    }
  }