/* Section Styling */
.galactic-timeline {
    padding: 4rem 1rem;
    background: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-bottom: 100px;
  }
  
  /* Grid */
  .galactic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 10px;
    justify-items: center;
  }
  
  /* Year Box */
  .year-cube {
    width: 100%;
    
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, background 0.3s ease;
    box-shadow: 5px  10px 15px rgba(11, 11, 11, 0.568);
    cursor: pointer;
    position: relative;
    animation: popin 1s ease forwards;
    opacity: 0;
  }
  .icon-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* in case you have more than 2 */
    margin-top: 10px;
  }
  
  .iccon {
    width: 90px;
    height: 90px;
    object-fit: contain;
  }
  
  /* Entry Animation */
  @keyframes popin {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  /* Year text */
  .galactic-year {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  /* Trophy area */
  .trophy-bin {
    margin-top: 0.5rem;
    font-size: 1.3rem;
    animation: blink 1.5s infinite ease-in-out alternate;
  }
  
  @keyframes blink {
    0% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  /* Award Colors */
  .interstellar-2020, .interstellar-2023, .interstellar-2025 {
    
  }
  .interstellar-2021, .interstellar-2022, .interstellar-2024 {
    
  }
  
  /* Hover Effect */
  .year-cube:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255,255,255,0.2);
  }
  
  /* Modal Styling */
  .astro-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(5, 5, 20, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .astro-popup.show {
    display: flex;
    animation: fadein 0.3s ease forwards;
  }
  
  @keyframes fadein {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .astro-content {
    background: #121e2b;
    color: white;
    padding: 2rem;
    border-radius: 14px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0,255,255,0.2);
    position: relative;
  }
  
  .astro-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 2rem;
    cursor: pointer;
  }
  
  .astro-title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
  }
  
  #astroAwardList {
    list-style: none;
    padding: 0;
  }
  
  #astroAwardList li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
  }
  @media (max-width: 768px) {
    .galactic-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .wobble-chunk{
      margin-bottom: 120px;
      margin-top: -100px;
      border-radius: 1px;
      
    }
  }
  
  @media (max-width: 480px) {
    .galactic-grid {
      grid-template-columns: 1fr;
    }
  }
  