.pbg-trial-container {
    max-width: 500px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: "Jost", Sans-serif;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pbg-fade-in {
    animation: pbg-fade-in 0.5s ease-out;
}

@keyframes pbg-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Spinner */
.pbg-trial-spinner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.pbg-trial-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FDC603;
    border-radius: 50%;
    animation: pbg-spin 1s linear infinite;
}

@keyframes pbg-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pbg-trial-header h2 {
    font-family: "Jost", Sans-serif;
    font-size: 2.25rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h3 {
    margin-bottom: 29px;
    font-family: "Jost", Sans-serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: #000000;
}

h4 {
    margin-bottom: 20px;
    font-family: "Jost", Sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #000000;
}

.pbg-trial-header p {
    text-align: center;
    font-family: "Jost", Sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 25px;
    color: #000000;
}

.pbg-trial-email-sent p,
.pbg-trial-done p,
.pbg-trial-blocked p,
.pbg-trial-creating-info p.pbg-trial-loading-text {
    text-align: center;
    font-family: "Jost", Sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 25px;
    color: #000000;
    margin-bottom: 1.5rem;
}

.pbg-trial-content {
    margin-top: 2.5rem;
}

.pbg-trial-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 700;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.pbg-trial-cta-primary {
    background: #FDC603 !important;
    color: #000000 !important;
}

.pbg-trial-cta-primary:hover, .pbg-trial-cta-primary:focus, .pbg-trial-cta-primary:active {
    background: #e5b302 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 198, 3, 0.3);
    text-decoration: none !important;
}

.pbg-trial-progress-wrapper {
    margin: 2.5rem 0;
}

.pbg-trial-progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.pbg-trial-progress-fill {
    height: 100%;
    background: #FDC603;
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
    overflow: hidden;
}

.pbg-trial-progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: pbg-shimmer 2s infinite;
}

@keyframes pbg-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.pbg-trial-progress-fill.is-indeterminate {
    width: 30% !important;
    animation: pbg-progress-indeterminate 2s infinite linear;
    transform-origin: 0% 50%;
}

@keyframes pbg-progress-indeterminate {
    0% { transform: translateX(-100%) scaleX(0.2); }
    50% { transform: translateX(0%) scaleX(0.5); }
    100% { transform: translateX(100%) scaleX(0.2); }
}

.pbg-trial-progress-text {
    font-weight: 700;
    color: #000000;
    font-size: 0.875rem;
    text-align: right;
}

.pbg-trial-error p {
    color: #d63638;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
}

.pbg-trial-error {
    color: #d63638;
    background: #fcf0f1;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.pbg-trial-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pbg-trial-instructions h4 {
    margin-bottom: 0.5rem;
    text-align: left;
    font-family: "Jost", Sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
}

.pbg-trial-instructions {
    text-align: left;
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #f0f0f0;
}

.pbg-trial-instructions ol {
    margin: 0;
    padding-left: 1.25rem;
}

.pbg-trial-instructions li {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1rem;
    text-align: left;
}

.pbg-trial-hint {
    font-size: 0.875rem;
    color: #777;
    margin-top: 2rem;
    line-height: 1.5;
    text-align: center;
}

.pbg-trial-actions {
    margin: 2.5rem 0;
}

.pbg-trial-loader {
    padding: 4rem;
    color: #999;
}

@keyframes pbg-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.pbg-trial-loading-text {
    animation: pbg-pulse 2s infinite ease-in-out;
    margin-bottom: 1rem;
}

.pbg-trial-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.875rem;
    color: #666;
}

.pbg-trial-footer a {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.pbg-trial-footer a:hover {
    color: #FDC603;
}
