/* USE block__element--modifier BEM*/

/*Visual CSS Editor for */


.btn-apple-glass {
    /*width: 10%;*/
    min-width: 30px;
    min-height:50px;

    padding: 18px 24px;

    border-radius: 999px; /* full rounded ends */

    border: 1px solid rgba(255, 255, 255, 0.4);

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: white;
    font-weight: 500;
    font-size:25px;

    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.25);

    cursor: pointer;
  
}
.btn-apple-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 2px 2px rgba(255, 255, 255, 0.6),
        0 6px 16px rgba(0, 0, 0, 0.35);
        transition: all 0.2s ease;
}
.btn-apple-glass:active {
    background: rgba(255, 255, 255, 0.15);
    box-shadow:
        inset 0 3px 6px rgba(0, 0, 0, 0.25);
    transform: translateY(5px);
}

.btn-apple-glass:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}



/* Prevent layout jump when message text changes */
[data-role="label-message"],
[data-role="label-enjoy-test"] {
  min-height: 1.6em;
}

.columns-question {
  display: inline-block;
  text-align: center;
}

.btn-response.btn-apple-glass {
  width: 250px !important;
  min-width: 250px !important;
  display: inline-block;
  text-align: center;
}



html,
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Helvetica', sans-serif;
  font-size: 18px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0px;

  margin: 0;
  padding: 0;
  overflow-x: hidden;

}


h3 {
  font-size: 24px;
  color: yellow;
  text-align: center;
  margin: 20px 0;
  font-size: 33px;
}

/* Basic column safety (doesn't override flex widths like 30%, 40%, etc.) */
.col {
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
  /* ✅ critical for text wrapping and avoiding overflow */
}

.block {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  gap: 20px;
  padding: 10px 0;
  min-height: 70px;

}


.btn-apple-glass-V2 {
    /*width: 10%;*/
    min-width: 30px;

    padding: 8px 14px;

    border-radius: 999px; /* full rounded ends */

    border: 1px solid rgba(255, 255, 255, 0.4);

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: white;
    font-weight: 500;

    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.25);

    cursor: pointer;
    transition: all 0.2s ease;
}



.number-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: red;
  color: white;
  font-size: 16px;
  font-weight: bold;
  /* Critical for print: */
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}


.hand-group-wrapper {
    position: relative;
    background-color:transparent;
}

.hand-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10 !important;
    pointer-events: none; /* clicks pass through to blocks below */
}




/* NEW CARD LIKE PMPRO outer page spacing */

/* ===== Card ===== */

/* Reference: wp:pmpro/account-profile-section with border 2px #8915ab radius 30px */
:root {
  --color-1: #6d3082;  /* violet */
  --color-2: #f4e58a;  /* yellow */
  --color-3: #000000;  /* black */
}

.app-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 8px;

    background: black;
    border: 1px  solid #f4e58a;
    box-shadow: 15px 17px 37px 20px #f4e58a;
}

/* Card title (use a Heading block with class card-title) */
.app-card .card-title {
    margin: 0 0 18px 0;
    font-size: 34px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
}

/* Column spacing */
.app-card .wp-block-column > * {
    margin: 0 0 16px 0;
}

/* Labels (use a Paragraph block with class field-label) */
.app-card .field-label {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 300;
    color: yellow;
}

/* Inputs inside the card (works with normal <input> and <textarea>) */
.app-card input[type="text"],
.app-card input[type="email"],
.app-card input[type="number"],
.app-card textarea,
.app-card .field-input {
    
    padding: 12px 14px;
    font-size: 22px;

    border-radius: 10px;
    background: black;
    border: 1px solid white;
    color: white;
}


/* Focus */
.app-card input[type="text"]:focus,
.app-card input[type="email"]:focus,
.app-card input[type="number"]:focus,
.app-card textarea:focus,
.app-card .field-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.10);
}

/* Mobile */
@media (max-width: 780px) {
    .app-card {
        padding: 18px;
    }
    .app-card .card-title {
        font-size: 26px;
    }
}





