* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.pulse-login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245,179,1,0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(59,130,246,0.18), transparent 34%),
        #020617;
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pulse-entry {
    width: 100%;
    max-width: 780px;
    text-align: center;
}

.pulse-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.pulse-logo-text {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #f5b301;
}

.pulse-brand span {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: bold;
}

.pulse-entry h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
}

.pulse-subtitle {
    margin: 12px auto 24px auto;
    color: #cbd5e1;
    font-size: 17px;
    max-width: 560px;
}

.pulse-event-card {
    margin: 0 auto 24px auto;
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 14px;
    border-radius: 18px;
}

.pulse-event-card img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
}

.pulse-event-card strong {
    display: block;
    font-size: 18px;
}

.pulse-event-card small {
    display: block;
    color: #cbd5e1;
    margin-top: 4px;
}

.pulse-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pulse-access-card {
    min-height: 190px;
    text-decoration: none;
    color: #f8fafc;
    background: rgba(15,23,42,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transition: transform 0.15s ease, background 0.15s ease;
}

.pulse-access-card:hover {
    transform: translateY(-4px);
    background: rgba(30,41,59,0.95);
}

.pulse-access-card span {
    font-size: 42px;
}

.pulse-access-card strong {
    font-size: 19px;
}

.pulse-access-card small {
    color: #cbd5e1;
    line-height: 1.35;
}

.pulse-admin {
    border-color: rgba(245,179,1,0.45);
}

.pulse-footer {
    margin-top: 26px;
    color: #94a3b8;
    font-size: 14px;
}

.pulse-footer strong {
    color: #f8fafc;
}

@media (max-width: 760px) {
    .pulse-login-body {
        align-items: flex-start;
        padding: 18px;
    }

    .pulse-logo-text {
        font-size: 36px;
    }

    .pulse-entry h1 {
        font-size: 27px;
    }

    .pulse-subtitle {
        font-size: 16px;
    }

    .pulse-access-grid {
        grid-template-columns: 1fr;
    }

    .pulse-access-card {
        min-height: 130px;
        padding: 20px;
    }

    .pulse-access-card span {
        font-size: 36px;
    }

    .pulse-event-card {
        align-items: center;
    }
}

.pulse-login-card {
    width: 100%;
    max-width: 440px;
    background: rgba(15,23,42,0.94);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    text-align: center;
}

.pulse-back-link {
    display: inline-block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 18px;
    font-size: 14px;
}

.pulse-back-link:hover {
    color: #f5b301;
}

.pulse-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-top: 22px;
}

.pulse-form label {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: bold;
}

.pulse-form input:not([type="color"]),
.pulse-form select,
.pulse-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.18);
    background: #020617;
    color: #f8fafc;
    padding: 15px 16px;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
}

.pulse-form input:focus,
.pulse-form select:focus,
.pulse-form textarea:focus {
    border-color: #f5b301;
    box-shadow: 0 0 0 3px rgba(245,179,1,0.18);
}

.pulse-btn-primary {
    margin-top: 12px;
    width: 100%;
    border: none;
    background: #f5b301;
    color: #111827;
    padding: 15px 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.pulse-btn-primary:hover {
    filter: brightness(1.05);
}

.pulse-alert {
    margin-top: 18px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(239,68,68,0.18);
    color: #fecaca;
    border: 1px solid rgba(239,68,68,0.28);
}

@media (max-width: 520px) {
    .pulse-login-card {
        padding: 22px;
        border-radius: 22px;
    }

    .pulse-form input,
    .pulse-form select,
    .pulse-form textarea,
    .pulse-btn-primary {
        min-height: 52px;
        font-size: 16px;
    }
}

.pulse-participant-card {
    width: 100%;
    max-width: 470px;
    background: rgba(15,23,42,0.94);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    text-align: center;
}

.pulse-participant-card h1 {
    margin: 8px 0 8px 0;
    font-size: 30px;
    line-height: 1.15;
}

.pulse-qr-box {
    width: 100%;
    max-width: 300px;
    margin: 24px auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.pulse-qr-box img,
.pulse-qr-box canvas {
    max-width: 100%;
    height: auto;
}

.pulse-participant-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.pulse-btn-secondary,
.pulse-btn-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: bold;
    min-height: 50px;
}

.pulse-btn-secondary {
    background: #f5b301;
    color: #111827;
}

.pulse-btn-outline {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.22);
}

@media (max-width: 520px) {
    .pulse-participant-card {
        padding: 22px;
        border-radius: 24px;
    }

    .pulse-participant-card h1 {
        font-size: 25px;
    }

    .pulse-qr-box {
        padding: 18px;
    }

    .pulse-participant-actions {
        flex-direction: column;
    }
}

.pulse-event-logo-login {
    margin: 12px auto 18px auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
    max-width: 240px;
}

.pulse-event-logo-login img {
    display: block;
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    margin: 0 auto;
}

.pulse-admin-body {
    margin: 0;
    background: #020617;
    color: #f8fafc;
}

.pulse-admin-shell {
    min-height: 100vh;
    display: flex;
}

.pulse-sidebar {
    width: 260px;
    background: rgba(15,23,42,0.98);
    border-right: 1px solid rgba(255,255,255,0.12);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.pulse-sidebar-brand strong {
    display: block;
    color: #f5b301;
    font-size: 28px;
    letter-spacing: 3px;
}

.pulse-sidebar-brand span {
    color: #cbd5e1;
    font-size: 13px;
}

.pulse-sidebar-user {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
}

.pulse-sidebar-user small {
    display: block;
    color: #94a3b8;
    margin-bottom: 4px;
}

.pulse-sidebar-user strong {
    display: block;
    font-size: 15px;
}

.pulse-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pulse-sidebar-nav a,
.pulse-sidebar-footer a {
    color: #e5e7eb;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 12px;
    display: block;
}

.pulse-sidebar-nav a:hover,
.pulse-sidebar-footer a:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.pulse-sidebar-footer {
    margin-top: auto;
}

.pulse-admin-main {
    flex: 1;
    padding: 28px;
    overflow-x: auto;
}

.pulse-page-header {
    margin-bottom: 24px;
}

.pulse-page-header span {
    color: #f5b301;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
}

.pulse-page-header h1 {
    margin: 8px 0 6px 0;
    font-size: 32px;
}

.pulse-page-header p {
    margin: 0;
    color: #cbd5e1;
}

.pulse-admin-card {
    background: rgba(15,23,42,0.94);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

@media (max-width: 860px) {
    .pulse-admin-shell {
        display: block;
    }

    .pulse-sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .pulse-sidebar-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .pulse-admin-main {
        padding: 18px;
    }
}

.pulse-empty-state {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.pulse-empty-icon {
    font-size: 54px;
    margin-bottom: 16px;
}

.pulse-empty-state h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
}

.pulse-empty-state p {
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 24px;
}

.pulse-btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    max-width: 260px;
}

.pulse-sidebar-event {
    padding: 14px;
    border-radius: 16px;
    background: rgba(245,179,1,0.08);
    border: 1px solid rgba(245,179,1,0.18);
}

.pulse-sidebar-event label {
    display: block;
    color: #f5b301;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 8px;
}

.pulse-sidebar-event select {
    width: 100%;
    background: #020617;
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 12px;
    padding: 11px;
    font-size: 14px;
}

.pulse-checkbox {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: #e5e7eb;
}

.pulse-checkbox input {
    width: auto !important;
    min-height: auto !important;
}

.pulse-prize-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pulse-prize-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 14px;
}

.pulse-prize-item img,
.pulse-prize-placeholder {
    width: 92px;
    height: 76px;
    flex: 0 0 92px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 14px;
    padding: 8px;
}

.pulse-prize-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.pulse-prize-info {
    flex: 1;
}

.pulse-prize-title {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 8px;
}

.pulse-prize-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.pulse-prize-meta span {
    background: rgba(245,179,1,0.12);
    color: #fde68a;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 12px;
}

.pulse-prize-info p {
    color: #cbd5e1;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

@media (max-width: 720px) {
    .pulse-prize-item {
        flex-direction: column;
    }

    .pulse-prize-item img,
    .pulse-prize-placeholder {
        width: 100%;
        height: 130px;
        flex: none;
    }
}

.pulse-stand-page {
    width: 100%;
    max-width: 1050px;
}

.pulse-stand-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.pulse-stand-actions a {
    max-width: 220px;
}

.pulse-stand-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.pulse-stat-card {
    background: rgba(15,23,42,0.94);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.pulse-stat-card span {
    display: block;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.pulse-stat-card strong {
    display: block;
    color: #f5b301;
    font-size: 44px;
}

.pulse-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.pulse-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}

.pulse-table th,
.pulse-table td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    text-align: left;
}

.pulse-table th {
    color: #f5b301;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

@media (max-width: 720px) {
    .pulse-stand-cards {
        grid-template-columns: 1fr;
    }

    .pulse-stand-actions {
        flex-direction: column;
    }

    .pulse-stand-actions a {
        max-width: none;
        width: 100%;
    }
}

.pulse-scanner-page {
    width: 100%;
    max-width: 760px;
}

.pulse-scanner-card {
    background: rgba(15,23,42,0.94);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

#reader {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    color: #111827;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
}

#reader video {
    border-radius: 14px;
}

#reader button {
    border: none;
    background: #f5b301;
    color: #111827;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

#reader select {
    padding: 10px;
    border-radius: 10px;
    margin: 8px;
}

.pulse-scan-result {
    margin-top: 18px;
}

.pulse-scan-box {
    padding: 18px;
    border-radius: 18px;
    margin-top: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.14);
}

.pulse-scan-box h2 {
    margin: 0 0 8px 0;
}

.pulse-scan-box strong {
    display: block;
    font-size: 24px;
}

.pulse-scan-box small {
    display: block;
    color: #cbd5e1;
    margin-top: 6px;
}

.pulse-scan-box.success {
    background: rgba(34,197,94,0.18);
    color: #bbf7d0;
}

.pulse-scan-box.warning {
    background: rgba(245,179,1,0.18);
    color: #fde68a;
}

.pulse-scan-box.gold {
    background: rgba(245,179,1,0.24);
    color: #fff7cc;
}

.pulse-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.pulse-stat-card small {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
}

.pulse-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pulse-shortcuts-grid a {
    display: flex;
    align-items: center;
    min-height: 58px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f8fafc;
    text-decoration: none;
    border-radius: 14px;
    padding: 14px;
    font-weight: bold;
}

.pulse-shortcuts-grid a:hover {
    background: rgba(245,179,1,0.12);
    border-color: rgba(245,179,1,0.28);
}

@media (max-width: 1100px) {
    .pulse-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pulse-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .pulse-dashboard-grid,
    .pulse-shortcuts-grid {
        grid-template-columns: 1fr;
    }
}

.pulse-sidebar-section {
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    padding: 14px 10px 4px 10px;
}

.pulse-sidebar {
    overflow-y: auto;
}

.pulse-table-logo {
    max-width: 82px;
    max-height: 54px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px;
}

.pulse-table-compact th,
.pulse-table-compact td {
    font-size: 13px;
    padding: 10px 11px;
}

.pulse-status {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.pulse-status-ok {
    background: rgba(34,197,94,0.18);
    color: #bbf7d0;
}

.pulse-status-pending {
    background: rgba(245,179,1,0.18);
    color: #fde68a;
}

.pulse-table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pulse-table-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 7px 10px;
    font-size: 13px;
    font-weight: bold;
}

.pulse-table-actions a:hover {
    background: rgba(245,179,1,0.14);
    border-color: rgba(245,179,1,0.28);
}

.pulse-admin-two-columns {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: 22px;
    align-items: flex-start;
}

.pulse-participant-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 720px;
    overflow-y: auto;
    padding-right: 4px;
}

.pulse-list-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 12px;
}

.pulse-list-item > div > strong {
    display: block;
    margin-bottom: 4px;
}

.pulse-list-item small {
    display: block;
    color: #cbd5e1;
    line-height: 1.35;
}

@media (max-width: 1050px) {
    .pulse-admin-two-columns {
        grid-template-columns: 1fr;
    }
}

.pulse-stand-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 720px;
    overflow-y: auto;
    padding-right: 4px;
}

.pulse-stand-item {
    justify-content: flex-start;
}

.pulse-stand-logo {
    width: 72px;
    height: 54px;
    flex: 0 0 72px;
    background: #ffffff;
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-stand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pulse-stand-logo span {
    font-size: 26px;
}

.pulse-help-text {
    color: #cbd5e1;
    line-height: 1.5;
    margin-top: 0;
}

.pulse-code-block {
    background: #020617;
    border: 1px solid rgba(255,255,255,0.12);
    color: #e5e7eb;
    padding: 16px;
    border-radius: 14px;
    overflow-x: auto;
    white-space: pre;
    font-size: 13px;
    line-height: 1.45;
}

.pulse-info-box {
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(245,179,1,0.12);
    color: #fde68a;
    border: 1px solid rgba(245,179,1,0.22);
}

.pulse-logo-preview {
    margin-top: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 14px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    max-width: 260px;
}

.pulse-logo-preview span {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: bold;
}

.pulse-logo-preview img {
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
}

.pulse-participant-home {
    width: 100%;
    max-width: 720px;
    text-align: center;
}

.pulse-participant-home h1 {
    margin: 8px 0 24px 0;
    font-size: 30px;
    line-height: 1.15;
}

.pulse-progress-area {
    margin: 24px 0;
    text-align: left;
}

.pulse-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #cbd5e1;
    font-weight: bold;
}

.pulse-progress-header strong {
    color: #f5b301;
}

.pulse-progress-bar {
    width: 100%;
    height: 24px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
}

.pulse-progress-bar div {
    height: 100%;
    background: #f5b301;
    border-radius: 999px;
}

.pulse-progress-area small {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
}

.pulse-participant-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
    width: 100%;
}

.pulse-participant-menu a {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 620px) {
    .pulse-participant-home h1 {
        font-size: 25px;
    }
}

.pulse-album-page {
    width: 100%;
    max-width: 1050px;
    text-align: center;
}

.pulse-album-page h1 {
    margin: 8px 0 6px 0;
    font-size: 30px;
    line-height: 1.15;
}

.pulse-complete-box {
    margin: 22px 0;
    padding: 18px;
    border-radius: 18px;
    background: rgba(245,179,1,0.20);
    border: 1px solid rgba(245,179,1,0.35);
    color: #fff7cc;
}

.pulse-complete-box h2 {
    margin: 0 0 8px 0;
}

.pulse-complete-box p {
    margin: 0;
    color: #fde68a;
}

.pulse-album-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 16px;
}

.pulse-sticker-card {
    min-height: 180px;
    border-radius: 22px;
    padding: 16px;
    background: rgba(15,23,42,0.94);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pulse-sticker-card.is-collected {
    border-color: rgba(34,197,94,0.35);
    background: rgba(15,23,42,0.96);
}

.pulse-sticker-card.is-missing {
    opacity: 0.72;
    filter: grayscale(0.45);
}

.pulse-sticker-image {
    width: 112px;
    height: 82px;
    background: #ffffff;
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-sticker-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pulse-sticker-image span {
    font-size: 40px;
}

.pulse-sticker-card strong {
    font-size: 15px;
    line-height: 1.25;
}

.pulse-sticker-card small {
    color: #cbd5e1;
}

@media (max-width: 620px) {
    .pulse-album-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pulse-sticker-card {
        min-height: 160px;
        padding: 12px;
    }

    .pulse-sticker-image {
        width: 96px;
        height: 70px;
    }
}

.pulse-form .pulse-color-picker {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
}

.pulse-form .pulse-color-picker input[type="color"] {
    width: 64px !important;
    max-width: 64px !important;
    min-width: 64px !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: transparent !important;
    cursor: pointer !important;
    flex: 0 0 64px !important;
}

.pulse-form .pulse-color-picker input[type="text"] {
    width: auto !important;
    flex: 1 !important;
    background: #020617 !important;
    color: #f8fafc !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    border-radius: 14px !important;
    padding: 15px !important;
    font-family: monospace !important;
}

.pulse-mini-link {
    display: inline-block;
    margin-top: 6px;
    color: #f5b301;
    font-weight: bold;
    text-decoration: none;
}

.pulse-mini-link:hover {
    text-decoration: underline;
}

.pulse-collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.pulse-collection-grid .pulse-sticker-card {
    min-height: 245px;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    gap: 0;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
        rgba(15,23,42,0.96);
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pulse-collection-grid .pulse-sticker-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

.pulse-collection-grid .pulse-sticker-card.is-collected {
    border: 2px solid rgba(245,179,1,0.85);
    box-shadow:
        0 22px 60px rgba(0,0,0,0.28),
        inset 0 0 0 1px rgba(255,255,255,0.10);
}

.pulse-collection-grid .pulse-sticker-card.is-collected::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.10) 38%,
        rgba(255,255,255,0.32) 50%,
        rgba(255,255,255,0.10) 62%,
        transparent 100%
    );
    transform: translateX(-130%);
    animation: stickerShine 4s infinite;
    pointer-events: none;
}

.pulse-collection-grid .pulse-sticker-card.is-missing {
    border: 2px dashed rgba(255,255,255,0.20);
    opacity: 0.78;
    filter: none;
}

.pulse-sticker-top {
    width: 100%;
    padding: 9px 8px;
    background: linear-gradient(90deg, #111827, #020617);
    color: #f5b301;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.pulse-sticker-body {
    width: 100%;
    flex: 1;
    min-height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background:
        radial-gradient(circle at center, rgba(245,179,1,0.16), transparent 55%);
}

.pulse-collection-grid .pulse-sticker-image {
    width: 118px;
    height: 92px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.pulse-collection-grid .pulse-sticker-card.is-missing .pulse-sticker-image {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #cbd5e1;
}

.pulse-collection-grid .pulse-sticker-card.is-missing .pulse-sticker-image span {
    font-size: 58px;
    font-weight: 900;
}

.pulse-sticker-footer {
    width: 100%;
    min-height: 74px;
    padding: 12px 10px;
    background: rgba(2,6,23,0.86);
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.pulse-sticker-footer strong {
    font-size: 14px;
    line-height: 1.18;
}

.pulse-sticker-footer small {
    color: #cbd5e1;
    font-size: 12px;
}

.pulse-complete-box {
    background: linear-gradient(135deg, rgba(245,179,1,0.95), rgba(255,215,0,0.75));
    color: #111827;
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 20px 55px rgba(245,179,1,0.28);
}

.pulse-complete-box p {
    color: #111827;
}

@keyframes stickerShine {
    0% {
        transform: translateX(-130%);
    }
    45%, 100% {
        transform: translateX(130%);
    }
}

.pulse-command-hero {
    margin-bottom: 24px;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(245,179,1,0.20), transparent 34%),
        linear-gradient(135deg, rgba(15,23,42,0.98), rgba(30,41,59,0.88));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 28px 80px rgba(0,0,0,0.28);
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
}

.pulse-command-hero span {
    display: block;
    color: #f5b301;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 8px;
}

.pulse-command-hero h1 {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.05;
}

.pulse-command-hero p {
    margin: 10px 0 0 0;
    color: #cbd5e1;
    font-size: 18px;
}

.pulse-command-status {
    min-width: 190px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.26);
    text-align: center;
}

.pulse-command-status strong {
    color: #bbf7d0;
    display: block;
    font-size: 18px;
}

.pulse-command-status small {
    display: block;
    color: #cbd5e1;
    margin-top: 6px;
}

.pulse-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pulse-module-card {
    min-height: 190px;
    text-decoration: none;
    color: #f8fafc;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        rgba(15,23,42,0.96);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.22);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.pulse-module-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,179,1,0.38);
    background:
        linear-gradient(145deg, rgba(245,179,1,0.12), rgba(255,255,255,0.03)),
        rgba(15,23,42,0.98);
}

.pulse-module-card span {
    font-size: 42px;
}

.pulse-module-card strong {
    font-size: 20px;
}

.pulse-module-card small {
    color: #cbd5e1;
    line-height: 1.45;
}

@media (max-width: 1050px) {
    .pulse-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pulse-command-hero {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .pulse-module-grid {
        grid-template-columns: 1fr;
    }

    .pulse-command-status {
        width: 100%;
    }
}

.pulse-sticker-card.is-missing .pulse-sticker-image {
    opacity: 0.45;
    filter: grayscale(1);
}

.pulse-sticker-card.is-collected .pulse-sticker-image {
    opacity: 1;
    filter: none;
}

.pulse-sticker-card.is-missing small {
    color: #facc15;
}

.pulse-sticker-card.is-collected small {
    color: #86efac;
}

.pulse-badge{
    display:inline-block;
    margin-left:6px;
    padding:2px 8px;
    border-radius:12px;
    background:#eef5ff;
    color:#0b5ed7;
    font-size:12px;
    font-weight:600;
}

.pulse-badges{
    margin-top:8px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.pulse-badge{
    display:inline-flex;
    align-items:center;
    padding:4px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    background:#eef2f7;
    color:#344054;
}

.pulse-badge-green{
    background:#e8f7ec;
    color:#1f7a3f;
}

.pulse-badge-blue{
    background:#eaf3ff;
    color:#0d6efd;
}

.pulse-badge-orange{
    background:#fff4e5;
    color:#b35a00;
}

.pulse-badge-red{
    background:#fdecec;
    color:#b42318;
}

.pulse-login-info{
    display:flex;
    align-items:center;
    gap:4px;
    margin-top:4px;
    font-size:14px;
}

.pulse-login-info .pulse-login-value{
    display:inline;
    margin:0;
}

.pulse-qualificacao-acoes{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:14px;
}

.pulse-qualificacao-acoes button{
    flex:1;
    min-width:170px;
}

.pulse-qualificacao-acoes button:disabled{
    opacity:0.6;
    cursor:not-allowed;
}

/* =====================================================
   PARTICIPANTE — QR CODE E MENU DE AÇÕES
===================================================== */

.pulse-participant-card {
    width: 100%;
    max-width: 480px;
    box-sizing: border-box;
}

.pulse-participant-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 20px;
}

.pulse-participant-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

/* =====================================================
   PADRONIZAÇÃO FINAL — MENUS DO PARTICIPANTE
===================================================== */

.pulse-participant-card,
.pulse-participant-home,
.pulse-album-page {
    width: 100%;
    box-sizing: border-box;
}

.pulse-participant-card {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.pulse-participant-menu {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;

    width: 100%;
    max-width: 100%;
    gap: 12px;
    margin-top: 22px;

    box-sizing: border-box;
}

.pulse-participant-menu > a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100% !important;
    max-width: 100%;
    min-width: 0;

    margin: 0 !important;
    box-sizing: border-box;
    text-align: center;
}

/* =====================================================
   CONFIGURAÇÃO DO EVENTO — TEMA ESCURO
===================================================== */

.pulse-config-section {
    width: 100%;
    padding: 24px;
    margin-bottom: 24px;

    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;

    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.pulse-config-section-header {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.pulse-config-section-header h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 19px;
    font-weight: 700;
}

.pulse-config-section-header p {
    margin: 6px 0 0;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

.pulse-config-section label:not(.pulse-checkbox) {
    display: block;
    margin-top: 15px;
    margin-bottom: 7px;
    color: #e2e8f0;
    font-weight: 600;
}

.pulse-config-section input[type="text"],
.pulse-config-section input[type="url"],
.pulse-config-section input[type="file"],
.pulse-config-section select,
.pulse-config-section textarea {
    width: 100%;
    box-sizing: border-box;
}

.pulse-config-section .pulse-checkbox {
    margin-top: 16px;
    margin-bottom: 16px;
}

@media (max-width: 620px) {
    .pulse-config-section {
        padding: 17px;
        margin-bottom: 18px;
    }

    .pulse-config-section-header h3 {
        font-size: 17px;
    }
}

/* =====================================================
   CONSENTIMENTO LGPD
===================================================== */

.pulse-consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

.pulse-consent-card {

    display: flex;
    align-items: center;
    gap: 18px;

    width: 100%;
    padding: 22px;

    border-radius: 16px;

    border: 2px solid rgba(148,163,184,.18);

    background: rgba(15,23,42,.55);

    color: #fff;

    cursor: pointer;

    transition: .25s;

    text-align: left;
}

.pulse-consent-card:hover {

    transform: translateY(-2px);

    border-color: var(--pulse-secondary);

    background: rgba(30,41,59,.90);

    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.pulse-consent-icon{

    width:64px;
    height:64px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    background:rgba(255,255,255,.08);

    flex-shrink:0;

}

.pulse-consent-content{

    flex:1;

}

.pulse-consent-content h3{

    margin:0;

    font-size:20px;

    color:#fff;

}

.pulse-consent-content p{

    margin:8px 0 0;

    color:#cbd5e1;

    line-height:1.45;

}

.pulse-consent-yes:hover{

    border-color:#22c55e;

}

.pulse-consent-no:hover{

    border-color:#ef4444;

}

@media (max-width:620px){

    .pulse-consent-card{

        flex-direction:column;

        text-align:center;

    }

    .pulse-consent-icon{

        margin-bottom:8px;

    }

}

/* =====================================================
   DETALHES DO CONSENTIMENTO
===================================================== */

.pulse-consent-details {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.pulse-consent-details > h2 {
    margin: 0 0 20px;
    color: #f8fafc;
    font-size: 20px;
    text-align: center;
}

.pulse-consent-detail-group {
    margin-bottom: 20px;
    padding: 18px;

    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
}

.pulse-consent-detail-group h3 {
    margin: 0 0 12px;
    color: #e2e8f0;
    font-size: 15px;
}

.pulse-consent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pulse-consent-list li {
    position: relative;
    padding: 5px 0 5px 28px;
    color: #cbd5e1;
    line-height: 1.4;
}

.pulse-consent-list-yes li::before,
.pulse-consent-list-optional li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.pulse-consent-list-no li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.pulse-consent-note {
    margin: 22px 0 0;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.pulse-muted {
    color: #94a3b8;
    font-size: 13px;
    font-style: italic;
}

/* =====================================================
   FIGURINHAS PERSONALIZADAS POR EVENTO
===================================================== */

.pulse-sticker-event-card {

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    aspect-ratio: auto;

    width: 100%;
}

.pulse-sticker-template {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    z-index: 0;

    pointer-events: none;

}

.pulse-sticker-event-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(2, 6, 23, 0.08) 0%,
            rgba(2, 6, 23, 0.12) 45%,
            rgba(2, 6, 23, 0.86) 100%
        );
}

.pulse-event-sticker-overlay {
    position: relative;
    z-index: 1;

    /*min-height: 360px;*/
    padding: 24px 20px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-sizing: border-box;
}

.pulse-event-sticker-logo {
    width: 150px;
    height: 150px;

    /* margin-top: 55px; */

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);

    overflow: hidden;
}

.pulse-event-sticker-logo img {
    width: 86%;
    height: 86%;
    object-fit: contain;
}

.pulse-event-sticker-placeholder,
.pulse-event-sticker-lock {
    font-size: 54px;
}

.pulse-event-sticker-status {
    margin-top: 18px;
    text-align: center;
}

.pulse-event-sticker-visited,
.pulse-event-sticker-pending {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;
    padding: 8px 14px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;
}

.pulse-event-sticker-visited {
    color: #dcfce7;
    background: rgba(22, 101, 52, 0.86);
    border: 1px solid rgba(134, 239, 172, 0.45);
}

.pulse-event-sticker-pending {
    color: #e2e8f0;
    background: rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.pulse-event-sticker-info {
    width: 100%;
    /*margin-top: auto;*/

    text-align: center;
    color: #ffffff;
}

.pulse-event-sticker-info strong {
    display: block;

    font-size: 18px;
    line-height: 1.25;

    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.72);
}

.pulse-event-sticker-info small {
    display: block;
    margin-top: 6px;

    color: #cbd5e1;
    font-size: 12px;
}

/* Estado ainda não visitado */
.pulse-sticker-event-card.is-missing {
    filter: grayscale(1);
}

.pulse-sticker-event-card.is-missing::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background: rgba(15, 23, 42, 0.46);
}

.pulse-sticker-event-card.is-missing .pulse-event-sticker-logo {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.28);
}

/* Celular */
@media (max-width: 620px) {
    .pulse-sticker-event-card {
        min-height: 330px;
    }

    .pulse-event-sticker-overlay {
        min-height: 330px;
        padding: 20px 16px 16px;
    }

    .pulse-event-sticker-logo {
        width: 128px;
        height: 128px;
        margin-top: 48px;
    }

    .pulse-event-sticker-info strong {
        font-size: 16px;
    }
}

/* =====================================================
   CORREÇÃO — ARTE-BASE DA FIGURINHA
===================================================== */

.pulse-sticker-event-card {
    position: relative;
    display: block;

    width: 100%;
    min-height: 0;
    aspect-ratio: auto;

    overflow: hidden;
    border-radius: 18px;

    background: transparent;
    isolation: isolate;
}

.pulse-sticker-template {
    position: relative;
    inset: auto;

    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    z-index: 0;
    pointer-events: none;
}

/* Camada escura sobre a arte */
.pulse-sticker-event-card::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(2, 6, 23, 0.02) 0%,
            rgba(2, 6, 23, 0.05) 55%,
            rgba(2, 6, 23, 0.78) 100%
        );
}

/* Conteúdo inserido pela plataforma */
.pulse-event-sticker-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    min-height: 0;
    height: 100%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-sizing: border-box;
}

/* Camada adicional das figurinhas pendentes */
.pulse-sticker-event-card.is-missing::after {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 1;
    pointer-events: none;

    background: rgba(15, 23, 42, 0.48);
}

/* =====================================================
   AJUSTE FINAL — POSICIONAMENTO NA ÁREA ÚTIL
===================================================== */

.pulse-event-sticker-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;

    display: block;
    box-sizing: border-box;
}

/*
 * Área principal da logo do expositor.
 * Valores proporcionais à arte-base.
 */
.pulse-event-sticker-logo {
    position: absolute;

    top: 29%;
    left: 24%;

    width: 52%;
    height: 42%;

    margin: 0;
    padding: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    /*background: transparent;*/
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 0;
    box-shadow: none;

    box-sizing: border-box;
    overflow: hidden;
}

.pulse-event-sticker-logo img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}

/* Cadeado ou ícone quando ainda não visitado */
.pulse-event-sticker-placeholder,
.pulse-event-sticker-lock {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-size: clamp(42px, 9vw, 100px);
}

/* Status Visitado / Ainda não visitado */
.pulse-event-sticker-status {
    position: absolute;

    top: 73%;
    left: 20%;

    width: 60%;
    margin: 0;

    text-align: center;
}

.pulse-event-sticker-visited{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    max-width: 100%;
    min-height: 0;

    padding: 6px 12px;

    font-size: clamp(11px, 2.4vw, 18px);
    line-height: 1.2;

    box-sizing: border-box;
}



.pulse-event-sticker-pending {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    max-width: 100%;
    min-height: 0;

    padding: 6px 12px;

    font-size: clamp(11px, 2.4vw, 15px);
    line-height: 1.2;

    box-sizing: border-box;
}

/* Nome e número da figurinha */
.pulse-event-sticker-info {
    position: absolute;

    top: 83%;
    left: 14%;

    width: 72%;
    margin: 0;
    padding: 10px 8px;

    color: #ffffff;
    text-align: center;

    background: rgba(2, 6, 23, 0.92);
    border-radius: 10px;

    box-sizing: border-box;
}

.pulse-event-sticker-info strong {
    display: block;
    margin: 0;

    color: #ffffff;
    font-size: clamp(13px, 1.35vw, 19px);
    line-height: 1.15;

    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;

    text-shadow: none;
}

.pulse-event-sticker-info small {
    display: block;

    margin-top: 6px;

    color: #86efac;
    font-size: clamp(10px, 2.1vw, 16px);
    line-height: 1.2;
}

/* Não aplicar filtro no card inteiro */
.pulse-sticker-event-card.is-missing {
    filter: none;
}

/* Escurece somente a área útil quando pendente */
.pulse-sticker-event-card.is-missing
.pulse-event-sticker-logo {
    background: rgba(226, 232, 240, 0.88);
}

.pulse-sticker-event-card.is-missing
.pulse-event-sticker-info {
    background: rgba(30, 41, 59, 0.92);
}

/* Ajustes específicos para telas pequenas */
@media (max-width: 620px) {

    .pulse-event-sticker-logo {
        top: 29%;
        left: 24%;
        width: 52%;
        height: 42%;
        padding: 10px;
    }

    .pulse-event-sticker-status {
        top: 72%;
        left: 20%;
        width: 60%;
    }

    .pulse-event-sticker-info {
        top: 83%;
        left: 14%;
        width: 72%;
        padding: 8px 6px;
    }

    .pulse-event-sticker-info strong {
        font-size: 18px;
    }

    .pulse-event-sticker-info small {
        font-size: 14px;
    }

    .pulse-event-sticker-visited{
        font-size:16px;
        padding:10px 18px;
    }

    .pulse-event-sticker-pending{
        font-size:14px;
        padding:10px 18px;
    }

}

/* =====================================================
   ÁLBUM — TAMANHO MÍNIMO DAS FIGURINHAS
===================================================== */

.pulse-album-grid.pulse-collection-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(300px, 1fr)
    );
    gap: 24px;
    align-items: start;
}

.pulse-sticker-event-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

/* Tablets */
@media (min-width: 621px) and (max-width: 1000px) {
    .pulse-album-grid.pulse-collection-grid {
        grid-template-columns: repeat(
            2,
            minmax(280px, 1fr)
        );
    }
}

/* Celulares */
@media (max-width: 620px) {
    .pulse-album-grid.pulse-collection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pulse-sticker-event-card {
        max-width: 100%;
    }
}

.btn-whatsapp {
    background: #25d366 !important;
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
}

.btn-whatsapp:hover {
    background: #1ebe5d !important;
    background-color: #1ebe5d !important;
    border-color: #1ebe5d !important;
    color: #ffffff !important;
}

/* =====================================================
   FIGURINHA PENDENTE — LOGO EM MARCA-D'ÁGUA
===================================================== */

.pulse-event-sticker-logo {
    position: absolute;
}

/* Logo da figurinha já coletada */
.pulse-event-sticker-logo.logo-coletada img {
    opacity: 1;
    filter: none;
}

/* Logo da figurinha ainda não coletada */
.pulse-event-sticker-logo.logo-pendente img {
    opacity: 0.35;
    filter: grayscale(1);
}

/* Caso o stand não possua logo */
.pulse-event-sticker-logo.logo-pendente
.pulse-event-sticker-placeholder {
    opacity: 0.15;
    filter: grayscale(1);
}

/* Cadeado sobre a imagem */
.pulse-event-sticker-lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    transform: translate(-50%, -50%);

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);

    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);

    font-size: 27px;
    line-height: 1;

    z-index: 5;
}

/*
 * Uma regra antiga pode estar deixando toda a figurinha
 * pendente em cinza. Neutralizamos para manter a arte da moldura.
 */
.pulse-sticker-event-card.is-missing {
    filter: none;
}

/*
 * Uma camada antiga também pode escurecer demais a logo.
 * Reduzimos a intensidade para a marca-d'água permanecer visível.
 */
.pulse-sticker-event-card.is-missing::after {
    background: rgba(15, 23, 42, 0.18);
}

@media (max-width: 620px) {
    .pulse-event-sticker-logo.logo-pendente img {
        opacity: 0.15;
    }

    .pulse-event-sticker-lock-overlay {
        width: 50px;
        height: 50px;
        font-size: 23px;
    }
}

.pulse-action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.pulse-inline-form {
    display: inline-flex;
    margin: 0;
}

.pulse-action-buttons .pulse-btn-secondary {
    width: auto;
    white-space: nowrap;
    margin: 0;
}

@media (max-width: 620px) {
    .pulse-action-buttons {
        flex-wrap: wrap;
    }
}

/* Ações da tabela de interações */

.pulse-actions-cell {
    white-space: nowrap;
}

.pulse-action-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap !important;
}

.pulse-action-buttons .pulse-inline-form {
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pulse-action-buttons .pulse-action-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;

    margin: 0 !important;
    white-space: nowrap;
    box-sizing: border-box;
}

.pulse-admin-table th:nth-child(5),
.pulse-admin-table td:nth-child(5) {
    padding-right: 28px;
}


/* =====================================================
   PARTICIPANTE — SALAS DE INTERAÇÃO
===================================================== */

.pulse-interaction-room {
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 14px;

    text-align: left !important;
}

.pulse-interaction-room-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    font-size: 22px;
}

.pulse-interaction-room-content {
    display: flex;
    flex-direction: column;
    gap: 3px;

    min-width: 0;
}

.pulse-interaction-room-content strong {
    font-size: 15px;
    line-height: 1.25;
}

.pulse-interaction-room-content small {
    font-size: 12px;
    line-height: 1.25;

    opacity: 0.78;
}

/* ==========================================================================
   Política e regras do sorteio
   ========================================================================== */

.pulse-policy-content {
    width: 100%;
    margin: 24px 0;
    padding: 24px;
    box-sizing: border-box;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 14px;

    font-size: 16px;
    line-height: 1.7;
    text-align: left;
    color: #333333;

    overflow-wrap: anywhere;
    word-break: normal;
}

.pulse-policy-content p {
    margin: 0 0 16px;
}

.pulse-policy-content p:last-child {
    margin-bottom: 0;
}

.pulse-policy-content a {
    overflow-wrap: anywhere;
}

@media (max-width: 600px) {

    .pulse-policy-content {
        margin: 18px 0;
        padding: 18px;
        border-radius: 12px;

        font-size: 15px;
        line-height: 1.65;
    }

}

.pulse-page-header h1 {
    color: #ffffff;
}

.pulse-page-header p {
    color: rgba(255, 255, 255, 0.88);
}

.pulse-form-actions .pulse-btn-primary {
    text-decoration: none;
}

/* ==========================================================================
   Página de regras e políticas do sorteio
   ========================================================================== */

.pulse-policy-page {
    min-height: 100vh;
    padding: 24px 16px;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.12),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            var(--pulse-primary, #1f3c88),
            var(--pulse-secondary, #0f172a)
        );

    box-sizing: border-box;
}

.pulse-policy-page .pulse-participant-container {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.pulse-policy-page .pulse-participant-card {
    width: 100%;
    padding: 28px;
    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.24);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pulse-policy-page .pulse-event-logo-login {
    margin-bottom: 22px;
    text-align: center;
}

.pulse-policy-page .pulse-event-logo-login img {
    max-width: 220px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.pulse-policy-page .pulse-page-header {
    margin-bottom: 20px;
    text-align: center;
}

.pulse-policy-page .pulse-page-header h1 {
    margin: 0 0 10px;
    color: #ffffff;
}

.pulse-policy-page .pulse-page-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.pulse-policy-page .pulse-policy-content {
    background: #ffffff;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.16);
}

.pulse-policy-page .pulse-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.pulse-policy-page .pulse-form-actions .pulse-btn-primary {
    text-decoration: none;
}

@media (max-width: 600px) {

    .pulse-policy-page {
        padding: 16px 10px;
    }

    .pulse-policy-page .pulse-participant-card {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .pulse-policy-page .pulse-event-logo-login img {
        max-width: 180px;
        max-height: 90px;
    }

}

/* ==========================================================================
   Miniatura das artes das categorias de stands
   ========================================================================== */

.pulse-category-art-preview {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse-category-art-preview img {
    width: 72px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.pulse-category-art-preview small {
    max-width: 220px;
    overflow-wrap: anywhere;
}