/* ── C4 My Account ──────────────────────────────────────────────────────────
   Design system: Anton (headings), Inter (UI), Karla (body)
   Palette: #0a0a0a bg, #0239cc blue, #f5a623 gold, #e33434 red
   ─────────────────────────────────────────────────────────────────────────── */

/* Force full-bleed dark background, suppress Astra's header spacing */
body.woocommerce-account {
	background: #0a0a0a !important;
}

/* Suppress Astra breadcrumb */
.woocommerce-account .woocommerce-breadcrumb {
	display: none !important;
}

/* Neutralise Astra container constraints */
.woocommerce-account .ast-container,
.woocommerce-account .site-content,
.woocommerce-account #content,
.woocommerce-account .content-area,
.woocommerce-account .ast-article-single {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Full-bleed breakout */
#c4ma-page {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background: #0a0a0a;
	min-height: 60vh;
	font-family: 'Karla', sans-serif;
	color: rgba(255, 255, 255, 0.85);
}

.c4ma__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.c4ma__header {
	background: #111111;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	padding: 36px 0;
}

.c4ma__header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.c4ma__user-info {
	display: flex;
	align-items: center;
	gap: 18px;
}

.c4ma__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0239cc, #0230b0);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Anton', sans-serif;
	font-size: 22px;
	color: #fff;
	flex-shrink: 0;
	letter-spacing: 0.5px;
}

.c4ma__welcome {
	font-family: 'Anton', sans-serif;
	font-size: 24px;
	color: #fff;
	letter-spacing: 0.5px;
	margin: 0 0 4px;
	line-height: 1.2;
}

.c4ma__member-since {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.c4ma__stats-row {
	display: flex;
	align-items: center;
	gap: 24px;
}

.c4ma__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}

.c4ma__stat-num {
	font-family: 'Anton', sans-serif;
	font-size: 28px;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.5px;
}

.c4ma__stat-num--gold {
	color: #f5a623;
}

.c4ma__stat-label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.4);
}

.c4ma__stat-divider {
	width: 1px;
	height: 36px;
	background: rgba(255, 255, 255, 0.1);
}

/* ── Navigation ──────────────────────────────────────────────────────────── */

.c4ma__nav-bar {
	background: #0d0d0d;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	position: sticky;
	top: 60px; /* below c4-navbar */
	z-index: 100;
}

.c4ma__nav-inner {
	display: flex;
	align-items: center;
	gap: 0;
}

.c4ma__nav-item {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	padding: 16px 20px;
	border-bottom: 2px solid transparent;
	transition: color 0.2s, border-color 0.2s;
	white-space: nowrap;
}

.c4ma__nav-item:hover {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.c4ma__nav-item--active {
	color: #fff;
	border-bottom-color: #0239cc;
}

.c4ma__nav-item--logout {
	margin-left: auto;
	color: rgba(255, 255, 255, 0.3);
}

.c4ma__nav-item--logout:hover {
	color: #e33434;
}

/* ── Body ────────────────────────────────────────────────────────────────── */

.c4ma__body {
	padding: 40px 0 80px;
}

/* ── Draws grid ──────────────────────────────────────────────────────────── */

.c4ma__draws-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ── Draw card ───────────────────────────────────────────────────────────── */

.c4ma__draw-card {
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	display: grid;
	grid-template-columns: 160px 1fr;
	overflow: hidden;
	transition: border-color 0.2s;
}

.c4ma__draw-card:hover {
	border-color: rgba(255, 255, 255, 0.15);
}

.c4ma__draw-card--won {
	border-color: rgba(245, 166, 35, 0.4);
	background: linear-gradient(135deg, #111111 0%, rgba(245, 166, 35, 0.05) 100%);
}

/* Image column */
.c4ma__draw-img-wrap {
	position: relative;
	overflow: hidden;
	background: #1a1a1a;
}

.c4ma__draw-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 160px;
}

.c4ma__draw-img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.c4ma__draw-img-placeholder svg {
	width: 64px;
	height: 64px;
	opacity: 0.5;
}

/* Status badge */
.c4ma__draw-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 4px;
}

.c4ma__draw-badge--live {
	background: rgba(0, 132, 214, 0.9);
	color: #fff;
}

.c4ma__draw-badge--ended {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

.c4ma__draw-badge--won {
	background: rgba(245, 166, 35, 0.9);
	color: #0a0a0a;
}

/* Info column */
.c4ma__draw-info {
	padding: 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.c4ma__draw-title {
	font-family: 'Anton', sans-serif;
	font-size: 20px;
	letter-spacing: 0.5px;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}

.c4ma__draw-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.c4ma__draw-title a:hover {
	color: #0239cc;
}

/* Meta row */
.c4ma__draw-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.c4ma__draw-meta-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
}

.c4ma__draw-meta-item--timer {
	color: #0239cc;
}

.c4ma__countdown {
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

/* Tickets section */
.c4ma__tickets-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.c4ma__tickets-count {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
}

.c4ma__ticket-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.c4ma__ticket-num {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #0239cc;
	background: rgba(0, 132, 214, 0.1);
	border: 1px solid rgba(0, 132, 214, 0.25);
	border-radius: 4px;
	padding: 3px 8px;
	font-variant-numeric: tabular-nums;
}

.c4ma__draw-card--won .c4ma__ticket-num {
	color: #f5a623;
	background: rgba(245, 166, 35, 0.1);
	border-color: rgba(245, 166, 35, 0.25);
}

/* CTA link */
.c4ma__draw-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #0239cc;
	text-decoration: none;
	margin-top: auto;
	padding-top: 4px;
	transition: gap 0.2s, color 0.2s;
}

.c4ma__draw-cta:hover {
	color: #3399e0;
	gap: 10px;
	text-decoration: none;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */

.c4ma__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 80px 20px;
	gap: 16px;
}

.c4ma__empty h2 {
	font-family: 'Anton', sans-serif;
	font-size: 28px;
	color: #fff;
	letter-spacing: 0.5px;
	margin: 0;
}

.c4ma__empty p {
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
	font-size: 15px;
}

.c4ma__empty-cta {
	display: inline-block;
	background: #0239cc;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 8px;
	text-decoration: none;
	margin-top: 8px;
	transition: background 0.2s;
}

.c4ma__empty-cta:hover {
	background: #0073bb;
	color: #fff;
	text-decoration: none;
}

/* ── WooCommerce sub-pages (orders, edit-account etc.) ───────────────────── */

.c4ma__wc-content {
	color: rgba(255, 255, 255, 0.85);
}

.c4ma__wc-content .woocommerce-order,
.c4ma__wc-content .woocommerce-MyAccount-orders,
.c4ma__wc-content form {
	color: inherit;
}

/* ── Astra's custom order cards ──────────────────────────────────────────── */

/* Override the Astra CSS variable that drives the card background */
#c4ma-page .c4ma__wc-content {
	--ast-global-color-primary: #111111;
	--ast-global-color-5: #111111;
	--ast-border-color: rgba(255, 255, 255, 0.1);
}

html body #c4ma-page .c4ma__wc-content .ast-orders-table__row {
	background: #111111 !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 10px !important;
	box-shadow: none !important;
	transition: border-color 0.2s !important;
}

html body #c4ma-page .c4ma__wc-content .ast-orders-table__row:hover {
	border-color: rgba(255, 255, 255, 0.2) !important;
}

html body #c4ma-page .c4ma__wc-content .ast-orders-table__cell {
	color: rgba(255, 255, 255, 0.8) !important;
	font-family: 'Karla', sans-serif !important;
	font-size: 14px !important;
}

/* Date */
html body #c4ma-page .c4ma__wc-content .ast-woo-order-date {
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: rgba(255, 255, 255, 0.9) !important;
}

/* Status */
html body #c4ma-page .c4ma__wc-content .ast-orders-table__cell-order-status {
	font-family: 'Inter', sans-serif !important;
	font-size: 13px !important;
	color: rgba(255, 255, 255, 0.5) !important;
}

/* View link */
html body #c4ma-page .c4ma__wc-content .ast-orders-table__cell-order-actions a {
	font-family: 'Inter', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #0239cc !important;
	text-decoration: none !important;
}

html body #c4ma-page .c4ma__wc-content .ast-orders-table__cell-order-actions a:hover {
	color: #3399e0 !important;
}

/* Pagination */
.c4ma__wc-content .woocommerce-pagination {
	display: flex;
	gap: 8px;
	margin-top: 20px;
	justify-content: center;
}

.c4ma__wc-content .woocommerce-pagination a {
	display: inline-block;
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.7) !important;
	padding: 8px 20px;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}

.c4ma__wc-content .woocommerce-pagination a:hover {
	border-color: #0239cc;
	color: #fff !important;
	text-decoration: none;
}

.c4ma__wc-content table {
	width: 100%;
	border-collapse: collapse;
	font-family: 'Karla', sans-serif;
	font-size: 14px;
}

.c4ma__wc-content table th {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.4);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 10px 12px;
	text-align: left;
	font-weight: 600;
}

.c4ma__wc-content table td {
	padding: 14px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.8);
}

.c4ma__wc-content table tr:last-child td {
	border-bottom: none;
}

.c4ma__wc-content .woocommerce-form-row label {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.5);
	display: block;
	margin-bottom: 6px;
}

.c4ma__wc-content .woocommerce-form-row input,
.c4ma__wc-content .woocommerce-form-row select {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	padding: 12px 14px;
	border-radius: 8px;
	width: 100%;
	font-family: 'Karla', sans-serif;
	font-size: 15px;
}

.c4ma__wc-content .woocommerce-form-row input:focus,
.c4ma__wc-content .woocommerce-form-row select:focus {
	outline: none;
	border-color: #0239cc;
}

.c4ma__wc-content .button,
.c4ma__wc-content button[type="submit"] {
	background: #0239cc !important;
	color: #fff !important;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s;
}

.c4ma__wc-content .button:hover,
.c4ma__wc-content button[type="submit"]:hover {
	background: #0073bb !important;
	text-decoration: none;
}

.c4ma__wc-content .woocommerce-message,
.c4ma__wc-content .woocommerce-info {
	background: rgba(0, 132, 214, 0.1);
	border-left: 4px solid #0239cc;
	color: rgba(255, 255, 255, 0.85);
	padding: 14px 16px;
	border-radius: 0 8px 8px 0;
	margin-bottom: 20px;
}

/* ── Login page ──────────────────────────────────────────────────────────── */

.c4ma--login {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70vh;
	padding: 60px 20px;
}

.c4ma__login-wrap {
	width: 100%;
	max-width: 440px;
}

.c4ma__login-logo {
	text-align: center;
	margin-bottom: 32px;
}

.c4ma__login-logo-img {
	max-height: 48px;
	width: auto;
}

.c4ma__login-site-name {
	font-family: 'Anton', sans-serif;
	font-size: 28px;
	color: #fff;
	letter-spacing: 1px;
}

.c4ma__login-heading {
	font-family: 'Anton', Impact, sans-serif;
	font-size: 1.9rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	margin: 0 0 8px;
	line-height: 1;
}

.c4ma--login .woocommerce-form {
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 32px;
}

.c4ma--login .woocommerce-form label {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.5);
	display: block;
	margin-bottom: 6px;
}

.c4ma--login .woocommerce-form input {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	padding: 12px 14px;
	border-radius: 8px;
	width: 100%;
	font-family: 'Karla', sans-serif;
	font-size: 15px;
	box-sizing: border-box;
}

.c4ma--login .woocommerce-form input:focus {
	outline: none;
	border-color: #0239cc;
}

.c4ma--login .woocommerce-form__input-checkbox {
	width: auto !important;
}

.c4ma--login .woocommerce-form-row {
	margin-bottom: 18px;
}

.c4ma--login .form-row-first,
.c4ma--login .form-row-last {
	width: 100% !important;
	float: none !important;
	clear: both !important;
	margin-right: 0 !important;
}

.c4ma--login .woocommerce-form .button {
	background: #0239cc !important;
	color: #fff !important;
	width: 100%;
	padding: 14px;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	margin-top: 8px;
	transition: background 0.2s;
}

.c4ma--login .woocommerce-form .button:hover {
	background: #0073bb !important;
}

.c4ma--login .woocommerce-LostPassword,
.c4ma--login .woocommerce-privacy-policy-text,
.c4ma--login .lost_password,
.c4ma--login .ast-woo-form-actions {
	text-align: center;
	margin-top: 16px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6) !important;
}

.c4ma--login .woocommerce-LostPassword a,
.c4ma--login .woocommerce-privacy-policy-text a,
.c4ma--login .lost_password a,
.c4ma--login .ast-woo-form-actions a {
	color: #0239cc !important;
}

.c4ma--login .woocommerce-error,
.c4ma--login .woocommerce-message {
	background: rgba(227, 52, 52, 0.1);
	border: 1px solid rgba(227, 52, 52, 0.3);
	color: rgba(255, 255, 255, 0.85);
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	list-style: none;
	font-size: 14px;
}

/* ── Lost password page layout ───────────────────────────────────────────── */

body.woocommerce-lost-password #c4ma-page {
	position: fixed;
	top: 0;
	left: 0 !important;
	right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100vw;
	height: 100vh;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0a0a0a;
	overflow-y: auto;
}

body.woocommerce-lost-password #c4ma-page .c4ma__login-wrap {
	width: 100%;
	max-width: 420px;
	padding: 40px 20px;
}

/* ── Lost password form ──────────────────────────────────────────────────── */

.c4ma--login .woocommerce-ResetPassword p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	margin-bottom: 20px;
}

.c4ma--login .woocommerce-ResetPassword .woocommerce-form-row label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
}

.c4ma--login .woocommerce-ResetPassword .woocommerce-form-row input {
	width: 100%;
	background: rgba(255, 255, 255, 0.07) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
	border-radius: 8px !important;
	color: #fff !important;
	padding: 12px 14px !important;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color 0.15s;
}

.c4ma--login .woocommerce-ResetPassword .woocommerce-form-row input:focus {
	border-color: #0239cc !important;
	outline: none;
}

.c4ma--login .woocommerce-ResetPassword .woocommerce-Button {
	background: #0239cc !important;
	color: #fff !important;
	width: 100%;
	padding: 14px !important;
	border-radius: 8px !important;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	border: none !important;
	cursor: pointer;
	margin-top: 8px;
	transition: background 0.2s;
	display: block;
}

.c4ma--login .woocommerce-ResetPassword .woocommerce-Button:hover {
	background: #0073bb !important;
}

/* ── Password reset confirmation card ───────────────────────────────────── */

.c4ma__login-sub {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
	margin: 0 0 24px;
	line-height: 1.6;
}

.c4ma__reset-tip {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: rgba(245, 166, 35, 0.08);
	border-left: 3px solid rgba(245, 166, 35, 0.6);
	border-radius: 0 8px 8px 0;
	padding: 14px 16px;
	font-family: 'Karla', sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.c4ma__reset-tip svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #f5a623;
}

.c4ma__reset-tip strong {
	color: rgba(255, 255, 255, 0.9);
}

.c4ma__reset-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
}

.c4ma__reset-resend {
	display: block;
	width: 100%;
	background: #0239cc;
	color: #fff !important;
	text-align: center;
	padding: 14px;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s;
	box-sizing: border-box;
}

.c4ma__reset-resend:hover {
	background: #0073bb;
	color: #fff !important;
	text-decoration: none;
}

.c4ma__reset-support {
	display: block;
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.35) !important;
	text-decoration: none;
	transition: color 0.2s;
}

.c4ma__reset-support:hover {
	color: rgba(255, 255, 255, 0.6) !important;
	text-decoration: none;
}

.c4ma__reset-hint {
	font-family: 'Karla', sans-serif;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
	margin: 12px 0 0;
}

/* ── Magic link login — steps + form ────────────────────────────────────── */

.c4ma__steps {
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 24px 22px;
	margin-bottom: 14px;
}

.c4ma__step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.c4ma__step + .c4ma__step {
	margin-top: 20px;
}

.c4ma__step-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.c4ma__step-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(245, 166, 35, 0.1);
	border: 1.5px solid rgba(245, 166, 35, 0.4);
	color: #f5a623;
	font-family: 'Anton', Impact, sans-serif;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.c4ma__step-line {
	width: 1px;
	min-height: 20px;
	flex: 1;
	background: rgba(255, 255, 255, 0.07);
	margin: 5px 0;
}

.c4ma__step-text {
	padding-top: 4px;
}

.c4ma__step-eyebrow {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.68px;
	color: rgba(245, 166, 35, 0.55);
	margin-bottom: 4px;
}

.c4ma__step-title {
	font-family: 'Anton', Impact, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 4px;
	line-height: 1.1;
}

.c4ma__step-desc {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.38);
	line-height: 1.5;
}

.c4ma__magic-form-wrap {
	background: #111111;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 22px;
}

.c4ma__magic-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.c4ma--login .c4ma__input,
.c4ma--login .c4ma__input:not([type=checkbox]) {
	background: rgba(255, 255, 255, 0.06) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 8px !important;
	color: #fff !important;
	padding: 13px 14px !important;
	font-family: 'Karla', sans-serif;
	font-size: 15px;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.15s;
}

.c4ma--login .c4ma__input::placeholder {
	color: rgba(255, 255, 255, 0.28);
}

.c4ma--login .c4ma__input:focus {
	outline: none !important;
	border-color: #0239cc !important;
}

.c4ma__magic-btn {
	background: #0239cc;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	width: 100%;
	transition: background 0.2s;
}

.c4ma__magic-btn:hover {
	background: #0073bb;
}

.c4ma__magic-note {
	font-family: 'Karla', sans-serif;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.25);
	text-align: center;
	margin: 14px 0 0;
	line-height: 1.5;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
	.c4ma__container {
		padding: 0 16px;
	}

	.c4ma__header {
		padding: 24px 0;
	}

	.c4ma__header-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.c4ma__stats-row {
		width: 100%;
		justify-content: space-between;
		gap: 12px;
	}

	.c4ma__nav-item {
		padding: 14px 12px;
		font-size: 13px;
	}

	.c4ma__draw-card {
		grid-template-columns: 1fr;
	}

	.c4ma__draw-img-wrap {
		height: 200px;
	}

	.c4ma__draw-info {
		padding: 20px;
	}

	.c4ma__draw-title {
		font-size: 17px;
	}

	.c4ma__stat-num {
		font-size: 22px;
	}

	.c4ma__welcome {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.c4ma__nav-item--logout span {
		display: none;
	}

	.c4ma__ticket-numbers {
		gap: 4px;
	}
}
