    :root {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color-scheme: dark light;
    }

    body {
      margin: 0;
      padding: 0;
      background: #0b0b11;
      color: #f5f5f5;
    }

    a {
      color: #ffd54f;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    header {
      padding: 1.25rem 1.5rem 1.75rem;
/*      padding: 2.5rem 1.5rem; */
/*      text-align: center;*/
      background: radial-gradient(circle at top, #283593, #0b0b11);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .header-inner {
        max-width: 1000px;
        margin: 0 auto;
        }
 
        nav {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 1.25rem;
          gap: 1rem;
          flex-wrap: wrap;
        }
    
        .brand {
          font-weight: 600;
          letter-spacing: 0.06em;
          text-transform: uppercase;
          font-size: 0.9rem;
          color: #c5cae9;
        }
    
        .nav-links {
          display: flex;
          gap: 1rem;
          font-size: 0.9rem;
        }
    
        .nav-links a {
          color: #e8eaf6;
          opacity: 0.9;
        }
    
        .nav-links a.active {
          border-bottom: 2px solid #ffd54f;
          padding-bottom: 0.1rem;
        }
    
    header h1 {
      margin: 0 0 0.5rem;
      font-size: clamp(2rem, 3vw, 2.8rem);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    header p {
      margin: 0.2rem 0;
      color: #c5cae9;
      max-width: 34rem;
/*      margin-inline: auto;*/
    }

    .tagline-small {
      font-size: 0.9rem;
      color: #9fa8da;
      margin-bottom: 0.4rem;
    }

    main {
      max-width: 1000px;
      margin: 0 auto;
      padding: 1.5rem;
    }
    
    h2 {
      font-size: 1.1rem;
      margin-top: 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding-bottom: 0.25rem;
    }

    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .countdown-card {
      background: linear-gradient(145deg, #1c1c27, #11111a);
      border-radius: 1rem;
      padding: 1.5rem;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .countdown-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #9fa8da;
    }

    .countdown-card h2 {
      margin: 0;
      font-size: 1.4rem;
    }

    .countdown-time {
      font-family: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size: 1.2rem;
      font-weight: 600;
      padding: 0.75rem 0.9rem;
      border-radius: 0.75rem;
      background: rgba(15, 15, 25, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.06);
      display: inline-block;
      min-width: 11.5rem;
    }

    .countdown-date {
      font-size: 0.85rem;
      color: #b0bec5;
    }

    section {
      margin-bottom: 2rem;
    }
    
    section h2 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding-bottom: 0.25rem;
    }
    
 /*   section h3 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding-bottom: 0.25rem;
    }*/

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 0.5rem;
      font-size: 0.9rem;
    }

    th, td {
      padding: 0.6rem 0.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      text-align: left;
    }

    th {
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #b0bec5;
    }
    
    
    .event-list {
      list-style: none;
      padding: 0;
      margin: 0.5rem 0 0;
    }

    .event-list li {
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.95rem;
    }

    .event-title {
      font-weight: 600;
    }

    .event-meta {
      font-size: 0.85rem;
      color: #b0bec5;
    }
    
    
    .placeholder {
      font-size: 0.95rem;
      color: #b0bec5;
    }

    .two-column {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
      gap: 1.75rem;
    }

    @media (max-width: 768px) {
      .two-column {
        grid-template-columns: 1fr;
      }
    }

    footer {
      text-align: center;
      padding: 1.5rem;
      font-size: 0.85rem;
      color: #78909c;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: 2rem;
    }
    
    .event-form {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      max-width: 480px;
    }

    .event-form label {
      font-size: 0.9rem;
      color: #cfd8dc;
    }

    .event-form input,
    .event-form textarea {
      padding: 0.45rem 0.5rem;
      border-radius: 0.4rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(10, 10, 18, 0.9);
      color: #eceff1;
      font: inherit;
    }

    .event-form input:focus,
    .event-form textarea:focus {
      outline: 1px solid #ffd54f;
      border-color: #ffd54f;
    }

    .event-form button {
      margin-top: 0.5rem;
      padding: 0.55rem 0.9rem;
      border-radius: 0.5rem;
      border: none;
      font: inherit;
      cursor: pointer;
      background: #ffd54f;
      color: #212121;
      font-weight: 600;
    }

    .form-status {
      margin-top: 0.6rem;
      font-size: 0.9rem;
      color: #b0bec5;
    }
    
    /* Disclosure wrapper */
    .event-disclosure {
      border-radius: 0.75rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      padding: 0.75rem 1rem;
      background: rgba(10, 10, 18, 0.9);
      margin-top: 0.5rem;
    }

    .event-disclosure > summary {
      cursor: pointer;
      list-style: none;
      font-weight: 500;
      color: #eceff1;
    }

    .event-disclosure > summary::-webkit-details-marker {
      display: none;
    }

    .event-disclosure > summary::before {
      content: "▸";
      display: inline-block;
      margin-right: 0.45rem;
      transform: translateY(-1px);
      transition: transform 0.15s ease;
      font-size: 0.8rem;
    }

    .event-disclosure[open] > summary::before {
      transform: rotate(90deg) translateX(1px);
    }

    .event-help {
      font-size: 0.9rem;
      color: #b0bec5;
      margin: 0.6rem 0 0.8rem;
    }

    /* Compact two-column form */
    .event-form {
      margin-top: 0.3rem;
    }

    .two-column-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 0.6rem 1rem;
      max-width: 720px;
    }

    .form-row {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      font-size: 0.9rem;
    }

    .form-row--full {
      grid-column: 1 / -1; /* full width row */
    }

    .event-form label {
      color: #cfd8dc;
    }

    .event-form input,
    .event-form textarea {
      padding: 0.4rem 0.5rem;
      border-radius: 0.4rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(5, 5, 12, 0.95);
      color: #eceff1;
      font: inherit;
      font-size: 0.9rem;
    }

    .event-form input:focus,
    .event-form textarea:focus {
      outline: 1px solid #ffd54f;
      border-color: #ffd54f;
    }

    .event-form button {
      align-self: flex-start;
      padding: 0.45rem 0.9rem;
      border-radius: 0.5rem;
      border: none;
      font: inherit;
      cursor: pointer;
      background: #ffd54f;
      color: #212121;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .form-status {
      margin-top: 0.6rem;
      font-size: 0.9rem;
      color: #b0bec5;
    }

    /* Mobile: stack to single column */
    @media (max-width: 640px) {
      .two-column-form {
        grid-template-columns: minmax(0, 1fr);
      }
    }
    
    .event-table-wrapper {
      margin-top: 0.5rem;
      overflow-x: auto;
    }

    .event-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
      min-width: 480px;
    }

    .event-table thead {
      background: rgba(255, 255, 255, 0.03);
    }

    .event-table th,
    .event-table td {
      padding: 0.55rem 0.4rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      text-align: left;
    }

    .event-table th {
      font-weight: 600;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #b0bec5;
    }

    .event-date {
      white-space: nowrap;
      width: 0.1%;
    }

    .event-name a {
      color: #ffe082;
      text-decoration: none;
    }

    .event-name a:hover {
      text-decoration: underline;
    }

    .event-table tr:hover td {
      background: rgba(255, 255, 255, 0.04);
    }
    
    .share-links {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      margin-top: 1rem;
    }

    .share-links span {
      color: #b0bec5;
    }

    .share-icon {
      display: inline-flex;
      width: 32px;
      height: 32px;
      color: #777777;
      opacity: 0.8;
      transition: opacity 0.15s ease, transform 0.1s ease;
    }

    .share-icon:hover {
      opacity: 1;
      transform: scale(1.1);
    }

    .share-icon svg {
      width: 100%;
      height: 100%;
    }
    
    