@import url('clash-display.css');


.page-section {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 95vh;
    display: none;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
  }
  
  .page-section.active {
      display: block;
  }
  
  .background-svg {
      position: absolute;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 1;
  }
  
  .content {
      position: relative;
      z-index: 2;
      padding: 20px;
  }
  
  .about-text {
    position: flex;
    width: 61%;
    font-size: 3vmin;
    line-height: 1.5;
    z-index: 2;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    font-weight: 600;
    font-display: swap;
  }

  .custom-table {
    display: flex;
    top: 25%;
    left: 25%;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    font-size: 2.25vmin;
  }
  
  .More-to-come {
    display: flex;
    font-size: 3.75vmin;
    font-family: 'ClashDisplay-Medium', sans-serif;
    font-weight: 600;
    rotate: 6deg;

  }

  .row-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .row {
    display: grid;
    font-family: 'ClashDisplay-Medium', sans-serif;
    grid-template-columns: .6fr 2.2fr 2fr 1.2fr .8fr;
  }
  
  .row:hover {
    cursor: pointer;
  }
  
  .row:hover .highlight-on-hover {
    background-color: black;
    color: white;
    transition: all 0.2s ease;
    
  }

  .row.header {
    grid-template-columns: .6fr 2.2fr 2fr 1.2fr .8fr;
    font-family: 'ClashDisplay-Semibold', sans-serif;
    font-weight: 600;
    padding-bottom: .5vmin;
  }
  
  .cell {
    padding: 0.25vmin .5vmin;
  }
  
  .left {
    text-align: left;
  }
  
  .right {
    text-align: right;
  }

  .more-box {
    width: 200px;
    height: 45px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    rotate: 6deg;
  }
  
  /* Gradient fade at top and bottom */
  .more-box::before,
  .more-box::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 14px;
    z-index: 2;
    pointer-events: none;
  }

  
  /* Jiggle animation */
  .animate-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: jiggle 1.8s infinite cubic-bezier(.36,.07,.19,.97);
  }
  
  @keyframes jiggle {
    0%   { transform: translateY(0); }
    10%  { transform: translateY(-1px); }
    20%  { transform: translateY(1px); }
    30%  { transform: translateY(-1px); }
    40%  { transform: translateY(1px); }
    50%  { transform: translateY(-.5px);}
    60%  { transform: translateY(.5px);}
    70%  { transform: translateY(-.5px);}
    80%  { transform: translateY(.5px);}
    90%  { transform: translateY(0);}
    100% { transform: translateY(0);}
  }
  
  .more-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'ClashDisplay-Medium', sans-serif;
    font-weight: 600;
    font-size: 3.75vmin;
    color: #000000;
    text-decoration: underline;
    letter-spacing: 0.05em;
  }

  @media (max-width: 600px) {
  .custom-table {
    font-size: 1.25em;
  }
    .custom-table .cell {
    padding: 0.1em .5em; 
  }
}

@media (max-width: 600px) {
  .about-text {
    font-size: 1.8em; 
  }
}

@media (max-width: 600px) {
  .more-box {
    width: 205px;      /* Increase width */
    height: 60px;      /* Increase height */
    overflow: visible;

  }
  .more-item {
    font-size: 2.1em;  /* Make text bigger */
  }
}