/* =========================================
   MIAP CYBERPUNK CHRISTMAS 2077 V2.1 (CENTERED)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Outfit:wght@300;400;700&display=swap');

:root {
    --bg-deep: #020005;
    --bg-void: #0a0b1e;
    
    --neon-violet: #BC13FE;
    --neon-blue: #00F0FF;
    --neon-red: #FF003C;
    --neon-gold: #FFD700;
    
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(20, 20, 30, 0.4);
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background: radial-gradient(circle at 50% 0%, #1a0b2e 0%, #020005 100%);
    color: #ffffff;
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* =========================================
   BACKGROUND FX 
   ========================================= */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(188, 19, 254, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(188, 19, 254, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
    opacity: 0.3;
}

.snow-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    color: var(--neon-blue);
    font-size: 10px;
    font-family: monospace;
    opacity: 0.8;
    animation: fall linear infinite;
    text-shadow: 0 0 5px var(--neon-blue);
}

@keyframes fall {
    0% { transform: translateY(-10vh); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(110vh); opacity: 0; }
}

/* =========================================
   LAYOUT
   ========================================= */
.main-wrapper {
    display: flex;
    min-height: 100vh;
}

/* =========================================
   ROULETTE MODAL OVERLAY
   ========================================= */
.roulette-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.roulette-modal-content {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.95), rgba(10, 10, 20, 0.98));
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(188, 19, 254, 0.3);
    border-radius: 30px;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2rem;
}

.close-roulette {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 50;
    transition: color 0.3s;
}

.close-roulette:hover { color: var(--neon-red); }

.roulette-split-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.roulette-left-col, .roulette-right-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roulette-right-col {
    max-width: 400px;
}

.roulette-float-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Right bottom corner */
    background: linear-gradient(135deg, var(--neon-violet), var(--neon-red));
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.5);
    transition: all 0.3s ease;
    animation: pulse-float 3s infinite;
}

.roulette-float-trigger:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 60, 0.7);
}

.roulette-float-trigger .emoji { font-size: 2rem; }
.roulette-float-trigger .label { 
    color: #fff; 
    font-weight: 900; 
    font-family: var(--font-display); 
    font-size: 0.9rem; /* Slightly smaller for long text */
    max-width: 220px; /* Force wrap */
    text-align: left;
    line-height: 1.2;
}

@keyframes pulse-float {
    0% { box-shadow: 0 0 0 0 rgba(188, 19, 254, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(188, 19, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(188, 19, 254, 0); }
}

.content-area {
    padding: 4rem 2rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    z-index: 20;
}

/* =========================================
   ROULETTE (Fixed Centering)
   ========================================= */
.roulette-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.roulette-header-mobile {
    display: none; /* Hidden on desktop */
}

.roulette-container {
    position: relative;
    width: 380px; 
    height: 380px;
    margin-top: 3rem; /* Espacio adicional para que la flecha sea completamente visible */
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(188, 19, 254, 0.3));
}

#wheel-canvas {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}


.arrow-indicator {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    background: transparent !important;
    border-left: 20px solid transparent !important;
    border-right: 20px solid transparent !important;
    border-top: 40px solid var(--neon-gold) !important;
    filter: drop-shadow(0 0 15px var(--neon-gold));
    z-index: 20;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--neon-red);
    border: 5px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-family: var(--font-display);
    cursor: pointer;
    box-shadow: 0 0 30px var(--neon-red);
    z-index: 15;
    transition: all 0.2s;
    text-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 60px var(--neon-red);
}

.spin-btn:disabled {
    background: #555;
    cursor: not-allowed;
    box-shadow: none;
}

/* FORM STYLE */
.roulette-form-container {
    width: 100%; /* Full width of container */
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.roulette-form-container h3 {
    font-family: var(--font-display);
    color: var(--neon-gold);
    margin-bottom: 0.5rem;
}

.roulette-form-container p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.cyber-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--neon-violet);
    color: #fff;
    border-radius: 5px;
    font-family: var(--font-body);
}

.cyber-input:focus {
    outline: none;
    box-shadow: 0 0 15px var(--neon-violet);
    border-color: #fff;
}

.security-note {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 10px;
}

/* =========================================
   HERO & CONTENT
   ========================================= */
.logo-container { margin-bottom: 3rem; text-align: center; }

.glitch-text {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 var(--neon-violet);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 3rem;
}

/* =========================================
   PROMO BANNER
   ========================================= */
.promo-banner {
    background: linear-gradient(135deg, var(--neon-red), var(--neon-gold));
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin: 2rem auto 3rem;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(255, 0, 60, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 0, 60, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 60px rgba(255, 215, 0, 0.7);
        transform: scale(1.02);
    }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.promo-icon {
    font-size: 2.5rem;
    animation: bounce 1s ease-in-out infinite;
}

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

.promo-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.promo-text strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.promo-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 1rem;
        margin: 1rem auto 2rem;
    }
    
    .promo-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .promo-icon {
        font-size: 2rem;
    }
    
    .promo-text strong {
        font-size: 1.3rem;
    }
    
    .promo-subtext {
        font-size: 0.9rem;
    }
}

/* COUNTDOWN */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.time-block {
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--neon-red);
    padding: 1rem;
    border-radius: 5px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255,0,60,0.2);
}

.time-block span {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--neon-red);
}

.time-block label {
    font-size: 0.7rem;
    color: #fff;
}

/* FILTERS */
.filters-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--neon-violet);
    box-shadow: 0 0 20px var(--neon-violet);
}

.mobile-roulette-trigger {
    display: none;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding-bottom: 5rem;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--neon-gold);
}

.card-header { 
    padding: 2rem; 
    text-align: center; 
    background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
}
.card-visual { font-size: 3rem; color: #fff; }
.card-body { padding: 1.5rem; }
.card-body h3 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.card-body p { color: #aaa; font-size: 0.9rem; margin-bottom: 1.5rem; }

.price-block {
    display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem;
}
.original-price { text-decoration: line-through; color: #666; }
.current-price { font-size: 1.5rem; color: var(--neon-gold); font-family: var(--font-display); }

.cta-btn {
    display: block; width: 100%; padding: 1rem; text-align: center;
    background: transparent; border: 2px solid var(--neon-red); color: var(--neon-red);
    text-decoration: none; font-weight: bold; transition: all 0.3s; font-family: var(--font-display);
}
.cta-btn:hover { background: var(--neon-red); color: #fff; box-shadow: 0 0 20px var(--neon-red); }

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .roulette-split-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .roulette-modal-content {
        padding: 1.5rem;
        max-height: 95vh;
    }

    .roulette-container {
        width: 300px;
        height: 300px;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .roulette-float-trigger {
        right: 20px;
        bottom: 20px;
        padding: 10px 20px;
    }
    
    .roulette-float-trigger .label { font-size: 0.9rem; }
    
    .roulette-header-mobile {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .roulette-header-mobile h2 {
        font-family: var(--font-display);
        font-size: 1.8rem;
        color: var(--neon-gold);
        text-shadow: 0 0 10px var(--neon-gold);
    }
}

/* =========================================
   NEW SALES SECTIONS
   ========================================= */

.hero-image-demo {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid var(--neon-violet);
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.4);
    margin-bottom: 2rem;
    transition: transform 0.5s ease;
}

.hero-image-demo:hover {
    transform: scale(1.02);
}

.how-it-works {
    margin: 5rem 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(188, 19, 254, 0.05);
    border-color: var(--neon-violet);
    transform: translateY(-10px);
}

.step-num {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-violet);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 20px var(--neon-violet);
}

.urgency-callout {
    margin: 5rem 0;
    padding: 3rem;
    text-align: center;
}

.urgency-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.urgency-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-red);
    margin-bottom: 0.5rem;
}

.cta-pulse {
    background: var(--neon-red);
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 30px var(--neon-red);
    animation: cta-pulse-animation 2s infinite;
    display: inline-block;
}

@keyframes cta-pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 30px var(--neon-red); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px var(--neon-red); }
    100% { transform: scale(1); box-shadow: 0 0 30px var(--neon-red); }
}

/* RECENT ACTIVITY */
.recent-activity {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(10, 11, 30, 0.95);
    border: 1px solid var(--neon-blue);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transform: translateX(-150%);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 240, 255, 0.3);
    max-width: 320px;
}

.recent-activity.show {
    transform: translateX(0);
}

.activity-icon {
    font-size: 1.5rem;
    color: var(--neon-blue);
}

.activity-text p {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.activity-text span {
    font-size: 0.75rem;
    color: #666;
}

/* Trust Section */
.trust-section {
    margin: 3rem auto;
    padding: 2rem;
    max-width: 1200px;
}

.trust-section h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--neon-violet);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-violet);
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.3);
}

.trust-item i {
    font-size: 3rem;
    color: var(--neon-gold);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

/* Enhanced Product Cards */
.card-badge-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--neon-violet), var(--neon-red));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(188, 19, 254, 0.5);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-red);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 0 20px var(--neon-red);
    animation: pulse 2s infinite;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card-benefits {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--neon-blue);
    border-radius: 5px;
}

.benefit-item {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    color: #ddd;
}

.card-description {
    font-size: 0.95rem;
    color: #aaa;
    margin: 1rem 0;
    line-height: 1.6;
}

.card-social-proof {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

.card-social-proof i {
    color: var(--neon-gold);
    font-size: 1rem;
}

.rating-text {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: #ccc;
}

.card-actions {
    margin: 1.5rem 0;
}

.btn-secondary {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.4);
}

.price-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.price-block {
    margin-bottom: 0.5rem;
}

.price-block .original-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1rem;
}

.price-block-current {
    margin-top: 0.5rem;
}

.price-block-current .current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--neon-gold);
    text-shadow: 0 0 10px var(--neon-gold);
}

.free-badge {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #00F0FF, #BC13FE);
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

/* Final CTA Section */
.final-cta {
    margin: 4rem auto;
    padding: 3rem;
    max-width: 800px;
    text-align: center;
    background: linear-gradient(135deg, rgba(188, 19, 254, 0.2), rgba(255, 0, 60, 0.2));
    border: 2px solid var(--neon-violet);
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary {
    background: var(--neon-violet);
    color: #fff;
    border: none;
}

.cta-primary:hover {
    background: var(--neon-red);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.5);
}

.cta-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.cta-secondary:hover {
    background: var(--neon-blue);
    color: #000;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    color: #666;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--neon-blue);
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--neon-violet);
}

/* Countdown Label */
.countdown-label {
    text-align: center;
    font-size: 1rem;
    color: var(--neon-red);
    margin-bottom: 1rem;
    font-weight: bold;
}

.countdown-blocks {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
