* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  

.banner {
    position: relative;
    width: 100vw;
    overflow: hidden;
  }
  
  .banner-bg {
    width: 100vw;
    display: block;
  }
  

  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    padding-top: 20%;
    width: 15rem;
    transform: translate(-50%, -50%);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .logo:hover {
    filter: brightness(1.2);
    transform: translate(-50%, -50%) scale(1.05);
  }
  
  .tagline-bar {
    background-color: #ffb8cd;
    text-align: center;
    padding: 1rem 0 1.5rem;
  }
  
  .tagline {
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #333;
  }
  /* BUTTONS */
  .buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .btn {
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 999px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    color: white;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  
  .btn.blue { background-color: #60a8fc; }
  .btn.pink { background-color: #fc608f; }
  .btn.green { background-color: #6ccc92; }
  .three-columns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url('assets/pattern.png');
    background-repeat: repeat;
    padding: 2rem 1rem;
  }
  .two-columns {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url('assets/pattern.png');
    background-repeat: repeat;
    padding: 2rem 1rem;
  }
  .col {
    text-align: center;
  }
  
  .circle-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.8rem;
  }
   .text-img-section {
    flex-direction: column; 
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  
  .text-col {
    flex: 1 1 20em;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 200em;
  }
 
  .img-col img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
  }
  .split-show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url('pattern2.png');
    background-repeat: repeat;
    padding: 3rem 8%;
    gap: 2rem;
  }
  
  .half {
    flex: 1;
    text-align: center;
  }
  
  .section-header {
    display: inline-block;
    background-color: #fc608f;
    color: white;
    border-radius: 999px;
    padding: 0.4rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
  }
  #countdown {
    color: #fc608f;
    font-size: xx-large;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 999px; 
    padding: 0.4rem 1.5rem;
    display: inline-block;
  }
  
  
  .slideshow img {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

  body {
    margin: 0;
    background-color: #fffafc;
    font-family: 'Poppins', sans-serif;
    color: #333;
  }
  
  
  .nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    margin: 0;
  }
  
  .nav-list li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
  }
  
  
  .page-title {
    text-align: center;
    font-size: 2rem;
    color: #fc608f;
    margin: 2rem 0;
  }
  
  
  .gameplay-features {
    background-image: url('pattern.png');
    background-repeat: repeat;
    padding: 3rem 1rem;
  }
  
  .gameplay-features h3 {
    color: #fc608f;
    margin-bottom: 0.6rem;
  }
  
  .gameplay-features p {
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.5;
  }
  
  .split-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 10%;
    
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .cta-left {
    flex: 1;
    text-align: left;
    min-width: 250px;
  }
  
  .cta-left h2 {
    color: #fc608f;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .cta-right {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .cta-right img {
    max-width: 280px;
    width: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .cta-right img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  
  /* mobile friendly */
  @media (max-width: 768px) {
    .split-cta {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .cta-buttons {
      align-items: center;
    }
  
    .cta-right img {
      margin-bottom: 1.5rem;
    }
  }

  .character-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 3rem 8%;
    background-color: #ffffff;
    flex-wrap: wrap;
  }
  
  .character-row.alt {
    background-image: url('pattern.png');
    background-repeat: repeat;
  }
  
  .character-side {
    flex: 1;
    text-align: center;
    min-width: 220px;
  }
  
  .char-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffb8cd;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .char-img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
  }
  
  .character-bio {
    flex: 2;
    text-align: left;
    min-width: 280px;
  }
  
  .character-bio h2 {
    color: #fc608f;
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }
  
  .character-bio .tagline {
    font-weight: 600;
    color: #6ccc92;
    margin-bottom: 0.6rem;
  }
  
  .character-bio .quote {
    font-style: italic;
    color: #60a8fc;
    margin-bottom: 1rem;
  }
  
  .character-bio p {
    line-height: 1.6;
  }
  
  
  .trait-table {
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.9rem;
    width: 90%;
    max-width: 260px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px #00000010;
  }
  
  .trait-table th, .trait-table td {
    padding: 0.5rem 0.8rem;
    text-align: left;
  }
  
  .trait-table th {
    background-color: #ffb8cd;
    color: #333;
    width: 40%;
  }
  
  .trait-table td {
    background-color: #fffafc;
  }
  
  /* Mobile Friendly */
  @media (max-width: 900px) {
    .character-row {
      flex-direction: column;
      text-align: center;
    }
  
    .character-bio {
      text-align: center;
    }
  }
  
/*  Desktop */
@media (min-width: 768px) {

    .text-img-section {
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2rem 10%;
        gap: 1rem;
        min-height: max-content;
      }

  
  .text-col p {
    font-size: 1.1rem;
    max-width: 600px;
  }

  
  .tagline {
    font-size: 1.4rem;
  }

  
  .three-columns {
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .circle-img {
    width: 220px;
    height: 220px;
  }

  .col .btn {
    font-size: 1.05rem;
    padding: 0.8rem 2rem;
  }

  .text-col {
    max-width: 450px;
  }

  
  .img-col img {
    max-width: 500px;
  }

  
  .slideshow img {
    max-width: 420px;
  }
}

@media (min-width: 1200px) {
  .logo {
    width: 400px;
  }

  .circle-img {
    width: 260px;
    height: 260px;
  }

  .text-col p {
    font-size: 1.15rem;
    line-height: 1.8;
  }
}


 
 .dj-disc-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/pattern.png');
    background-repeat: repeat;
  }

  
  .disc-wrapper {
    position: relative;
    width: min(80%, 500px);
    aspect-ratio: 1;
  }

  
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  
  .disc {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }

  
  .spinning-parts {
    position: absolute;
    inset: 0;
    animation: spin 20s linear infinite;
  }

  
  .disc-border {
    position: absolute;
    inset: -3%;
    border-radius: 50%;
    background: white;
    z-index: 1;
  }

  
  .disc-main {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #FF69B4;
    z-index: 2;
  }

  
  .disc-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 35%;
    border-radius: 50%;
    background: #fffca3;
    z-index: 3;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  
  .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 4;
    overflow: hidden;
  }

  
  .highlight::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 30%;
    height: 8%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    transform: rotate(-25deg);
  }

  
  .highlight::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 20%;
    height: 5%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    transform: rotate(-25deg);
  }



  
  .button-container {
    position: absolute;
    inset: 0;
    z-index: 5;
  }

  
  .feature-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28%;
    height: 16%;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 1.8vw, 18px);
    background: #B4E7FF;
    color: #333333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  
  .feature-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  }

  .feature-button:active {
    transform: translate(-50%, -50%) scale(0.95);
  }

  
  .info-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 30%;
    background: white;
    border-radius: 20px;
    padding: 8%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
  }

  
  .info-window.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  
  .info-title {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    color: #333333;
  }

  
  .info-desc {
    font-size: clamp(10px, 1.3vw, 14px);
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    color: #333333;
  }

  
  .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: clamp(16px, 2vw, 24px);
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #FF69B4;
  }

  .close-btn:hover {
    transform: scale(1.2);
  }

  
  .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(16px, 2.5vw, 28px);
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-align: center;
    z-index: 4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    color: #333333;
  }
  .iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: auto;
  }
