/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #344054;
    background: #FBFBF8;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea { font-family: inherit; outline: none; }

:root {
    --color-green-dark: #214d31;
    --color-green-darker: #134d25;
    --color-green-bg: #154c26;
    --color-green: #4d801c;
    --color-green-light: #769d31;
    --color-green-light-2: #65862f;
    --color-green-border: #7ba035;
    --color-green-border-2: #b3c998;
    --color-green-border-3: #d4e2c0;
    --color-green-border-4: #d6e2c3;
    --color-green-border-5: #dae4d3;
    --color-orange-border: #fde1ba;
    --color-cream: #f9f7f0;
    --color-cream-2: #f8f6f0;
    --color-cream-3: #fdfaf7;
    --color-text-primary: #344054;
    --color-text-secondary: #475467;
    --color-text-placeholder: #98a2b3;
    --color-text-href: #004EEB;
    --color-border: #d0d5dd;
    --color-divider: #949494;
    --shadow-sm: 0px 1px 2px rgba(16,24,40,0.05);
    --shadow-md: 0px 4px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0px 4px 20px rgba(0,0,0,0.15);
    --shadow-card: 0px 4px 20px rgba(53,64,43,0.1);
    --shadow-btn: 2.39px 4.78px 11.95px rgba(0,0,0,0.1);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 4.2px;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-register-sm {
    background: var(--color-green-dark);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
}

.btn-primary {
    background: var(--color-green-dark);
    color: #fff;
    height: 63px;
    padding: 15px 21px;
    font-size: 21px;
    line-height: 30px;
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: #1a3e27; }

.btn-secondary {
    background: #f9f9f9;
    color: var(--color-green-light-2);
    height: 63px;
    padding: 15px 21px;
    font-size: 21px;
    line-height: 30px;
    border: 1.05px solid var(--color-green-border);
    box-shadow: var(--shadow-btn);
}
.btn-secondary:hover { background: #f0f0f0; }

.btn-submit-wrapper {
    display: flex;
    justify-content: center;
}
.btn-submit {
    background: var(--color-green-dark);
    color: #fff;
    height: 63px;
    padding: 15px 48px;
    font-size: 21px;
    line-height: 30px;
    box-shadow: var(--shadow-btn);
    margin: 0 auto 0;
}
.btn-submit:hover { background: #1a3e27; }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    height: 96px;
    overflow: hidden;
}
.header-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.5) 50%, rgba(255,255,255,0) 100%);
}
.header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1696px;
    height: 72px;
    margin: 0 auto;
    padding: 12px 112px;
    gap: 56px;
}
.header-logos { display: flex; align-items: center; gap: 48px; justify-content: space-between; width: 100%; }
.logo-vcb { height: 42px; width: 126px; object-fit: contain; }
.logo-haha { height: 42px; width: 149px; object-fit: contain; }
.logo-small { height: 54px; width: 74px; object-fit: contain; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    width: 100%;
    height: 810px;
    overflow: hidden;
    background: #fbfbf8;
}
.hero-left-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 649px;
    height: 672px;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 754px;
    object-fit: cover;
    object-position: center top;
    z-index: 2;
}
.hero-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 119px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 36%, rgba(255,255,255,.58) 70%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 3;
}
.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 151px;
    background: linear-gradient(0deg, rgb(251,251,248) 0%, rgb(253,253,253) 43%, rgba(253,253,253,.58) 78%, rgba(254,254,254,0) 100%);
    pointer-events: none;
    z-index: 3;
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 110px 80px 80px;
    max-width: 1440px;
    margin: 0 auto;
}
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    flex-shrink: 0;
    align-self: end;
}
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}
.hero-title-img {
    width: 100%;
    max-width: 405px;
    height: auto;
    object-fit: contain;
    margin-top: 46px;
    margin-bottom: 46px;
}
.hero-badge {
    width: 311px;
    height: 248px;
    object-fit: contain;
    flex-shrink: 0;
}
.hero-tagline {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    color: var(--color-green-dark);
}
.hero-pill {
    background: #769C30;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    padding: 12px;
    border-radius: 99px;
    line-height: 1;
}
.btn-hero-register {
    align-self: center;
    margin-top: 92px;
}

/* ---------- Intro Section ---------- */
.intro-section {
    padding: 48px 80px;
    /* background: #fbfbf8; */
    /* margin-top: 100px; */
}
/* .intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
} */
 .intro-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
}
/* .video-wrapper {
    position: relative;
    width: 913px;
    max-width: 100%;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 12px solid #fff;
    box-shadow: var(--shadow-md);
} */
 .video-wrapper {
    position: relative;
    width: 593px;
    height: 338px;
    max-width: 100%;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 12px solid #fff;
    box-shadow: var(--shadow-md);
}
.video-thumb { width: 100%; height: 100%; object-fit: cover; border-radius: 10px;}
.video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: auto;
    max-width: 30%;
    pointer-events: none;
    z-index: 2;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}
.play-button:hover { background: rgba(255,255,255,.25); transform: translate(-50%,-50%) scale(1.05); }
.video-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    pointer-events: none;
}
.video-controls-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.8) 100%);
}
.video-play-pause {
    position: absolute;
    left: 8px;
    bottom: 36px;
    pointer-events: auto;
}
.video-time {
    position: absolute;
    left: 40px;
    bottom: 36px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}
.video-volume {
    position: absolute;
    right: 48px;
    bottom: 43px;
    pointer-events: auto;
}
.video-expand {
    position: absolute;
    right: 16px;
    bottom: 35px;
    pointer-events: auto;
}
.video-progress {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 20px;
    height: 4px;
    background: rgba(255,255,255,.3);
    border-radius: 3px;
}
.video-progress-bar {
    height: 100%;
    background: #fff;
    border-radius: 3px;
}

.intro-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 10px;
}
.intro-title {
    color: var(--color-green-dark);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.italic-green {
    color: var(--color-green-light);
    font-style: italic;
    font-weight: 600;
}
.intro-paragraph {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-primary);
    font-weight: 500;
    margin: 0;
}
.intro-paragraph p { margin: 0 0 16px; }
.intro-paragraph p:last-child { margin-bottom: 0; }
.intro-highlight p {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 16px;
    color: var(--color-text-primary);
}
.intro-highlight p:last-child { margin-bottom: 0; }

/* ---------- Cards Section: Trải nghiệm độc bản ---------- */
.cards-section {
    padding: 48px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 58px;
    background: #fbfbf8;
}
.cards-section-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
}
.cards-leaf-decor {
    position: absolute;
    top: 0px;
    left: 10px;
    object-fit: contain;
    pointer-events: none;
}
.cards-italic-label {
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    line-height: 38px;
    color: var(--color-text-primary);
}
.cards-title-img {
    width: 444px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1280px;
    width: 100%;
}
.exp-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f3 62.77%);
    border: 1px solid #eaecf0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 473px;
}
.exp-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 24px 32px;
}
.exp-card-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.exp-card-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--color-green-dark);
    text-align: center;
}
.exp-card-desc {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #667085;
    text-align: center;
}
.exp-card-image {
    width: 100%;
    aspect-ratio: 296 / 165;
    object-fit: cover;
    display: block;
}

/* ---------- Mid Banner: 2 Passes ---------- */
.mid-banner-section {
    padding: 24px 80px;
    background: #fbfbf8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-top: 100px;
}
.passes-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
}
.passes-leaf {
    width: 42px;
    height: 44px;
    object-fit: contain;
}
.passes-leaf-left { transform: rotate(-90deg); }
.passes-leaf-right { transform: rotate(-90deg) scaleY(-1); }
.passes-heading {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: var(--color-green-dark);
    white-space: nowrap;
}
.passes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1280px;
    width: 100%;
}
.pass {
    background: #fdfdfc;
    border: 2px solid;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.pass-orange { border-color: #E2DCC4; }
.pass-green { border-color: var(--color-green-border-5); }
.pass-header {
    display: flex;
    align-items: center;
    gap: 24px;
}
.pass-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}
.pass-title-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pass-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}
.pass-orange .pass-title { color: #BDA12F; }
.pass-green .pass-title { color: var(--color-green-dark); }
.pass-separator {
    width: 80px;
    height: 3px;
    border-radius: 4px;
}
.pass-orange .pass-separator { background: #ef8d1c; }
.pass-green .pass-separator { background: var(--color-green-dark); }
.pass-subtitle {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-text-primary);
}
.pass-body {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}
.pass-benefits {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 24px;
}
.benefit-group { display: flex; flex-direction: column; gap: 8px; }
.benefit-label {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--color-text-primary);
}
.benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url('../asset/check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 11px;
}
.pass-orange .benefit-check { background-color: #BDA12F; }
.pass-green .benefit-check { background-color: var(--color-green-dark); }
.benefit-list {
    margin: 0;
    padding-left: 36px;
    list-style: disc;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text-primary);
}
.benefit-list li { margin-bottom: 2px; }
.pass-image {
    width: 204px;
    max-width: 30%;
    height: auto;
    object-fit: contain;
    align-self: center;
    flex-shrink: 0;
}

/* ---------- BXH Section: Steps + Leaderboard ---------- */
.bxh-section {
    padding: 24px 80px;
    background: #fbfbf8;
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 100px;
}

/* Steps block */
.steps-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 0;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}
.steps-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
}
.steps-decor { width: 60px; height: 60px; object-fit: contain; }
.steps-decor-left { transform: scaleY(-1) rotate(180deg); }
.steps-heading-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--color-green-dark);
    white-space: nowrap;
}
.steps-number {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1.2px;
}
.steps-heading {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: -0.72px;
}
.steps-grid {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1281px;
}
.step-card {
    background: linear-gradient(180deg, #ffffff 0%, rgba(250, 249, 243, 0) 62.77%);
    border-radius: 24px;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
}
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, #cdeeae 0%, #cdeeae 90%, transparent 90%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}
.step-card > * { position: relative; z-index: 1; }
.step-card-sm { width: 340px; flex-shrink: 0; }
.step-card-md { width: 387px; flex-shrink: 0; }
.step-card-lg { width: 458px; flex-shrink: 0; }
.step-illustration {
    width: 160px;
    height: 91px;
    object-fit: contain;
}
.step-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: var(--color-green-dark);
    text-align: center;
}
.step-badge {
    display: none;
    width: 52px;
    height: 52px;
    background-color: #88B14F;
    border-radius: 99px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.step-list {
    margin: 0;
    padding-left: 24px;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    font-weight: 500;
}
.step-list li { margin-bottom: 4px; }
.step-text {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    font-weight: 500;
    width: 100%;
}
.step-action {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
}
.step-text-bold { font-weight: 700; color: var(--color-green-dark); }

/* Step 3 sub-sections */
.step-sub {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.step-sub-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    width: 100%;
}
.step-sub-title-orange { color: #BDA12F; }
.step-sub-title-green { color: #01511e; }
.step-sub-desc {
    margin: 0;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
    line-height: 18px;
    color: #667085;
    width: 100%;
}
.step-sub-desc strong {
    font-weight: 700;
    font-style: italic;
}
.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background: #f9f9f9;
    border: 1.05px solid var(--color-green-border);
    border-radius: 4px;
    color: var(--color-green-light-2);
    font-size: 12px;
    font-weight: 600;
    line-height: 30px;
    transition: background .15s ease, transform .15s ease;
}
.btn-outline-sm:hover { background: #f0f0f0; transform: translateY(-1px); }

.steps-bg {
    position: relative;
    width: 100%;
    max-width: 1281px;
    height: auto;
    margin-top: -60px;
    z-index: 1;
    border-radius: 0 0 24px 24px;
    pointer-events: none;
}

/* BXH Leaderboard block */
.bxh-block {
    background: linear-gradient(180deg, #faf9f3 41.83%, #f8f6ee 100%);
    border: 2px solid var(--color-green-border-5);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}
.bxh-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
}
.bxh-leaf { width: 42px; height: 44px; object-fit: contain; }
.bxh-leaf-left { transform: rotate(-90deg); }
.bxh-leaf-right { transform: rotate(-90deg) scaleY(-1); }
.bxh-heading {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.72px;
    color: var(--color-green-dark);
    white-space: nowrap;
}
.bxh-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 218px;
    padding: 16px 0;
    width: 100%;
    flex-wrap: wrap;
}
.bxh-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.bxh-question {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    line-height: 12px;
    letter-spacing: -0.72px;
    color: var(--color-green-dark);
}
.bxh-question em { font-style: italic; }
.bxh-haha { color: #88b14f; }
.bxh-question-sep {
    width: 80px;
    height: 3px;
    border-radius: 4px;
    background: #88b14f;
}
.bxh-decor-img {
    width: 319px;
    height: 345px;
    object-fit: contain;
}
.bxh-refresh {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-green-dark);
    user-select: none;
    transition: opacity .15s ease;
}
.bxh-refresh:hover { opacity: .75; }
.bxh-refresh:focus-visible { outline: 2px solid var(--color-green-light); outline-offset: 4px; border-radius: 4px; }
.bxh-refresh svg { transition: transform .4s ease; }
.bxh-refresh-loading svg { animation: bxh-spin 0.8s linear infinite; }
@keyframes bxh-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.bxh-right { width: 371px; flex-shrink: 0; }
.bxh-table {
    border: 1px solid var(--color-green-dark);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    background: #fdfdfd;
    height: 630px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-green-light) transparent;
}
.bxh-table::-webkit-scrollbar { width: 6px; }
.bxh-table::-webkit-scrollbar-track { background: transparent; }
.bxh-table::-webkit-scrollbar-thumb {
    background: var(--color-green-light);
    border-radius: 4px;
}
.bxh-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    height: 48px;
    padding: 2px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-green-dark);
}
.bxh-row:nth-child(even) { background: #fbfaf6; }
.bxh-head {
    background: var(--color-green-dark) !important;
    color: #fff;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1;
}
.bxh-row .bxh-rank {
    width: 46px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bxh-row .bxh-value {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-align: right;
}
.bxh-head .bxh-rank,
.bxh-head .bxh-value { font-weight: 700; font-size: 16px; line-height: 24px; flex: 1; text-align: left; width: auto; }
.bxh-head .bxh-rank { justify-content: flex-start; }
.bxh-head .bxh-value { text-align: right; }
.bxh-row-top .bxh-value { font-weight: 700; font-size: 18px; }
.bxh-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: #d9d9d9;
}
.bxh-row-dots { justify-content: center; color: var(--color-green-dark); }
.bxh-row-dots span { font-weight: 500; }

/* ---------- Registration Section ---------- */
.registration-section {
    position: relative;
    padding: 84px 48px;
    margin: 100px 0;
    background: var(--color-cream);
    overflow: hidden;
}
.registration-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 68px;
    max-width: 1344px;
    margin: 0 auto;
}
.registration-decor {
    position: absolute;
    right: 29px;
    bottom: -84px;
    width: 158px;
    height: 56px;
    z-index: 0;
}
.registration-form-wrapper {
    display: flex;
    align-items: center;
    gap: 68px;
    width: 100%;
}
.registration-image {
    width: 479px;
    height: 407px;
    object-fit: contain;
    flex-shrink: 0;
}
.registration-form {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.registration-form form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.leaf-icon { width: 42px; height: 44px; }
.leaf-left {  }
.leaf-right {  }
.form-title {
    color: var(--color-green-darker);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    margin: 0;
    white-space: nowrap;
}
.form-row {
    display: flex;
    align-items: center;
    gap: 31px;
    width: 100%;
}
.form-row label {
    width: 260px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--color-text-primary);
    flex-shrink: 0;
}
.form-label-group {
    width: 260px;
    flex-shrink: 0;
}
.form-label-group label { width: auto; }
.form-label-hint {
    display: block;
    font-size: 10px;
    line-height: 18px;
    color: var(--color-text-primary);
    font-weight: 400;
    white-space: nowrap;
}
.form-row input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-primary);
    background: #fff;
    transition: border-color .15s;
}
.form-row input::placeholder { color: var(--color-text-placeholder); }
.form-row input:focus { border-color: var(--color-green-light); }
.form-row.has-error input { border-color: #d92d20; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    /* margin: 4px 0 0; */
    accent-color: var(--color-green-dark);
    cursor: pointer;
}
.form-checkbox label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.form-checkbox label a {
    color: var(--color-text-href);
    text-decoration: underline;
}

/* ---------- FAQ Section ---------- */
.faq-section {
    padding: 32px 80px 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    background: #fdfdfd;
}
.faq-header {
    max-width: 768px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-title {
    color: var(--color-green-dark);
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin: 0;
}
.faq-subtitle {
    color: var(--color-text-secondary);
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}
.faq-list {
    max-width: 1280px;
    width: 100%;
    border: 2px solid var(--color-green-border-2);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-item {
    border-top: 1px solid var(--color-green-border-4);
    padding-top: 24px;
}
.faq-item:first-child {
    border-top: none;
    padding-top: 0;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    padding: 0;
}
.faq-question span:first-child {
    flex: 1;
    color: var(--color-green-dark);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    background: url('../asset/plus-circle.svg') center/contain no-repeat;
}
.faq-open .faq-icon {
    background-image: url('../asset/minus-circle.svg');
}
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height .25s ease, padding .25s ease;
    padding-top: 0;
}
.faq-answer p {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.faq-answer p a {
    color: var(--color-text-href);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.faq-open .faq-answer {
    max-height: 500px;
    padding-top: 8px;
}

/* ---------- Footer ---------- */
.footer {
    background: #154C26;
    padding: 64px 0 48px;
    color: #fff;
}
.footer-container {
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 32px;
}
.footer-main {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-sponsors {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.footer-sponsor {
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-sponsor-vcb { width: 258; height: 45px; }
.footer-sponsor-vtv3 { width: 73px; height: 27px; }
.footer-sponsor-yeah1 { width: 155px; height: 27px; }
.footer-sponsor-production { width: 289px; height: 27px; }
.footer-sponsor-mango { width: 207px; height: 56px; margin-bottom: -9px;}

.footer-info {
    max-width: 60%;
}
.footer-info p {
    color: #fff;
    font-size: 16px;
    line-height: 32px;
    margin: 0 0 4px;
}
.footer-info strong { font-weight: 700; }
.footer-link { text-decoration: underline; }

.social-icons {
    display: flex;
    gap: 24px;
    align-items: center;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: opacity .15s;
}
.social-icons a img { width: 24px; height: 24px; object-fit: contain; }
.social-icons a:hover { opacity: .75; }

.footer-side {
    position: absolute;
    right: 0;
    bottom: 24px;
    width: 205px;
    height: 171px;
    object-fit: contain;
    pointer-events: none;
}

.footer-bottom {
    border-top: 1px solid var(--color-divider);
    padding-top: 32px;
    margin-top: 32px;
    text-align: center;
}
.footer-bottom p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-green-dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
    z-index: 1000;
}
.toast.toast-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast.toast-error { background: #b42318; }

/* ---------- Popup / Modal ---------- */
.popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.50);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity .2s ease;
}
.popup.popup-show {
    display: flex;
    opacity: 1;
}
.popup-dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(20, 76, 38, 0.2);
    padding: 32px 46px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    animation: popup-slide-in .25s ease;
}
.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    color: #98a2b3;
    background: transparent;
    transition: color .15s ease, background .15s ease;
}
.popup-close:hover { color: var(--color-green-dark); background: #f2f4f7; }
.popup-close:focus-visible { outline: 2px solid var(--color-green-border); outline-offset: 2px; }
.popup-dialog-wide { max-width: 868px; }
.popup-dialog-narrow { max-width: 512px; }
@keyframes popup-slide-in {
    from { transform: translateY(20px) scale(.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.popup-leaf {
    width: 42px;
    height: 44px;
    object-fit: contain;
}
.popup-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    color: var(--color-green-darker);
    white-space: nowrap;
    text-align: center;
}
.popup-text {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text-primary);
}
.popup-text-center { text-align: left; }
.popup-text p { margin: 0 0 8px; }
.popup-text p:last-child { margin-bottom: 0; }
.popup-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #182230;
}
.popup-body p { margin: 0; }
.popup-body strong { font-weight: 700; }
.popup-link {
    color: var(--color-text-href);
    text-decoration: underline;
    font-weight: 600;
}
.popup-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 20px;
}
.btn-popup {
    flex: 1;
    height: 63px;
    padding: 15px 21px;
    border-radius: 4.2px;
    font-size: 21px;
    font-weight: 600;
    line-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background .15s ease, transform .15s ease;
}
.btn-popup-primary {
    background: var(--color-green-dark);
    color: #fff;
    box-shadow: var(--shadow-btn);
}
.btn-popup-primary:hover { background: #1a3e27; transform: translateY(-1px); }
.btn-text-mobile { display: none; }

/* Popup ONLINE: 2 action cards */
.popup-actions-cards {
    gap: 24px;
    margin-top: 24px;
}
.popup-action-card {
    flex: 1;
    background: var(--color-green-dark);
    border: 2px solid var(--color-green-dark);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    text-align: left;
    cursor: pointer;
    color: #fff;
    box-shadow: var(--shadow-btn);
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.popup-action-card:hover {
    background: #1a3e27;
    border-color: #1a3e27;
    transform: translateY(-1px);
}
.popup-action-card svg path { stroke: currentColor; }
.popup-action-question {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
}
.popup-action-desc {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.85);
}
.popup-action-link {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

@media (max-width: 640px) {
    .popup-dialog { padding: 20px; }
    .popup-title { font-size: 18px; white-space: normal; }
    .btn-text-desktop { display: none; }
    .btn-text-mobile { display: inline; }

    /* SUCCESS popup: ẩn leaf, canh trái title + text */
    #popup-success .popup-leaf { display: none; }
    #popup-success .popup-header { justify-content: flex-start; }
    #popup-success .popup-title { text-align: left; }
    #popup-success .popup-text-center { text-align: left; }

    /* SUCCESS popup: 2 button stacked full-width — Online (filled) lên trước, Quầy (outline) sau */
    .popup-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
    .btn-popup {
        width: 100%;
        font-size: 16px;
        line-height: 22px;
        height: 52px;
        padding: 12px 16px;
        flex: none;
    }
    #btn-popup-online { order: 1; }
    #btn-popup-quay {
        order: 2;
        background: #fff;
        color: #88B14F;
        border: 1px solid #88B14F;
        box-shadow: none;
    }
    #btn-popup-quay svg path { stroke: var(--color-green-dark); }
    #btn-popup-quay:hover { background: #f0f4ef; }

    /* ONLINE popup: 2 action card stacked, card 1 filled / card 2 outline */
    .popup-actions-cards {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
    .popup-action-card {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 16px 10px;
        gap: 6px;
    }
    .popup-action-question { display: none; }
    .popup-action-link {
        order: 1;
        margin-top: 0;
        width: 100%;
        justify-content: center;
        font-size: 16px;
        line-height: 22px;
    }
    .popup-action-desc {
        order: 2;
        text-align: left;
        width: 100%;
        font-size: 13px;
        line-height: 18px;
    }
    /* Card 1: filled xanh đậm */
    #action-open-saving {
        background: var(--color-green-dark);
        border-color: var(--color-green-dark);
    }
    #action-open-saving .popup-action-link { color: #fff; }
    #action-open-saving .popup-action-desc { color: rgba(255, 255, 255, 0.85); }
    #action-open-saving:hover {
        background: #1a3e27;
        border-color: #1a3e27;
    }
    /* Card 2: outline xanh đậm */
    #action-activate-app {
        background: #fff;
        border-color: var(--color-green-dark);
    }
    #action-activate-app .popup-action-link { color: var(--color-green-dark); }
    #action-activate-app .popup-action-desc { color: var(--color-text-secondary); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
    .header-container { padding: 12px 48px; }
    .intro-section, .cards-section, .mid-banner-section,
    .bxh-section, .faq-section { padding-left: 48px; padding-right: 48px; }
    .bxh-content { gap: 64px; }
}

@media (max-width: 1024px) {
    .header { height: 80px; }
    .header-container { height: 56px; padding: 12px 24px; }
    .header-logos { gap: 24px; }
    .logo-vcb { height: 32px; width: auto; }
    .logo-haha { height: 32px; width: auto; }
    .logo-small { height: 40px; width: auto; }
    .hero { height: 640px; }
    .hero-image { height: 580px; }
    .hero-content { padding: 100px 32px 60px; gap: 32px; }
    .hero-left { width: auto; flex: 1; max-width: 420px; padding-bottom: 24px; }
    .hero-text { 
        gap: 20px; 
    }
    .hero-badge { width: 260px; height: auto; }
    /* .hero-tagline { font-size: 16px; } */
    .hero-pill { font-size: 18px; padding: 10px 16px; }
    .btn-hero-register { font-size: 18px; height: 56px; padding: 12px 18px; }
    .intro-title { font-size: 28px; line-height: 36px; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .exp-card { min-height: auto; }
    .passes-grid { grid-template-columns: 1fr; }
    .passes-heading { font-size: 24px; line-height: 32px; white-space: normal; text-align: center; }
    .pass-body { flex-direction: column; }
    .pass-benefits { padding-left: 0; }
    .pass-image { width: 200px; max-width: 100%; }
    .steps-grid { flex-direction: column; gap: 24px; max-width: 600px; align-items: stretch; }
    .step-card-sm, .step-card-md, .step-card-lg { width: 100%; }
    .steps-heading { font-size: 24px; }
    .steps-number { font-size: 44px; }
    .bxh-heading { font-size: 24px; line-height: 32px; white-space: normal; }
    .bxh-content { flex-direction: column; align-items: center; gap: 32px; }
    .bxh-left { align-items: center; text-align: center; }
    .bxh-right { width: 100%; max-width: 480px; }
    .registration-form-wrapper { flex-direction: column; gap: 32px; }
    .registration-image { width: 100%; max-width: 479px; }
    .faq-title { font-size: 28px; line-height: 36px; }
    .footer-sponsors { gap: 24px; row-gap: 20px; justify-content: center; }
    .footer-info { max-width: 100%; }
    .footer-side { width: 180px; height: auto; right: 16px; bottom: 16px; }
}

@media (max-width: 640px) {
    .header-container { padding: 8px 16px; gap: 12px; }
    .header-logos { gap: 12px; }
    .btn-register-sm { padding: 8px 12px; font-size: 12px; }
    .step-badge { display: flex; }

    /* Hero */
    .hero { height: 720px; }
    .hero-image { height: 600px; }
    .hero-left-decor { display: none; }
    .hero-content {
        position: absolute;
        inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        padding: 110px 24px 32px;
        max-width: none;
    }
    .hero-left {
        display: contents;
    }
    .hero-text {
        order: 1;
        gap: 0;
    }
    .hero-title-img { 
        max-width: 340px;
        margin-top: 41px;
        margin-bottom: 41px;
    }
    .hero-badge {
        order: 2;
        width: 200px;
        height: auto;
        margin: 8px 0 0;
    }
    .btn-hero-register {
        order: 3;
        margin-top: 87px;
        font-size: 21px;
        height: 63px;
        font-weight: 600;
        padding: 12px 21px;
    }
    .intro-title { font-size: 36px; font-weight: 700; }
    .hero-tagline { font-size: 20px; line-height: 18px; margin: 0; font-weight: 700;}
    .hero-pill { font-size: 18px; 
        padding: 9px; 
    }
    .hero-gradient-bottom {
        bottom: 50px;
    }

    /* Section padding */
    .intro-section, .mid-banner-section,
    .bxh-section, .faq-section, .registration-section {
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 60px;
    }
    .intro-section { padding-top: 0px; padding-bottom: 32px; }
    .intro-container {
        flex-direction: column;
    }
    .video-wrapper { width: 100%; height: auto; aspect-ratio: 913 / 520; }
    /* Cards section: scroll ngang */
    .cards-section {
        padding: 32px 0;
        gap: 32px;
    }
    .cards-section-title { padding: 0 16px; }
    .cards-italic-label { font-size: 22px; line-height: 30px; }
    .cards-title-img { width: 100%; max-width: 320px; }
    .cards-leaf-decor { left: 0; width: 60px; height: auto; }
    .experience-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        padding: 8px 16px;
        scroll-snap-type: x mandatory;
        scroll-padding: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #cdeeae transparent;
    }
    .experience-grid::-webkit-scrollbar { height: 6px; }
    .experience-grid::-webkit-scrollbar-track { background: transparent; }
    .experience-grid::-webkit-scrollbar-thumb { background: #cdeeae; border-radius: 4px; }
    .exp-card {
        flex: 0 0 280px;
        width: 280px;
        scroll-snap-align: center;
        min-height: 440px;
    }
    .exp-card-title { font-size: 24px; line-height: 32px; font-weight: 700; }
    .exp-card-desc { font-size: 18px; line-height: 28px; font-weight: 500;}

    /* Passes */
    .passes-title { padding: 12px 0; gap: 12px; }
    .passes-heading { font-size: 24px; line-height: 32px; font-weight: 600;}
    .passes-leaf { width: 32px; height: 34px; }
    .pass-icon { width: 100px; height: 100px; }
    .pass-title { font-size: 24px; font-weight: 600; line-height: 32px; }
    .pass { padding: 16px; }

    /* Steps + BXH */
    .steps-header { padding: 12px 0; gap: 12px; }
    .steps-number { font-size: 60px; font-weight: 700; }
    .steps-heading { font-size: 24px; font-weight: 600;}
    .steps-decor { width: 40px; height: 40px; }
    .step-card-sm, .step-card-md, .step-card-lg { width: 100%; }
    .steps-bg { display: none; }
    .bxh-block { padding: 16px; }
    .bxh-header { padding: 12px 0; gap: 12px; }
    .bxh-heading { font-size: 26px; line-height: 32px; font-weight: 600; text-align: center;}
    .bxh-leaf { width: 32px; height: 34px; }
    .bxh-question { font-size: 22px; gap: 20px; line-height: 8px; }
    .bxh-decor-img { width: 319px; height: auto; }
    .bxh-row { padding: 2px 12px; font-size: 14px; }
    .bxh-row .bxh-value { font-size: 14px; }

    /* Registration form */
    .registration-section {
        padding: 84px 16px;
        background: var(--color-cream);
    }
    .registration-decor { display: none; }
    .registration-container { max-width: 100%; gap: 0; }
    .registration-form-wrapper {
        flex-direction: column-reverse;
        gap: 0;
        align-items: stretch;
    }
    .registration-image {
        width: calc(100% + 32px);
        max-width: none;
        height: 373px;
        margin: 0 -16px -8px;
        object-fit: contain;
        object-position: center;
        align-self: center;
    }
    .registration-form {
        width: 100%;
        padding: 32px 23px;
        border-radius: 12px;
        background: #fff;
        box-shadow: var(--shadow-card);
        gap: 24px;
    }
    .step-action {
        /* width: 100%;
        display: flex;
        flex-direction: row; */
        justify-content: center;
    }
    .pass-header {
        flex-direction: column;
        /* display: flex;
        align-items: center;
        gap: 24px; */
    }
    .pass-image { width: 130px; max-width: 190px; }
    .popup-text-center { text-align: left; }


    .form-header { gap: 12px; }
    .leaf-icon { width: 42px; height: 44px; flex-shrink: 0; }
    .form-title {
        font-size: 24px;
        line-height: 26px;
        white-space: normal;
        text-align: center;
        flex: 1;
    }
    .registration-form form { gap: 16px; }
    .form-row { flex-direction: column; align-items: stretch; gap: 8px; }
    .form-row label, .form-label-group { width: auto; }
    .form-row input { width: 100%; }
    .form-label-hint { white-space: normal; }
    .btn-submit {
        width: 100%;
        font-size: 20px;
        line-height: 26px;
        padding: 16px 12px;
        height: auto;
        min-height: 64px;
        white-space: normal;
        margin: 0;
    }

    .faq-list { padding: 20px; }
    .faq-title { font-size: 36px; font-weight: 600; line-height: 44px; }

    .footer { padding: 48px 0 32px; }
    .footer-container { padding: 0 32px; }
    .footer-main { align-items: center; gap: 32px; }
    .footer-sponsors {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 100%;
        margin-bottom: 0;
    }
    .footer-info {
        max-width: 100%;
        width: 100%;
        align-self: stretch;
    }
    .footer-info p { line-height: 26px; margin: 0 0 8px; }
    .social-icons { justify-content: center; }
    .footer-side {
        position: static;
        width: 205px;
        height: 171px;
        align-self: center;
    }
}
