/* =====================
   RESET & BASE STYLES
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a1628;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 20px 40px 20px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Animated Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 212, 255, 0.07) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5%, 5%) rotate(120deg);
    }
    66% {
        transform: translate(-5%, 5%) rotate(240deg);
    }
}

/* Money Rain Effect */
.matrix-char {
    position: fixed;
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    color: #00d4ff;
    pointer-events: none;
    z-index: 0;
    text-shadow: 0 0 6px rgba(0, 212, 255, 0.4);
    animation: matrixFall linear infinite;
    font-weight: 700;
    opacity: 0.5;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Brighter leading characters (money emojis glow more) */
.matrix-char.bright {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    font-size: 18px;
    opacity: 0.8;
}

/* Grid Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* =====================
   CONTAINER
   ===================== */
.container {
    max-width: 680px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* =====================
   BADGE
   ===================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f2847;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.badge-icon {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* =====================
   MAIN CONTENT
   ===================== */
main {
    animation: fadeInUp 0.8s ease-out;
}

.headline {
    font-size: clamp(40px, 8vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
    position: relative;
}

/* Glitch Effect - Just the word "Big" */
.glitch-word {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 50%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

/* Keep "Coming Black Friday" together on mobile */
.coming-bf {
    display: inline-block;
}

/* Continuous shimmer effect */
@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    }
    50% {
        background-position: 100% center;
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    }
}

.glitch-word.glitch {
    animation: glitch 0.4s cubic-bezier(.25, .46, .45, .94) both, shimmer 3s ease-in-out infinite;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    }
    10% {
        transform: translate(-3px, 3px);
        text-shadow: 2px 2px 0 rgba(0, 212, 255, 0.7), -2px -2px 0 rgba(255, 255, 255, 0.7);
    }
    20% {
        transform: translate(3px, -3px);
        text-shadow: -2px 2px 0 rgba(0, 212, 255, 0.7), 2px -2px 0 rgba(255, 255, 255, 0.7);
    }
    30% {
        transform: translate(-3px, -3px);
        text-shadow: 2px -2px 0 rgba(121, 176, 97, 0.7), -2px 2px 0 rgba(255, 255, 255, 0.7);
    }
    40% {
        transform: translate(3px, 3px);
        text-shadow: -2px -2px 0 rgba(121, 176, 97, 0.7), 2px 2px 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: translate(-2px, 2px);
        text-shadow: 1px 1px 0 rgba(0, 212, 255, 0.5), -1px -1px 0 rgba(255, 255, 255, 0.5);
    }
    60% {
        transform: translate(2px, -2px);
        text-shadow: -1px 1px 0 rgba(121, 176, 97, 0.5), 1px -1px 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        transform: translate(-1px, -1px);
        text-shadow: 1px -1px 0 rgba(0, 212, 255, 0.3), -1px 1px 0 rgba(255, 255, 255, 0.3);
    }
    80% {
        transform: translate(1px, 1px);
        text-shadow: -1px -1px 0 rgba(121, 176, 97, 0.3), 1px 1px 0 rgba(255, 255, 255, 0.3);
    }
    90% {
        transform: translate(0);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    }
}

.subheadline {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    color: #94a3b8;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

/* =====================
   WAITLIST FORM
   ===================== */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.mobile-note {
    font-size: 14px;
    color: #00d4ff;
    margin: -6px 0 4px 0;
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

#nameInput,
#emailInput,
#mobileInput {
    width: 100%;
    padding: 16px 22px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #0f2847;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#nameInput::placeholder,
#emailInput::placeholder,
#mobileInput::placeholder {
    color: #94a3b8;
}

#nameInput:focus,
#emailInput:focus,
#mobileInput:focus {
    background: #0f2847;
    border-color: rgba(0, 212, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button {
    width: 100%;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* =====================
   DISCLAIMER
   ===================== */
.disclaimer {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* =====================
   SUCCESS MESSAGE
   ===================== */
.success-message {
    display: none;
    background: #0f2847;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 48px 32px;
    margin-top: 32px;
    text-align: center;
    animation: fadeInScale 0.5s ease-out;
    backdrop-filter: blur(10px);
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 64px;
    color: #00d4ff;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.success-message p {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.6;
}

/* =====================
   COUNTDOWN TIMER
   ===================== */
.countdown {
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.countdown-top {
    margin-top: 0;
    margin-bottom: 18px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: none; /* Hidden since we removed the label */
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #0f2847;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 18px 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover {
    background: #0f2847;
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-value {
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.countdown-unit {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 640px) {
    body {
        padding: 12px;
        padding-top: 8px;
        padding-bottom: 60px;
    }

    .badge {
        margin-bottom: 12px;
        padding: 6px 16px;
        font-size: 11px;
    }

    .headline {
        margin-bottom: 10px;
        font-size: clamp(28px, 9vw, 40px);
    }
    
    .coming-bf {
        display: inline;
        white-space: nowrap;
    }

    .subheadline {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .email-form {
        gap: 10px;
    }

    #nameInput,
    #emailInput,
    #mobileInput {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .cta-button {
        padding: 16px 20px;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .mobile-note {
        font-size: 13px;
        margin: -4px 0 2px 0;
    }

    .disclaimer {
        font-size: 13px;
        margin-bottom: 80px;
    }

    .countdown {
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 14px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        padding: 12px 6px;
    }

    .countdown-value {
        font-size: clamp(24px, 8vw, 30px);
    }

    .countdown-unit {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* =====================
   MOUSE TRAIL
   ===================== */
.mouse-trail {
    position: fixed;
    width: 12px;
    height: 12px;
    background: #79b061;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 20px rgba(121, 176, 97, 1), 0 0 40px rgba(121, 176, 97, 0.5);
    animation: trailFade 1s ease-out forwards;
}

@keyframes trailFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* =====================
   CONFETTI
   ===================== */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 10000;
    animation: confettiFall 3s ease-out forwards;
}

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

/* =====================
   RECENT SIGNUPS NOTIFICATION
   ===================== */
.signup-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #0f2847;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.3);
    animation: slideInLeft 0.5s ease-out, fadeOutDelay 0.5s ease-out 4.5s forwards;
    z-index: 9999;
}

.signup-notification-character {
    font-size: 32px;
    animation: characterBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

@keyframes characterBounce {
    0% {
        transform: translateY(100px) scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.2) rotate(10deg);
    }
    70% {
        transform: translateY(5px) scale(0.9) rotate(-5deg);
    }
    85% {
        transform: translateY(-3px) scale(1.05) rotate(3deg);
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}

.signup-notification-icon {
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 1);
    animation: pulse 2s ease-in-out infinite;
}

.signup-notification-text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.signup-notification-name {
    color: #00d4ff;
    font-weight: 700;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOutDelay {
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* =====================
   SURPRISE GIFT REVEAL (EXPLOSIVE!)
   ===================== */
.gift-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    animation: fadeIn 0.5s ease-out;
    overflow-y: auto;
    padding: 20px 0;
}

.gift-overlay.show {
    display: flex;
}

.gift-container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    position: relative;
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gift-explosion {
    font-size: 120px;
    margin-bottom: 24px;
    animation: explode 0.6s ease-out;
}

@keyframes explode {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.gift-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    color: #79b061;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(121, 176, 97, 0.8);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(121, 176, 97, 0.6);
    }
    to {
        text-shadow: 0 0 40px rgba(121, 176, 97, 1);
    }
}

.gift-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.6;
}

.gift-item {
    background: rgba(121, 176, 97, 0.1);
    border: 2px solid #79b061;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.gift-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #79b061;
    margin-bottom: 8px;
}

.gift-item-description {
    font-size: 16px;
    color: #b0b0b0;
}

.gift-cta {
    display: inline-block;
    background: linear-gradient(135deg, #79b061 0%, #5d8a4a 100%);
    color: #ffffff;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out 0.5s backwards;
}

.gift-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(121, 176, 97, 0.4);
}

.gift-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(121, 176, 97, 0.3), transparent);
    margin: 32px 0 24px 0;
}

.gift-bonus-title {
    font-size: 20px;
    font-weight: 700;
    color: #79b061;
    margin-bottom: 8px;
    animation: slideInUp 0.8s ease-out 0.7s backwards;
}

.gift-bonus-description {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 16px;
    animation: slideInUp 0.8s ease-out 0.8s backwards;
}

.gift-referral-section {
    animation: slideInUp 0.8s ease-out 0.6s backwards;
}

.gift-referral-section .referral-link-container {
    animation: slideInUp 0.8s ease-out 0.9s backwards;
}

.gift-referral-section .referral-social {
    animation: slideInUp 0.8s ease-out 1s backwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

/* =====================
   REFERRAL SECTION
   ===================== */
.referral-section {
    display: none;
    background: rgba(121, 176, 97, 0.05);
    border: 1px solid rgba(121, 176, 97, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    animation: fadeInScale 0.5s ease-out;
}

.referral-section.show {
    display: block;
}

.referral-title {
    font-size: 20px;
    font-weight: 700;
    color: #79b061;
    margin-bottom: 8px;
}

.referral-description {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 16px;
}

.referral-link-container {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.referral-link-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #79b061;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.referral-copy-btn {
    padding: 12px 24px;
    background: rgba(121, 176, 97, 0.2);
    border: 1px solid #79b061;
    border-radius: 8px;
    color: #79b061;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.referral-copy-btn:hover {
    background: rgba(121, 176, 97, 0.3);
    transform: translateY(-2px);
}

.referral-copy-btn.copied {
    background: #79b061;
    color: #ffffff;
}

.referral-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.referral-social-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.referral-social-btn:hover {
    background: rgba(121, 176, 97, 0.2);
    border-color: #79b061;
    transform: translateY(-2px);
}

/* Mobile responsive for notifications */
@media (max-width: 640px) {
    .signup-notification {
        bottom: 80px;
        left: 16px;
        right: 16px;
        padding: 12px 16px;
    }
    
    .gift-container {
        padding: 24px 20px;
    }
    
    .gift-explosion {
        font-size: 80px;
    }
    
    .referral-link-container {
        flex-direction: column;
    }
    
    .referral-social {
        flex-direction: column;
    }
}
