*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222;
    --accent: #44e55d;
    --accent-glow: rgba(68, 229, 93, 0.3);
    --accent-dark: #2ba842;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666;
    --border: #2a2a2a;
    --gold: #f0c040;
    --gold-glow: rgba(240, 192, 64, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background grid effect */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(68, 229, 93, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(68, 229, 93, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0 20px;
}

.header-logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.header-tagline {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Hero */
.hero {
    text-align: center;
    padding: 30px 0 40px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(28px, 6vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-start.btn-trustpilot {
    background: #c8ffd7 !important;
    color: #000000 !important;
    text-decoration: none !important;
    border: 1px solid #9fe9b4 !important;
    min-width: 260px;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(200, 255, 215, 0.2);
}

.btn-start.btn-trustpilot:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 255, 215, 0.28);
}

.btn-trustpilot-star {
    color: #00b67a;
    font-size: 16px;
    line-height: 1;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-start svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-start:hover svg {
    transform: translateX(4px);
}

/* Hero image */
.hero-image {
    width: 280px;
    max-width: 80%;
    margin: 0 auto 24px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(68, 229, 93, 0.15));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(68, 229, 93, 0.15), transparent);
    border-radius: 50%;
    filter: blur(8px);
    animation: heroShadow 4s ease-in-out infinite;
}

@keyframes heroShadow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.85); opacity: 0.6; }
}

/* Product showcase */
.product-showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 10px 0 20px;
    flex-wrap: wrap;
}

.product-stat {
    text-align: center;
}

.product-stat .value {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.product-stat .label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Sections / Steps */
.section {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quiz */
.quiz-container {
    padding: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #7dff92);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.quiz-step-indicator {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.quiz-question {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 15px;
    color: var(--text-primary);
}

.quiz-option:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.quiz-option.selected {
    border-color: var(--accent);
    background: rgba(68, 229, 93, 0.08);
}

.quiz-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.quiz-option.selected .quiz-option-icon {
    background: var(--accent);
}

/* Boxes game */
.boxes-section {
    text-align: center;
    padding: 20px 0;
}

.boxes-title {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    margin-bottom: 8px;
}

.boxes-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 380px;
    margin: 0 auto 30px;
}

.gift-box {
    aspect-ratio: 1;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #1e1e2a, #16161f);
    border: 1px solid var(--border);
}

.gift-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.04) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
}

/* Box lid */
.gift-box-lid {
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    height: 35%;
    background: linear-gradient(145deg, #2a2a3a, #1e1e2a);
    border-radius: 16px 16px 4px 4px;
    border: 1px solid var(--border);
    border-bottom: 2px solid rgba(68, 229, 93, 0.15);
    z-index: 3;
    transform-origin: top center;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-box-lid::after {
    content: '';
    width: 24px;
    height: 4px;
    background: rgba(68, 229, 93, 0.25);
    border-radius: 2px;
}

.gift-box.opened .gift-box-lid {
    transform: rotateX(-120deg) translateY(-10px);
    opacity: 0.6;
}

/* Product flying out of won box */
.gift-box-product {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}

.gift-box-product img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(68, 229, 93, 0.4));
}

.gift-box.won .gift-box-product {
    animation: productFlyOut 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes productFlyOut {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(10deg);
        opacity: 0;
    }
    40% {
        transform: translate(-50%, -120%) scale(1.3) rotate(-5deg);
        opacity: 1;
    }
    60% {
        transform: translate(-50%, -100%) scale(1.1) rotate(3deg);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -85%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Sparkle particles on win */
.gift-box.won::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 4;
    box-shadow:
        -20px -10px 0 var(--accent),
        20px -15px 0 var(--gold),
        -10px -25px 0 var(--gold),
        15px -30px 0 var(--accent),
        0px -20px 0 #fff,
        -25px -20px 0 var(--accent),
        25px -5px 0 var(--gold);
    animation: sparkles 1.5s ease-out 0.3s forwards;
}

@keyframes sparkles {
    0% { transform: translateX(-50%) scale(0); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.5); opacity: 1; }
    100% { transform: translateX(-50%) scale(2) translateY(-20px); opacity: 0; }
}

.gift-box:not(.opened):not(.disabled):hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(68, 229, 93, 0.15);
}

.gift-box:not(.opened):not(.disabled) {
    cursor: pointer;
}

.gift-box.disabled {
    cursor: default;
    opacity: 0.5;
}

.gift-box-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
}

.gift-box-icon {
    font-size: 36px;
    transition: transform 0.3s;
}

.gift-box:not(.opened):not(.disabled):hover .gift-box-icon {
    transform: scale(1.15) rotate(-5deg);
}

.gift-box-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Opened box states */
.gift-box.opened {
    cursor: default;
}

.gift-box.opened.lost {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-color: #222;
}

.gift-box.opened.lost .gift-box-inner {
    opacity: 0.6;
}

.gift-box.opened.won {
    background: linear-gradient(145deg, #1a2e1a, #0f1f0f);
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(68,229,93,0.1);
    animation: winPulse 2s ease infinite;
    overflow: visible;
    z-index: 10;
}

@keyframes winPulse {
    0%, 100% { box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(68,229,93,0.1); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(68,229,93,0.15); }
}

.box-reveal {
    animation: boxReveal 0.5s ease forwards;
}

@keyframes boxReveal {
    0% { transform: scale(1); }
    30% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.boxes-counter {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ==================== TRANSITION OVERLAY ==================== */
.transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.transition-overlay .transition-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.8s ease;
}

.transition-overlay.phase-1 .transition-backdrop {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.transition-overlay .transition-product {
    position: relative;
    z-index: 2;
    width: 100px;
    opacity: 0;
    transform: scale(0.5) translateY(100px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.transition-overlay.phase-1 .transition-product {
    width: min(280px, 55vw);
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 40px rgba(68, 229, 93, 0.5)) drop-shadow(0 0 80px rgba(68, 229, 93, 0.2));
}

.transition-overlay .transition-product img {
    width: 100%;
    height: auto;
    display: block;
}

/* Glow ring behind product */
.transition-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: all 1.2s ease;
    background: radial-gradient(circle, rgba(68,229,93,0.15) 0%, rgba(68,229,93,0.05) 40%, transparent 70%);
}

.transition-overlay.phase-1 .transition-glow {
    opacity: 1;
    width: min(500px, 90vw);
    height: min(500px, 90vw);
}

/* Transition text */
.transition-text {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.6s;
}

.transition-overlay.phase-1 .transition-text {
    opacity: 1;
    transform: translateY(0);
}

.transition-text h2 {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #7dff92, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    margin-bottom: 6px;
}

.transition-text p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Confetti particles */
.confetti-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    z-index: 10000;
    pointer-events: none;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg) scale(0.3);
    }
}

/* Phase 2: shrink into win screen */
.transition-overlay.phase-2 {
    transition: opacity 0.5s ease;
    opacity: 0;
}

/* Win screen */
.win-section {
    text-align: center;
    padding: 30px 0;
}

.win-confetti {
    font-size: 48px;
    margin-bottom: 20px;
    animation: confettiBounce 1s ease;
}

@keyframes confettiBounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

.win-title {
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent), #7dff92, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.win-product-image {
    width: 220px;
    max-width: 60%;
    margin: 0 auto 10px;
}

.win-product-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(68, 229, 93, 0.2));
    animation: winImagePop 0.8s ease 0.3s both;
}

@keyframes winImagePop {
    0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.05) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.win-prize {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 30px 24px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.win-prize::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
    pointer-events: none;
}

.win-prize-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    position: relative;
}

.win-prize-sub {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.win-prize-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
}

.win-feature-tag {
    font-size: 11px;
    padding: 5px 12px;
    background: rgba(68, 229, 93, 0.1);
    border: 1px solid rgba(68, 229, 93, 0.2);
    border-radius: 20px;
    color: var(--text-secondary);
}

.win-value {
    margin-top: 20px;
    position: relative;
}

.win-value .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.win-value .price-old {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: #ff4444;
    text-decoration-thickness: 2px;
    margin-right: 10px;
    opacity: 0.7;
}

.win-value .price-label {
    font-size: 13px;
    color: var(--gold);
    margin-top: 6px;
    font-weight: 600;
}

.btn-claim {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
    letter-spacing: 0.5px;
}

.btn-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* Form */
.form-section {
    padding: 20px 0 60px;
}

.form-title {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.form-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 16px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(68, 229, 93, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.shipping-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.shipping-option {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

.shipping-option:hover {
    border-color: var(--accent);
}

.shipping-option.selected {
    border-color: var(--accent);
    background: rgba(68, 229, 93, 0.06);
}

.shipping-option-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.shipping-option-name {
    font-size: 13px;
    font-weight: 600;
}

.shipping-option-detail {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #000;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.btn-submit:hover {
    box-shadow: 0 8px 30px var(--accent-glow);
    transform: translateY(-1px);
}

.form-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

/* Success */
.success-section {
    text-align: center;
    padding: 60px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Floating particles */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

/* Timer */
.urgency-bar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: urgencyPulse 1.5s ease infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.urgency-bar strong {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .shipping-options {
        grid-template-columns: 1fr;
    }
    .boxes-grid {
        gap: 10px;
        max-width: 300px;
    }
    .gift-box-icon {
        font-size: 28px;
    }
}
