  .gc-wrap {
    background:#0D0D0D;
    border-radius:18px;
    overflow:hidden;
    font-family:'Jost',sans-serif;
    position:relative;
    min-height:680px;
    display:flex;
    flex-direction:column;
  }

  .gc-confetti-layer {
    position:absolute;
    inset:0;
    pointer-events:none;
    overflow:hidden;
    z-index:1;
  }

  .gc-confetti-layer canvas {
    width:100%;
    height:100%;
  }

  .gc-body {
    flex:1;
    position:relative;
    z-index:5;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding: 30px 28px;
    text-align:center;
  }



  .gc-eyebrow {
    font-size: 11px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#C9A84C;
    margin-bottom:16px;
    display:flex;align-items:center;gap:20px;
  }
  .gc-eyebrow::before,.gc-eyebrow::after{content:'';display:block;width:28px;height:0.5px;background:#C9A84C;opacity:0.5;}

  .gc-name {
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    font-weight:500;
    color:#F5F5F0;
    line-height:1.1;
    margin-bottom:7px;
    letter-spacing: 1px;
  }
  .gc-name em{color:#C9A84C;font-style:italic;}

  .gc-school {
    font-size:12px;
    font-weight:700;
    letter-spacing: 2.5px;
    text-transform:uppercase;
    color:rgb(245 245 240 / 70%);
    margin-bottom:28px;
  }

  .gc-divider {
    display:flex;align-items:center;gap:20px;
    margin-bottom:28px;width:100%;max-width:360px;
  }
  .gc-divider-line{flex:1;height:0.5px;background:rgba(201,168,76,0.2);}
  .gc-divider-dot{width:4px;height:4px;border-radius:50%;background:#C9A84C;opacity:0.6;}

  .gc-message-card {
    background:#111111;
    border:0.5px solid rgb(201 168 76 / 85%);
    border-radius:16px;
    padding:28px 32px;
    max-width:420px;
    width:100%;
    margin-bottom:28px;
    text-align:left;
  }

  .gc-quote-mark {
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    font-weight:600;
    color:#C9A84C;
    opacity:0.7;
    line-height:.7;
    margin-bottom: -7px;
  }

  .gc-message {
    font-family:'Cormorant Garamond',serif;
    font-size:19px;
    font-weight:300;
    font-style:italic;
    color:#F5F5F0;
    line-height:1.6;
    margin-bottom:12px;
  }

  .gc-from {
    font-size:11px;
    font-weight:800;
    letter-spacing: 2px;
    color:rgba(201,168,76,0.6);
    text-transform:uppercase;
  }

  .gc-achievements {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    max-width:420px;
    width:100%;
    margin-bottom:28px;
  }

  .gc-ach {
    background:#111;
    border:0.5px solid rgba(201,168,76,0.15);
    border-radius:10px;
    padding:14px 10px;
    text-align:center;
  }
  .gc-ach-icon {
    font-size: 18px;
    margin-bottom: 6px;
    color: #C9A84C;
  }

  .gc-ach-label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.4);
    margin-top: 4px;
  }

  .gc-ach-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #C9A84C;
    line-height: 1.2;
  }

  .gc-btn-row{display:flex;gap:10px;max-width:420px;width:100%;}

  .gc-btn-primary {
    flex: 1;
    background: #C9A84C;
    color: #0D0D0D;
    border: none;
    border-radius: 8px;
    padding: 13px 0;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .gc-btn-primary:hover {
    background: #dfc068;
    transform: translateY(-1px);
  }

  .gc-btn-primary:active {
    transform: scale(0.98);
  }

  .gc-btn-ghost {
    flex:1;
    background:transparent;
    color:rgba(245,245,240,0.5);
    border:0.5px solid rgba(245,245,240,0.15);
    border-radius:8px;
    padding:13px 0;
    font-family:'Jost',sans-serif;
    font-size:12px;
    font-weight:400;
    letter-spacing:0.1em;
    text-transform:uppercase;
    cursor:pointer;
    transition:all 0.2s;
  }
  .gc-btn-ghost:hover{border-color:rgba(201,168,76,0.4);color:#C9A84C;}


    .gc-toast {
      position: absolute;
      top: 150px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: #C9A84C;
      color: #0D0D0D;
      font-family: 'Jost', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      padding: 10px 24px;
      border-radius: 100px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
      z-index: 20;
      pointer-events: none;
    }
  
    .gc-toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }


    .sch{
      font-size: 15px;
      color: rgb(196, 196, 196);
    }