:root {
    --bg-dark: #160044;
    --purple: #580093;
    --pink: #F80091;
    --red: #FD102A;
    --text-light: #ffffff;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: "VT323", sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    padding: 40px 24px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    width: 100%;
    max-width: 768px;
  }

  header {
    text-align: center;
    margin-bottom: 60px;
  }

  header h1 {
    font-family: 'Press Start 2P', cursive;
    color: var(--pink);
    font-size: 2rem;
    text-shadow: 0 0 5px var(--red);
  }

  .section {
    margin-bottom: 64px;
  }

  .section h2 {
    color: var(--pink);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--pink);
    padding-bottom: 8px;
  }

  .section p {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  blockquote {
    border-left: 4px solid var(--red);
    padding-left: 20px;
    color: var(--red);
    margin: 20px 0;
    font-style: italic;
  }

  .gallery-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-top: 56px;
    margin-bottom: 56px;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 24px;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .awards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
  }

  .awards img {
    height: 60px;
    object-fit: contain;
    width: 100%;
  }

  iframe {
    width: 100%;
    height: auto;
  }

  footer {
    text-align: center;
    margin-top: 80px;
    font-size: 0.8rem;
    color: #aaa;
  }