/* --- Alapbeállítások és Reszelés --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #06060c;
    --text-color: #ffffff;
    --text-muted: #8e8e9f;
    
    /* Neon Színek */
    --neon-blue: #00d2ff;
    --neon-blue-glow: rgba(0, 210, 255, 0.5);
    
    --neon-magenta: #ff007f;
    --neon-magenta-glow: rgba(255, 0, 127, 0.5);
    
    --neon-orange: #ff9f43;
    --neon-orange-glow: rgba(255, 159, 67, 0.5);
    
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* --- Animált Háttér Fények (Lágy Ragyogás) --- */
.neon-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.neon-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.35;
    animation: pulseBg 20s infinite alternate ease-in-out;
}

.light-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.light-magenta {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--neon-magenta) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-duration: 25s;
    animation-delay: -5s;
}

@keyframes pulseBg {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-30px, 40px) scale(0.95);
        opacity: 0.25;
    }
}

/* --- Fejléc stílusok --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 30px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-color);
    text-decoration: none;
    transition: text-shadow 0.3s;
}

.logo-link span {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-magenta-glow);
}

.contact-header {
    display: flex;
    gap: 30px;
}

.contact-header a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.contact-header a i {
    color: var(--neon-blue);
    text-shadow: 0 0 5px var(--neon-blue-glow);
}

.contact-header a:hover {
    color: var(--text-color);
    transform: translateY(-2px);
}

/* --- Fő Layout és Hero szekció --- */
.landing-main {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    margin-bottom: 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-neon-image {
    width: 100%;
    max-width: 380px;
    border-radius: 28px;
    border: 1px solid rgba(255, 0, 127, 0.15);
    box-shadow: 0 15px 45px -15px var(--neon-magenta-glow),
                0 0 25px rgba(0, 210, 255, 0.05);
    animation: floatNeonImage 7s infinite ease-in-out;
    transition: all 0.4s ease;
}

.hero-neon-image:hover {
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 20px 50px -10px var(--neon-blue-glow),
                0 0 35px var(--neon-magenta-glow);
}

@keyframes floatNeonImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
        box-shadow: 0 25px 55px -10px var(--neon-magenta-glow),
                    0 0 35px rgba(0, 210, 255, 0.1);
    }
    100% {
        transform: translateY(0);
    }
}

/* --- Fő Neon Cím és Vibráló (flicker) Effektus --- */
.neon-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.1),
                 0 0 20px var(--neon-blue-glow),
                 0 0 40px rgba(0, 210, 255, 0.2);
}

.neon-main-title span {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(255,255,255,0.1),
                 0 0 20px var(--neon-magenta-glow),
                 0 0 45px rgba(255, 0, 127, 0.2);
}

/* Flicker animáció a világító reklám hatásért */
.flicker-text {
    animation: flicker 4s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 10px rgba(255,255,255,0.1),
                     0 0 20px var(--neon-magenta-glow),
                     0 0 45px rgba(255, 0, 127, 0.2);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-desc strong {
    font-weight: 500;
    color: #fff;
}

/* Gomb stílus */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.btn-primary {
    background-color: #fff;
    color: var(--bg-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px);
    background-color: var(--neon-blue);
    color: #fff;
    box-shadow: 0 10px 25px var(--neon-blue-glow);
}

/* --- Szekció Fejlécek --- */
.services-section, .gallery-section, .contact-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--neon-blue);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--neon-blue-glow);
}

/* --- Kártyák / Csempék (Glassmorphism + Neon Glow) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 45px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Egyedi neon glow elemek a háttérben */
.card-glow-blue, .card-glow-magenta, .card-glow-orange {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.card-glow-blue {
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.08) 0%, transparent 60%);
}

.card-glow-magenta {
    background: radial-gradient(circle at center, rgba(255, 0, 127, 0.08) 0%, transparent 60%);
}

.card-glow-orange {
    background: radial-gradient(circle at center, rgba(255, 159, 67, 0.08) 0%, transparent 60%);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 30px;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    z-index: 2;
    transition: color 0.3s;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    font-weight: 300;
    z-index: 2;
}

/* --- Kártya Hover Állapotok --- */
.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
}

.service-card:hover [class^="card-glow-"] {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* 1. LED Dobozbetű (Kék Ragyogás) */
#card-dobozbetu .service-icon {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

#card-dobozbetu:hover {
    box-shadow: 0 15px 40px -10px var(--neon-blue-glow),
                inset 0 0 15px -5px var(--neon-blue-glow);
    border-color: rgba(0, 210, 255, 0.3);
}

#card-dobozbetu:hover .service-name {
    color: var(--neon-blue);
}

/* 2. Világító Doboz (Magenta Ragyogás) */
#card-vilagitodoboz .service-icon {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-magenta-glow);
}

#card-vilagitodoboz:hover {
    box-shadow: 0 15px 40px -10px var(--neon-magenta-glow),
                inset 0 0 15px -5px var(--neon-magenta-glow);
    border-color: rgba(255, 0, 127, 0.3);
}

#card-vilagitodoboz:hover .service-name {
    color: var(--neon-magenta);
}

/* 3. LED Neon (Narancs Ragyogás) */
#card-ledneon .service-icon {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange-glow);
}

#card-ledneon:hover {
    box-shadow: 0 15px 40px -10px var(--neon-orange-glow),
                inset 0 0 15px -5px var(--neon-orange-glow);
    border-color: rgba(255, 159, 67, 0.3);
}

#card-ledneon:hover .service-name {
    color: var(--neon-orange);
}

/* --- Referencia Galéria Szekció --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/2;
    border: 1px solid var(--card-border);
    transition: all 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 6, 12, 0.95) 10%, rgba(6, 6, 12, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.gallery-overlay h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    transform: translateY(10px);
    transition: transform 0.4s ease, color 0.3s;
}

/* Galéria Hover Állapotok */
.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 10px 25px var(--neon-blue-glow);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(6, 6, 12, 0.95) 20%, rgba(6, 6, 12, 0.2) 65%, transparent 100%);
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay p {
    color: #fff;
}

/* --- Kapcsolat / Ajánlatkérő kártya --- */
.contact-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Belső enyhe izzás */
.contact-card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 45px auto;
    z-index: 2;
    position: relative;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    z-index: 2;
    position: relative;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 20px 35px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue-glow);
    transition: all 0.3s;
}

.contact-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

.contact-text .value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Kapcsolat hover */
.contact-link:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
    border-color: rgba(0, 210, 255, 0.25);
    box-shadow: 0 10px 30px -5px var(--neon-blue-glow);
}

.contact-link:hover .contact-icon {
    background: var(--neon-blue);
    color: #fff;
    text-shadow: none;
    box-shadow: 0 0 15px var(--neon-blue-glow);
}

/* --- Lábléc --- */
.main-footer {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-network {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.network-link {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px dashed var(--text-muted);
}

.network-link:hover {
    color: var(--neon-blue);
    border-bottom-color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue-glow);
}

/* --- Miért a világító tábla? (Előnyök) Stílusok --- */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-item {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 15px;
    right: 25px;
    transition: all 0.4s ease;
    z-index: 1;
}

.benefit-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    z-index: 2;
    position: relative;
    transition: color 0.3s;
}

.benefit-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    z-index: 2;
    position: relative;
}

/* Hover állapotok */
.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 210, 255, 0.25);
    box-shadow: 0 10px 25px -5px var(--neon-blue-glow);
}

.benefit-item:hover .benefit-number {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
    transform: scale(1.1);
}

.benefit-item:hover .benefit-name {
    color: var(--neon-blue);
}

/* --- Készítés folyamata Stílusok --- */
.process-section {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--neon-magenta);
    text-shadow: 0 0 8px var(--neon-magenta-glow);
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
}

.step-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-magenta);
    background: rgba(255, 0, 127, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 0, 127, 0.15);
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Hover állapotok */
.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 127, 0.25);
    box-shadow: 0 10px 25px -5px var(--neon-magenta-glow);
}

.step-card:hover .step-icon {
    background: var(--neon-magenta);
    color: #fff;
    text-shadow: none;
    box-shadow: 0 0 15px var(--neon-magenta-glow);
}

/* --- Gyakran Ismételt Kérdések (GYIK) Stílusok --- */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.faq-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 35px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.faq-question {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.faq-question i {
    color: var(--neon-blue);
    font-size: 1.3rem;
    text-shadow: 0 0 8px var(--neon-blue-glow);
    margin-top: 2px;
    transition: all 0.4s;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Hover állapotok */
.faq-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 210, 255, 0.2);
    box-shadow: 0 10px 30px -10px var(--neon-blue-glow);
}

.faq-card:hover .faq-question i {
    color: var(--neon-magenta);
    text-shadow: 0 0 8px var(--neon-magenta-glow);
    transform: scale(1.1);
}

/* --- Reszponzivitás --- */
@media (max-width: 992px) {
    .neon-main-title {
        font-size: 3rem;
    }
    .contact-card {
        padding: 45px 24px;
    }
    .contact-details {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 20px 0;
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero-section {
        padding-top: 160px;
        min-height: auto;
        margin-bottom: 40px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-neon-image {
        max-width: 320px;
    }
    .neon-main-title {
        font-size: 2.3rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .services-section, .gallery-section, .contact-section, .benefits-section, .process-section, .faq-section {
        padding: 50px 0;
    }
    .services-grid, .gallery-grid, .benefits-grid, .process-steps, .faq-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .contact-title {
        font-size: 1.8rem;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
