/* =========
       FONTS
       ========= */
    @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap");

    /* =========
       THEME
       ========= */
    :root{
      --bg: #0b0f16;
      --panel: rgba(10, 14, 22, .72);
      --panel2: rgba(10, 14, 22, .60);
      --text: rgba(255,255,255,.92);
      --muted: rgba(255,255,255,.72);
      --gold1: #f7d37a;
      --gold2: #d9a441;
      --gold3: #8b5f18;
      --line: rgba(255,255,255,.12);

      /* ===== Image sizing controls (resize here) =====
         These control the placeholder "photos" on the right side.
         Increase/decrease to match your assets.
      */
      --speakerW: 340px;
      --speakerH: 260px;

      --groupW: 380px;
      --groupH: 250px;

      /* Background image scaling (if you use a real image) */
      --bgSize: cover;
    }

    *{box-sizing:border-box}
    body{
      margin:0;
      background: radial-gradient(1200px 700px at 70% 15%, rgba(217,164,65,.22), transparent 55%),
                  radial-gradient(900px 500px at 10% 0%, rgba(247,211,122,.12), transparent 52%),
                  var(--bg);
      color:var(--text);
      font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      padding: clamp(14px, 2vw, 28px);
      display:flex;
      justify-content:center;
    }

    /* =========
       POSTER WRAP
       ========= */
    .poster{
      width: min(980px, 100%);
      border-radius: 22px;
      overflow:hidden;
      position:relative;
      border: 1px solid rgba(255,255,255,.10);
      box-shadow:
        0 24px 70px rgba(0,0,0,.55),
        0 2px 0 rgba(255,255,255,.06) inset;
      background: #05070c;
    }

    /* Background layer (city image placeholder) */
    .poster::before{
      content:"";
      position:absolute; inset:0;
      background:
        linear-gradient(180deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.70) 35%, rgba(0,0,0,.84) 100%),
        radial-gradient(700px 380px at 70% 20%, rgba(217,164,65,.22), transparent 60%),
        radial-gradient(700px 380px at 10% 35%, rgba(247,211,122,.12), transparent 60%),
        /* background image */
        url("./img/logo.png");
      background-size: var(--bgSize);
      background-position: center;
      filter: saturate(1.02) contrast(1.05);
      transform: scale(1.02);
      z-index:0;
    }

    .poster::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(135deg, rgba(217,164,65,.10), transparent 40%),
                  linear-gradient(315deg, rgba(247,211,122,.08), transparent 45%);
      z-index:0;
      pointer-events:none;
    }

    /* Gold ribbon arcs (top and bottom) */
    .ribbon{
      position:absolute;
      left:-10%;
      width:120%;
      height:140px;
      z-index:2;
      pointer-events:none;
      background:
        radial-gradient(120% 120% at 50% 140%,
          transparent 53%,
          rgba(255,255,255,.06) 54%,
          transparent 55%),
        linear-gradient(90deg,
          transparent 0%,
          rgba(247,211,122,.28) 12%,
          rgba(217,164,65,.45) 45%,
          rgba(139,95,24,.35) 62%,
          rgba(247,211,122,.28) 88%,
          transparent 100%);
      filter: blur(.2px);
      opacity:.95;
    }
    .ribbon.top{ top:-62px; transform: rotate(-2deg); }
    .ribbon.bottom{ bottom:-70px; transform: rotate(2deg); height:160px; opacity:.9; }

    /* =========
       CONTENT GRID
       ========= */
    .content{
      position:relative;
      z-index:3;
      padding: clamp(18px, 3vw, 34px);
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: clamp(18px, 3vw, 30px);
    }

    @media (max-width: 820px){
      .content{ grid-template-columns: 1fr; }
    }

    /* =========
       HEADER / BRAND
       ========= */
    .brand{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
      margin-top: 2px;
    }

    .brandline{
      display:flex;
      align-items:center;
      gap:10px;
      color: rgba(255,255,255,.88);
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 12px;
    }

    .logo{
      width: 38px;
      height: 28px;
      display:grid;
      place-items:center;
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(247,211,122,.30), rgba(217,164,65,.16));
      border:1px solid rgba(247,211,122,.28);
      box-shadow: 0 10px 26px rgba(0,0,0,.35);
      position:relative;
    }
    /* Simple "book" icon in CSS */
    .logo::before, .logo::after{
      content:"";
      position:absolute;
      width: 16px; height: 10px;
      border:2px solid rgba(247,211,122,.85);
      border-bottom:none;
      border-radius: 3px 3px 0 0;
      top: 9px;
    }
    .logo::before{ left: 9px; transform: skewX(-8deg); }
    .logo::after{ right: 9px; transform: skewX(8deg); }

    .brandname{
      font-family: "Playfair Display", serif;
      font-size: 22px;
      font-weight: 800;
      margin:0;
      background: linear-gradient(90deg, #fff, rgba(247,211,122,.9));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      text-shadow: 0 10px 30px rgba(0,0,0,.35);
    }

    /* =========
       MAIN TITLE
       ========= */
    .title{
      text-align:center;
      margin: 12px 0 14px;
      line-height:1.03;
    }
    .title h1{
      margin:0;
      text-transform: uppercase;
      font-weight: 900;
      font-size: clamp(30px, 3.8vw, 48px);
      letter-spacing: .03em;
      background: linear-gradient(180deg, #fff 0%, rgba(247,211,122,.95) 35%, rgba(217,164,65,.95) 60%, rgba(139,95,24,.9) 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      text-shadow: 0 16px 40px rgba(0,0,0,.45);
    }

    /* location/date bar */
    .infobar{
      margin: 10px auto 0;
      width: min(560px, 100%);
      display:flex;
      align-items:center;
      justify-content:center;
      gap: 14px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(0,0,0,.42);
      border: 1px solid rgba(247,211,122,.25);
      box-shadow: 0 18px 44px rgba(0,0,0,.35);
      font-weight: 700;
      color: rgba(255,255,255,.90);
    }
    .pill{
      padding: 6px 12px;
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(247,211,122,.18), rgba(217,164,65,.10));
      border:1px solid rgba(255,255,255,.10);
      font-weight: 800;
      letter-spacing: .02em;
      white-space:nowrap;
    }
    .divider{
      width: 1px;
      height: 24px;
      background: rgba(255,255,255,.22);
    }

    /* =========
       LEFT COLUMN BODY
       ========= */
    .panel{
      background: linear-gradient(180deg, var(--panel), rgba(0,0,0,.55));
      border:1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      padding: 18px 18px 16px;
      box-shadow: 0 18px 46px rgba(0,0,0,.35);
      backdrop-filter: blur(6px);
    }
    .lead{
      margin: 0 0 14px;
      color: rgba(255,255,255,.82);
      font-size: 14px;
      line-height:1.55;
    }
    .lead strong{
      color: rgba(247,211,122,.95);
      font-weight: 900;
    }

    .sectionTitle{
      margin: 16px 0 10px;
      display:flex;
      align-items:center;
      gap:10px;
      text-transform: uppercase;
      letter-spacing:.08em;
      font-weight: 900;
      color: rgba(247,211,122,.95);
      font-size: 14px;
    }
    .sectionTitle::before{
      content:"";
      width: 34px; height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold1), var(--gold2));
      box-shadow: 0 10px 22px rgba(217,164,65,.22);
    }

    .bullets{
      display:grid;
      gap: 12px;
      margin: 10px 0 12px;
    }
    .bullet{
      display:grid;
      grid-template-columns: 42px 1fr;
      gap: 12px;
      align-items:flex-start;
      padding: 12px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .icon{
      width: 42px; height: 42px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(247,211,122,.26), rgba(217,164,65,.08));
      border:1px solid rgba(247,211,122,.22);
      display:grid;
      place-items:center;
      box-shadow: 0 16px 30px rgba(0,0,0,.25);
      font-size: 18px;
    }
    .bullet h3{
      margin: 0 0 4px;
      font-size: 14px;
      font-weight: 900;
      color: rgba(255,255,255,.92);
    }
    .bullet p{
      margin: 0;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.45;
    }
    .note{
      margin: 12px 0 0;
      color: rgba(255,255,255,.78);
      font-size: 13px;
      line-height:1.55;
    }
    .note strong{ color: rgba(247,211,122,.95); font-weight: 900; }

    /* =========
       RIGHT COLUMN (PHOTOS + BADGE + TIMER)
       ========= */
    .right{
      display:flex;
      flex-direction:column;
      gap: 14px;
      align-items: stretch;
    }

    .badge{
      position:absolute;
      top: 160px;
      right: 34px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      display:grid;
      place-items:center;
      text-align:center;
      padding: 18px;
      z-index: 4;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.14), transparent 55%),
        linear-gradient(180deg, rgba(247,211,122,.22), rgba(217,164,65,.12));
      border: 3px solid rgba(247,211,122,.55);
      box-shadow:
        0 24px 60px rgba(0,0,0,.45),
        0 0 0 8px rgba(0,0,0,.25);
    }
    @media (max-width: 820px){
      .badge{ position:relative; inset:auto; margin: 0 auto; }
    }
    .badge span{
      display:block;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-weight: 1000;
      line-height: 1.05;
      font-size: 18px;
      color: rgba(255,255,255,.95);
      text-shadow: 0 10px 24px rgba(0,0,0,.35);
    }

    /* Photo circles */
    .photoCircle{
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.66));
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 22px 58px rgba(0,0,0,.42);
      overflow:hidden;
      position:relative;
    }

    .circleFrame{
      position:relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      max-height: 360px;
      border-radius: 999px;
      margin: 2px auto 0;
      overflow:hidden;
      border: 4px solid rgba(247,211,122,.55);
      box-shadow:
        0 26px 64px rgba(0,0,0,.55),
        0 0 0 8px rgba(0,0,0,.24),
        0 2px 0 rgba(255,255,255,.08) inset;
      background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.14), transparent 55%),
        /* Speaker photo */
        url("./img/a1.png");
      background-size: cover;
      background-position: center;
      min-height: var(--speakerH); /* resize by --speakerH */
    }

    /* If you want the speaker circle to be a specific size, control it here */
    .speakerWrap{
      width: min(var(--speakerW), 100%);
      margin: 0 auto;
      padding: 14px 14px 10px;
      background: linear-gradient(180deg, var(--panel2), rgba(0,0,0,.50));
      border:1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      backdrop-filter: blur(6px);
      position:relative;
    }

    .miniCaption{
      margin: 10px auto 0;
      width: fit-content;
      padding: 7px 12px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.35);
      color: rgba(255,255,255,.80);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    /* Group photo panel */
    .groupWrap{
      padding: 14px;
      background: linear-gradient(180deg, var(--panel2), rgba(0,0,0,.50));
      border:1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      backdrop-filter: blur(6px);
      position:relative;
    }
    .groupFrame{
      width: min(var(--groupW), 100%);
      height: var(--groupH); /* resize by --groupH */
      margin: 0 auto;
      border-radius: 18px;
      overflow:hidden;
      border: 1px solid rgba(255,255,255,.14);
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.14), transparent 55%),
        /* Group photo */
        url("./img/cd.jpg");
      background-size: cover;
      background-position: center;
      box-shadow: 0 18px 44px rgba(0,0,0,.45);
    }
    .groupTag{
      margin: 10px auto 0;
      width: fit-content;
      padding: 7px 12px;
      border-radius: 999px;
      border:1px solid rgba(247,211,122,.22);
      background: linear-gradient(180deg, rgba(247,211,122,.16), rgba(217,164,65,.08));
      color: rgba(255,255,255,.90);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .03em;
    }

    /* =========
       TIMER PLACEHOLDER
       ========= */
    .timerCard{
      margin-top: 2px;
      padding: 14px 14px 12px;
      border-radius: 18px;
      border:1px solid rgba(247,211,122,.18);
      background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.62));
      box-shadow: 0 18px 46px rgba(0,0,0,.35);
      position:relative;
      overflow:hidden;
    }
    .timerCard::before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(450px 220px at 20% 20%, rgba(247,211,122,.18), transparent 55%),
                  radial-gradient(450px 220px at 80% 60%, rgba(217,164,65,.14), transparent 55%);
      pointer-events:none;
    }
    .timerHead{
      position:relative;
      display:flex;
      align-items:baseline;
      justify-content:space-between;
      gap: 10px;
      margin-bottom: 10px;
    }
    .timerHead h4{
      margin:0;
      text-transform: uppercase;
      letter-spacing:.10em;
      font-weight: 1000;
      font-size: 12px;
      color: rgba(247,211,122,.95);
    }
    .tz{
      margin:0;
      font-size: 12px;
      color: rgba(255,255,255,.70);
      font-weight: 700;
    }
    .timerGrid{
      position:relative;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .tBox{
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      padding: 10px 8px;
      text-align:center;
    }
    .tNum{
      font-size: 22px;
      font-weight: 1000;
      letter-spacing:.02em;
      color: rgba(255,255,255,.94);
    }
    .tLab{
      margin-top: 2px;
      font-size: 11px;
      color: rgba(255,255,255,.68);
      font-weight: 800;
      letter-spacing:.06em;
      text-transform: uppercase;
    }

    /* =========
       CTA + QR
       ========= */
    .ctaRow{
      display:grid;
      grid-template-columns: 1fr 150px;
      gap: 14px;
      align-items: stretch;
      margin-top: 10px;
    }
    @media (max-width: 820px){
      .ctaRow{ grid-template-columns: 1fr; }
    }

    .cta{
      border-radius: 16px;
      padding: 14px 16px;
      border:1px solid rgba(247,211,122,.22);
      background: linear-gradient(90deg, rgba(247,211,122,.22), rgba(217,164,65,.10));
      box-shadow: 0 22px 56px rgba(0,0,0,.38);
      position:relative;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      min-height: 70px;
    }
    .cta::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(320px 140px at 20% 30%, rgba(255,255,255,.14), transparent 65%),
        radial-gradient(360px 180px at 80% 60%, rgba(247,211,122,.12), transparent 65%);
      pointer-events:none;
    }
    .cta strong{
      position:relative;
      text-transform: uppercase;
      font-weight: 1000;
      letter-spacing: .06em;
      color: rgba(255,255,255,.95);
      font-size: 16px;
    }
    .cta .pill2{
      position:relative;
      padding: 10px 12px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.30);
      font-weight: 900;
      color: rgba(255,255,255,.90);
      letter-spacing:.04em;
      text-transform: uppercase;
      font-size: 12px;
      white-space:nowrap;
    }

    .qr{
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      padding: 10px;
      box-shadow: 0 18px 44px rgba(0,0,0,.35);
      display:grid;
      place-items:center;
      position:relative;
      overflow:hidden;
      min-height: 150px;
    }
    .qrBox{
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 12px;
      border:1px dashed rgba(247,211,122,.42);
      background:
        /* QR image  */
        url("./img/qr.png");
      background-size: cover;
      background-position: center;
    }
    .qrLabel{
      margin-top: 8px;
      font-size: 11px;
      color: rgba(255,255,255,.70);
      font-weight: 800;
      letter-spacing:.06em;
      text-transform: uppercase;
    }

    /* =========
       FOOTER
       ========= */
    .footer{
      position:relative;
      z-index:3;
      padding: 0 clamp(18px, 3vw, 34px) clamp(18px, 3vw, 28px);
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .footerLine{
      height:1px;
      background: linear-gradient(90deg, transparent, rgba(247,211,122,.28), transparent);
      opacity:.9;
    }
    .footerText{
      display:flex;
      flex-wrap:wrap;
      gap: 10px 14px;
      align-items:center;
      justify-content:space-between;
      color: rgba(255,255,255,.78);
      font-weight: 700;
      font-size: 12px;
    }
    .contact{
      display:flex;
      flex-wrap:wrap;
      gap: 12px;
      align-items:center;
    }
    .tag{
      display:inline-flex;
      gap:8px;
      align-items:center;
      padding: 8px 10px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.35);
    }
    .dot{
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(247,211,122,.9);
      box-shadow: 0 0 0 6px rgba(247,211,122,.12);
    }

    /* =========
       SMALL TOP "INSCRIPTION" BAR (like the poster)
       ========= */
    .signupBar{
      margin-top: 10px;
      display:flex;
      justify-content:center;
    }
    .signupBadge{
      padding: 12px 18px;
      border-radius: 999px;
      border:1px solid rgba(247,211,122,.22);
      background: linear-gradient(180deg, rgba(247,211,122,.18), rgba(217,164,65,.08));
      font-weight: 1000;
      letter-spacing:.08em;
      text-transform: uppercase;
      box-shadow: 0 18px 44px rgba(0,0,0,.40);
      color: rgba(255,255,255,.95);
    }

    /* =========================
        MOBILE OPTIMIZATION
        ========================= */

        @media (max-width: 600px) {

        body{
            padding: 10px;
        }

        .poster{
            border-radius: 16px;
        }

        /* Content spacing */
        .content{
            padding: 16px;
            gap: 16px;
        }

        /* Brand */
        .brandname{
            font-size: 18px;
        }

        .brandline{
            font-size: 11px;
            letter-spacing: .12em;
        }

        /* Title */
        .title h1{
            font-size: clamp(26px, 8vw, 36px);
            letter-spacing: .02em;
        }

        .infobar{
            flex-wrap: wrap;
            gap: 8px;
            padding: 8px 10px;
            font-size: 12px;
        }

        .divider{
            display: none;
        }

        /* Panels */
        .panel{
            padding: 14px;
        }

        .lead{
            font-size: 13px;
        }

        /* Bullet list */
        .bullet{
            grid-template-columns: 36px 1fr;
            gap: 10px;
            padding: 10px;
        }

        .icon{
            width: 36px;
            height: 36px;
            font-size: 16px;
        }

        .bullet h3{
            font-size: 13px;
        }

        .bullet p{
            font-size: 12px;
        }

        /* Right column visuals */
        .speakerWrap,
        .groupWrap{
            padding: 12px;
        }

        .circleFrame{
            min-height: 220px;
            max-height: 260px;
        }

        .groupFrame{
            height: 180px;
        }

        /* Badge */
        .badge{
            width: 140px;
            height: 140px;
            padding: 14px;
        }

        .badge span{
            font-size: 14px;
        }

        /* Timer */
        .timerGrid{
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .tNum{
            font-size: 18px;
        }

        .tLab{
            font-size: 10px;
        }

        /* CTA */
        .cta{
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 14px;
        }

        .cta strong{
            font-size: 14px;
        }

        .cta .pill2{
            align-self: flex-start;
        }

        /* QR */
        .qr{
            min-height: auto;
            padding: 12px;
        }

        .qrBox{
            max-width: 200px;
            margin: 0 auto;
        }

        /* Footer */
        .footerText{
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            font-size: 11px;
        }

        .signupBadge{
            font-size: 12px;
            padding: 10px 14px;
        }
        }
