        .webinar-page {
            --wb-purple: #652d90;
            --wb-purple-deep: #4b1f73;
            --wb-pink: #eb008b;
            --wb-pink-deep: #c80f72;
            background: #f1eef6;
            padding: clamp(24px, 5vw, 60px) 16px;
        }

        .webinar-page * {
            box-sizing: border-box;
        }

        .webinar-page .wb-inner {
            max-width: 1140px;
            margin: 0 auto;
        }

        /* ---------- Hero card ---------- */
        .webinar-page .wb-card {
            background: #ffffff;
            border-radius: 22px;
            box-shadow: 0 18px 50px rgba(101, 45, 144, 0.12);
            padding: clamp(20px, 4vw, 40px);
            margin-bottom: 28px;
        }

        .webinar-page .wb-brand {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 18px;
        }

        .webinar-page .wb-brand strong {
            color: var(--wb-purple);
            font-size: clamp(22px, 4vw, 30px);
            font-weight: 800;
            letter-spacing: 1px;
        }

        .webinar-page .wb-brand span {
            color: #6b6b6b;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .webinar-page .wb-live {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(90deg, #5a2a86 0%, #7b3fb0 100%);
            color: #fff;
            border-radius: 12px;
            padding: 12px 20px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: clamp(13px, 2.4vw, 16px);
            margin-bottom: 22px;
        }

        .webinar-page .wb-live i {
            color: var(--wb-pink);
            font-size: 10px;
        }

        .webinar-page .wb-live em {
            color: var(--wb-pink);
            font-style: normal;
        }

        .webinar-page .wb-title {
            color: var(--wb-pink);
            font-size: clamp(30px, 6vw, 48px);
            font-weight: 800;
            font-style: italic;
            line-height: 1.15;
            margin: 0 0 16px;
        }

        .webinar-page .wb-sub {
            color: #2c2c2c;
            font-size: clamp(16px, 3vw, 20px);
            font-weight: 700;
            margin: 0 0 18px;
        }

        .webinar-page .wb-points {
            list-style: none;
            margin: 0 0 26px;
            padding: 0;
        }

        .webinar-page .wb-points li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 12px;
            color: #3a3a3a;
            font-size: clamp(15px, 2.6vw, 18px);
        }

        .webinar-page .wb-points li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 9px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--wb-pink);
        }

        .webinar-page .wb-divider {
            border: 0;
            border-top: 1px solid #e7e1ef;
            margin: 0 0 28px;
        }

        /* ---------- Speaker / QR / Date row ---------- */
        .webinar-page {
            --wb-box-h: 230px;
        }

        .webinar-page .wb-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            align-items: stretch;
        }

        .webinar-page .wb-meta>* {
            flex: 1 1 0;
            min-width: 220px;
        }

        .webinar-page .wb-speaker {
            text-align: center;
            display: flex;
            flex-direction: column;
        }

        .webinar-page .wb-speaker img {
            width: 100%;
            height: var(--wb-box-h);
            object-fit: cover;
            border-radius: 14px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
            object-position: top;
        }

        .webinar-page .wb-speaker .wb-label {
            display: block;
            margin-top: 10px;
            color: #555;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .webinar-page .wb-speaker .wb-name {
            display: block;
            color: var(--wb-pink);
            font-size: 18px;
            font-weight: 800;
        }

        .webinar-page .wb-speaker .wb-role {
            display: block;
            color: var(--wb-purple);
            font-size: 14px;
            font-weight: 600;
        }

        .webinar-page .wb-qr {
            min-height: var(--wb-box-h);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed var(--wb-purple);
            border-radius: 14px;
            background: #faf7fd;
            color: var(--wb-purple);
            font-weight: 700;
            letter-spacing: 1px;
            text-align: center;
            padding: 12px;
            overflow: hidden;
        }

        .webinar-page .wb-qr img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .webinar-page .wb-date {
            min-height: var(--wb-box-h);
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(160deg, var(--wb-pink) 0%, var(--wb-purple) 100%);
            border-radius: 16px;
            color: #fff;
            text-align: center;
            padding: 18px 14px;
            box-shadow: 0 10px 22px rgba(101, 45, 144, 0.25);
        }

        .webinar-page .wb-date .wb-day {
            font-size: clamp(34px, 7vw, 46px);
            font-weight: 800;
            line-height: 1;
        }

        .webinar-page .wb-date .wb-day sup {
            font-size: 0.45em;
        }

        .webinar-page .wb-date .wb-month {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 4px;
            margin-top: 4px;
        }

        .webinar-page .wb-date .wb-year {
            font-size: 13px;
            font-weight: 600;
            opacity: 0.9;
        }

        .webinar-page .wb-date hr {
            border: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.4);
            margin: 12px auto;
            width: 60%;
        }

        .webinar-page .wb-date .wb-time-label {
            font-size: 11px;
            letter-spacing: 3px;
            opacity: 0.85;
        }

        .webinar-page .wb-date .wb-time {
            font-size: 17px;
            font-weight: 800;
            line-height: 1.3;
        }

        /* ---------- Registration card ---------- */
        .webinar-page .wb-form-card h2 {
            color: var(--wb-purple);
            font-size: clamp(24px, 4.5vw, 34px);
            font-weight: 800;
            margin: 0 0 6px;
        }

        .webinar-page .wb-form-card .wb-form-note {
            color: #777;
            margin: 0 0 26px;
            font-size: 15px;
        }

        .webinar-page .wb-field {
            margin-bottom: 20px;
        }

        .webinar-page .wb-field label {
            display: block;
            color: var(--wb-purple);
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .webinar-page .wb-field label .req {
            color: var(--wb-pink);
        }

        .webinar-page .wb-input {
            width: 100%;
            border: 1px solid #ddd6e6;
            border-radius: 12px;
            padding: 14px 16px;
            font-size: 15px;
            color: #333;
            background: #fff;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .webinar-page textarea.wb-input {
            min-height: 90px;
            resize: vertical;
        }

        .webinar-page .wb-input:focus {
            outline: none;
            border-color: var(--wb-purple);
            box-shadow: 0 0 0 3px rgba(101, 45, 144, 0.12);
        }

        .webinar-page .wb-qsep {
            text-align: center;
            color: var(--wb-pink);
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 13px;
            margin: 30px 0 24px;
            position: relative;
        }

        .webinar-page .wb-qsep::before,
        .webinar-page .wb-qsep::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 22%;
            height: 1px;
            background: #e2dbec;
        }

        .webinar-page .wb-qsep::before {
            left: 0;
        }

        .webinar-page .wb-qsep::after {
            right: 0;
        }

        .webinar-page .wb-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .webinar-page .wb-options.wb-two .wb-option {
            flex: 1 1 calc(50% - 6px);
        }

        .webinar-page .wb-option {
            flex: 1 1 calc(25% - 9px);
            min-width: 140px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #ddd6e6;
            border-radius: 12px;
            padding: 12px 16px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .webinar-page .wb-option input {
            accent-color: var(--wb-purple);
            width: 16px;
            height: 16px;
        }

        .webinar-page .wb-option:hover {
            border-color: var(--wb-purple);
            background: #faf7fd;
        }

        .webinar-page .wb-submit {
            width: 100%;
            border: 0;
            border-radius: 14px;
            padding: 18px;
            margin-top: 8px;
            background: linear-gradient(90deg, var(--wb-pink) 0%, var(--wb-pink-deep) 100%);
            color: #fff;
            font-size: clamp(16px, 3vw, 20px);
            font-weight: 800;
            letter-spacing: 0.5px;
            cursor: pointer;
            box-shadow: 0 12px 24px rgba(200, 15, 114, 0.3);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .webinar-page .wb-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(200, 15, 114, 0.38);
        }

        .webinar-page label.error {
            color: var(--wb-pink);
            font-size: 13px;
            font-weight: 600;
            margin-top: 6px;
            display: block;
        }

        .webinar-page #wbResponseMsg {
            text-align: center;
            color: var(--wb-purple);
            font-weight: 700;
            margin-top: 14px;
        }

        .webinar-page .wb-foot {
            text-align: center;
            margin: 30px auto 0;
            color: #777;
            font-size: 14px;
        }

        .webinar-page .wb-foot a {
            color: var(--wb-pink);
            font-weight: 700;
            text-decoration: none;
        }

        .webinar-page .wb-foot .wb-copy {
            display: block;
            margin-top: 6px;
            font-size: 13px;
            opacity: 0.8;
        }

        @media (max-width: 575px) {
            .webinar-page .wb-meta {
                justify-content: center;
            }

            .webinar-page .wb-option {
                flex: 1 1 100%;
            }

            .webinar-page .wb-options.wb-two .wb-option {
                flex: 1 1 100%;
            }
        }
