.cem-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1c1917;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.cem-header {
    text-align: center;
    margin-bottom: 40px;
}

.cem-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cem-timer-card {
    background: #1c1917;
    color: #fff;
    border-radius: 16px;
    display: flex;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cem-timer-left {
    background: #292524;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    border-right: 1px solid #44403c;
}

.cem-timer-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #78716c;
    font-weight: 800;
    margin-bottom: 8px;
}

.cem-timer-phase-badge {
    background: #fff;
    color: #1c1917;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
}

.cem-timer-right {
    flex: 1;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cem-timer-sublabel {
    display: block;
    font-size: 12px;
    color: #a8a29e;
    margin-bottom: 4px;
}

.cem-timer-numbers {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    font-family: monospace;
}

.cem-timer-next {
    text-align: right;
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cem-timer-next-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #78716c;
    font-weight: 700;
}

.cem-timer-next-val {
    font-weight: 700;
    color: #fb923c;
}

@media (max-width: 600px) {
    .cem-timer-card { flex-direction: column; }
    .cem-timer-left { border-right: none; border-bottom: 1px solid #44403c; width: 100%; }
    .cem-timer-right { flex-direction: column; gap: 20px; text-align: center; }
    .cem-timer-next { text-align: center; width: 100%; }
}

.cem-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

@media (max-width: 768px) {
    .cem-grid {
        grid-template-columns: 1fr;
    }
}

.cem-card {
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.cem-form-group {
    margin-bottom: 20px;
}

.cem-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.cem-form-group input, 
.cem-form-group select, 
.cem-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d6d3d1;
    border-radius: 8px;
}

.cem-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#cem-submit-btn {
    width: 100%;
    background: #1c1917;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.cem-pricing-card {
    background: #fff;
}

.cem-badge {
    background: #1c1917;
    color: #fff;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cem-savings-badge {
    background: #dcfce7;
    color: #166534;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cem-summary-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.cem-summary-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #57534e;
    font-size: 0.9rem;
}

.cem-promo-card {
    background: #1c1917;
    color: #fff;
    margin-top: 20px;
}

.cem-promo-card h3 { color: #fff; margin-top: 0; }
.cem-link { color: #fff; text-decoration: underline; font-weight: 600; }

/* Ticket Styles */
.cem-ticket {
    background: #fff;
    border: 2px solid #e7e5e4;
    border-radius: 24px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto 30px;
}

.cem-ticket-header {
    background: #1c1917;
    color: #fff;
    padding: 24px;
    text-align: center;
}

.cem-ticket-header h3 { color: #fff; margin: 0; }

.cem-ticket-body {
    padding: 30px;
    text-align: center;
}

#cem-qrcode-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.cem-ticket-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    border-top: 1px solid #e7e5e4;
    padding-top: 20px;
}

.cem-ticket-info label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #78716c;
    font-weight: 700;
}

.cem-ticket-info p {
    font-weight: 800;
    margin: 0;
}

.cem-ticket-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.cem-btn-outline {
    background: transparent;
    border: 1px solid #d6d3d1;
    padding: 10px 20px;
    border-radius: 99px;
    cursor: pointer;
}

.cem-dark-card {
    background: #1c1917;
    color: #fff;
    text-align: center;
}

.cem-options, .cem-sub-options {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.cem-option-btn, .cem-sub-option-btn {
    background: #292524;
    border: 1px solid #44403c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    flex: 1;
}

.cem-option-btn.active {
    background: #fff;
    color: #1c1917;
}
