/**
 * Index Page Styles
 * Based on Figma design specifications
 */

/* Page Container */
.index-page {
    /* 页面级宽度约束已在 main.css 中定义 */
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #FFFBF0 0%, #EAEAEA 53%, #FFFFFF 100%);
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Header */
.header-container {
    width: 100%;
    max-width: 1280px;
    height: 70px;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.left-header {
    display: flex;
    align-items: center;
    padding: 0;
}

.project-button {
    width: 148px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.project-button:hover {
    background: rgba(239, 232, 233, 0.8);
}

.project-button-text {
    font-family: 'Monterey', 'MontereyMediumFLF', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #000;
}

.right-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.wenxin-container {
    width: 133px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
}

.wenxin-text {
    font-family: 'Monterey', 'MontereyMediumFLF', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #5F5F5F;
    letter-spacing: 0.02em;
    z-index: 1;
}

/* Language Toggle Button for Index Page */
.right-header .lang-toggle-btn {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #5F5F5F;
    border-radius: 2px;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #5F5F5F;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Monterey', 'MontereyMediumFLF', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-header .lang-toggle-btn:hover {
    background-color: #5F5F5F;
    color: #fff;
}

.right-header .lang-toggle-btn:active {
    transform: scale(0.95);
}

.header-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Mid Container - Floating Elements */
.mid-container {
    position: fixed;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

.around-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    pointer-events: auto;
    margin-left: 5px;
}

.about-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    pointer-events: auto;
    margin-right: 5px;
}

.around-text, .about-text {
    font-family: 'Monterey', 'MontereyFLF', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #6F6F6F;
    position: relative;
    z-index: 2;
}

.around-text {
    transform: rotate(-90deg);
}

.about-text {
    transform: rotate(90deg);
}

.around-button::before, .about-button::before {
    content: '';
    position: absolute;
    width: 101px;
    height: 25px;
    background: transparent;
    border-radius: 12.5px;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg); /* 默认就是旋转90度 */
    transition: background-color 0.3s ease;
}

.around-button:hover::before, .about-button:hover::before {
    background: rgba(239, 232, 233, 0.8);
}

/* Content Container */
.content-container {
    position: relative; /* 关键：给 line-container 提供参照系 */
    width: var(--content-width);
    margin: 0 auto;
    padding: 120px 20px 0;
    min-height: 100vh;
    box-sizing: border-box;
}

/* Intro Container */
.intro-container {
    width: 100%;
    max-width: 1020px;
    height: 108px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-text {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.intro-line-1,
.intro-line-2 {
    font-family: 'Monterey', 'MontereyMediumFLF', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.155em;
    text-align: center;
    width: 100%;
    position: relative;
    display: inline-block;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.intro-line-1 {
    margin-bottom: 0.5em;
    text-decoration-color: #6F6F6F;
}

.intro-line-2 {
    text-decoration-color: #6F6F6F;
}

/* Gray text (#6F6F6F) */
.intro-underline-gray {
    color: #6F6F6F;
    text-decoration: none;
}

/* Black text (#000000) */
.intro-underline-black {
    color: #000000;
    text-decoration: none;
}

/* Light gray text (#BBBBBB) */
.intro-underline-light {
    color: #BBBBBB;
    text-decoration: none;
}

/* Polygon Container */
.polygon-container {
    width: 100%;
    max-width: 1020px;
    height: 350px;
    min-height: 350px;
    margin: 216px auto 0; /* 行距*2: 从108px改为216px */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;   /* 允许超出容器边界 */
    box-sizing: border-box;
    padding: 20px;
    z-index: 10;         /* 压过背景/线条 */
}

.polygon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;   /* 允许超出容器边界 */
    position: relative;
    z-index: 10;
}

/* Cube Stage - 给 cube 一个更大的"舞台"，但 cube 仍然是 320 */
.cube-stage {
    width: 416px;        /* 舞台比 cube 大，旋转就不撞边 */
    height: 416px;
    margin: 0 auto;
    perspective: 1500px;
    perspective-origin: center center;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;  /* 允许自己处理拖拽 */
}

/* Cube Styles */
:root {
    --cube-size: 320px;
    --cube-half: calc(var(--cube-size) / 2);
}

.cube {
    width: var(--cube-size);
    height: var(--cube-size);
    aspect-ratio: 1 / 1;
    position: relative;
    transform-style: preserve-3d;
    /* 初始角度：等轴测感觉 */
    transform: rotateX(-20deg) rotateY(35deg);
    transition: transform 80ms linear;
    transform-origin: center center;
    display: block;
    margin: auto;
}

.face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

/* 贴图内容 */
.face img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    opacity: 0.95;
    filter: grayscale(1);
    display: block;
}

/* 六个面：完整的立方体 */
.face.front  { transform: translateZ(var(--cube-half)); }
.face.back   { transform: rotateY(180deg) translateZ(var(--cube-half)); }
.face.top    { transform: rotateX(90deg) translateZ(var(--cube-half)); }
.face.bottom { transform: rotateX(-90deg) translateZ(var(--cube-half)); }
.face.right  { transform: rotateY(90deg) translateZ(var(--cube-half)); }
.face.left   { transform: rotateY(-90deg) translateZ(var(--cube-half)); }

/* 可选：给立方体一点"体积雾感" */
.haze {
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.08);
    transform: translateZ(0.1px);
    pointer-events: none;
}

/* Line with Scroll Indicator */
.line-container {
    position: absolute;
    /* top will be set dynamically by JS to polygon bottom */
    left: 50%;
    transform: translateX(-50%);
    width: var(--rail-width);
    /* height will be set dynamically by JS (from polygon bottom to gallery top) */
    pointer-events: none;     /* 不挡 hover / click */
    z-index: 1;               /* 在polygon-container (z-index: 10) 下方 */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.svg-line-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: visible;
}

.scroll-line-image {
    /* TREELINE.svg image styling */
    opacity: 1;
}

.scroll-line-path {
    /* Hidden path for bead tracking calculations */
    visibility: hidden;
}

.scroll-bead {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    top: 50vh;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #FFFFFF 0%, #BEBEBE 54%);
    transition: box-shadow 0.3s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 5;               /* 在polygon-container (z-index: 10) 下方，但在line上方 */
    will-change: transform, left;
}

.scroll-bead.active {
    box-shadow: 0 0 25px rgba(190, 190, 190, 1), 0 0 40px rgba(190, 190, 190, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Guide Component */
.guide-component {
    position: sticky;
    top: 60vh;        /* 滚到中段时固定 */
    text-align: center;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    z-index: 5;
    transform: translateX(-50%);
    left: 50%;
}

.guide-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #BEBEBE;
}

.guide-text {
    font-family: 'Garamond', serif;
    font-size: 16px;
    color: #BEBEBE;
    white-space: nowrap;
}

/* Projects Section */
.projects-section {
    width: 100%;
    margin-top: 180px;
    position: relative;
    z-index: 2; /* 压在 line 上 */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Line Container - now positioned within content-container (moved from projects-section) */
/* The .line-container styles are already defined above and will work relative to content-container */

/* Main Project Container */
.project-container {
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 180px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Gallery Container */
.gallery-container {
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    padding: 100px 20px 200px;
    box-sizing: border-box;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    display: grid;
    grid-template-columns: 
        360px 
        var(--rail-width) 
        360px;
    justify-content: center;
    align-items: center;
    gap: 0;
}

/* 项目左右布局：text 在左，image 在右 */
.project-item .text-container {
    grid-column: 1;
}

.project-item .image-container {
    grid-column: 3;
}

.text-container {
    width: 360px;
    height: 360px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.title-section {
    width: 360px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
    text-align: center;
}

.project-title {
    font-family: 'Monterey', 'MontereyMediumFLF', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #181818;
    text-align: center;
    margin-bottom: 0;
}

.project-keywords {
    font-family: 'Garamond', serif;
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 400;
}

.content-section {
    width: 360px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    text-align: center;
}

.project-content {
    font-family: 'Garamond', serif;
    font-size: 20px;
    color: #6F6F6F;
    line-height: 24px;
    text-align: center;
}

.image-container {
    width: 360px;
    height: 360px;
    max-width: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    box-sizing: border-box;
}

.image-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.image-layer.layer1 {
    z-index: 1;
}

.image-layer.layer2 {
    z-index: 2;
    clip-path: circle(0px at 50% 50%);
    transition: clip-path 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-layer.layer3 {
    z-index: 3;
}

.image-container:hover .image-layer.layer1 {
    transform: scale(1.05);
    transform-origin: center center;
}

.image-container:hover .image-layer.layer2 {
    clip-path: circle(60px at var(--mouse-x, 50%) var(--mouse-y, 50%));
}

.image-container:active {
    transform: scale(0.98);
}

.image-container:active .image-layer.layer1 {
    transform: translateY(-2px) scale(0.98);
}

/* Gallery Item Styles */
.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-image-container {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-image-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.gallery-image-layer.layer1 {
    z-index: 1;
}

.gallery-image-layer.layer2 {
    z-index: 2;
    clip-path: circle(0px at 50% 50%);
    transition: clip-path 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-layer.layer3 {
    z-index: 3;
}

.gallery-image-container:hover .gallery-image-layer.layer1 {
    transform: scale(1.05);
    transform-origin: center center;
}

.gallery-image-container:hover .gallery-image-layer.layer2 {
    clip-path: circle(60px at var(--mouse-x, 50%) var(--mouse-y, 50%));
}

.gallery-image-container:active {
    transform: scale(0.98);
}

.gallery-image-container:active .gallery-image-layer.layer1 {
    transform: translateY(-2px) scale(0.98);
}

.gallery-title {
    font-family: 'Monterey', 'MontereyMediumFLF', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #181818;
    text-align: center;
    line-height: 1.4;
}

/* Footer */
.footer-container {
    width: 100%;
    max-width: 1280px;
    min-height: 120px;
    background: rgb(215, 215, 215);
    padding: 20px 50px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    box-sizing: border-box;
    z-index: 2000; /* 最高层，在所有元素之上 */
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wenxin-footer {
    font-size: 20px;
    color: #1B1B1B;
    letter-spacing: 0.05em;
    font-family: Arial, sans-serif;
}

.wenxin-footer .monterey {
    font-family: 'Monterey', 'MontereyMediumFLF', sans-serif;
}

.address-footer {
    font-family: 'Garamond', serif;
    font-size: 16px;
    color: #6F6F6F;
    line-height: 1.5;
    white-space: pre-line;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
}

.email-footer {
    font-family: 'Garamond', serif;
    font-size: 16px;
    color: #000000;
    margin-bottom: auto;
    padding-top: 0;
}

.contact-footer {
    font-family: 'Garamond', serif;
    font-size: 16px;
    color: #6F6F6F;
    line-height: 1.5;
    white-space: pre-line;
    text-align: right;
    margin-top: 0;
    padding-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .index-page,
    .header-container,
    .footer-container {
        width: 100%;
        max-width: 100%;
    }
    
    .content-container {
        width: 100%;
        max-width: var(--content-width);
    }
    
    .intro-container,
    .polygon-container,
    .projects-section {
        width: 100%;
        max-width: 100%;
    }
}

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .content-container {
        padding: 120px 30px 0;
    }
    
    .project-container {
        padding: 0 30px;
        gap: 120px;
    }
    
    .gallery-container {
        padding: 80px 30px 200px;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 30px;
    }
    
    .project-item {
        grid-template-columns: 1fr;
        gap: 0; /* 手机竖屏版：没有行距 */
    }
    
    .project-item .text-container,
    .project-item .image-container {
        grid-column: 1;
    }
    
    /* 手机竖屏版：image-container 在上方，text-container 在下方 */
    .project-item .image-container {
        order: 1;
    }
    
    .project-item .text-container {
        order: 2;
    }
    
    .text-container,
    .image-container {
        width: 100%;
        max-width: 500px;
    }
    
    .cube-stage {
        width: 320px;
        height: 320px;
    }
    
    .cube {
        width: min(320px, 80vw);
        height: min(320px, 80vw);
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 10px 15px;
    }
    
    .project-button {
        width: 120px;
        height: 35px;
        font-size: 16px;
    }
    
    .project-button-text {
        font-size: 16px;
    }
    
    .wenxin-container {
        width: 110px;
        height: 35px;
    }
    
    .wenxin-text {
        font-size: 16px;
    }
    
    .header-icon {
        width: 35px;
        height: 35px;
    }
    
    .content-container {
        padding: 100px 20px 0;
    }
    
    .intro-container {
        height: auto;
        min-height: 80px;
    }
    
    .polygon-container {
        height: 300px;
        min-height: 300px;
        margin: 30px auto 0;
    }
    
    .cube-stage {
        width: 240px;
        height: 240px;
    }
    
    .cube {
        width: min(250px, 80vw);
        height: min(250px, 80vw);
    }
    
    .project-container {
        margin: 100px auto 0;
        gap: 120px;
        padding: 0 20px;
    }
    
    .gallery-container {
        padding: 60px 20px 150px;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .text-container,
    .image-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
    }
    
    .title-section,
    .content-section {
        width: 100%;
        height: auto;
        min-height: 150px;
        padding: 20px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-content {
        font-size: 18px;
        line-height: 22px;
    }
    
    .around-button,
    .about-button {
        margin: 0 15px;
    }
    
    .around-text,
    .about-text {
        font-size: 14px;
    }
    
    .footer-container {
        flex-direction: column;
        padding: 20px 30px;
        min-height: auto;
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
        align-items: flex-start;
    }
    
    .footer-right {
        margin-top: 20px;
        align-items: flex-start;
    }
    
    .email-footer,
    .contact-footer {
        text-align: left;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .header-container {
        height: 55px;
        padding: 8px 10px;
    }
    
    .project-button {
        width: 100px;
        height: 32px;
    }
    
    .project-button-text {
        font-size: 14px;
    }
    
    .wenxin-container {
        width: 90px;
        height: 32px;
    }
    
    .wenxin-text {
        font-size: 14px;
    }
    
    .header-icon {
        width: 30px;
        height: 30px;
    }
    
    .content-container {
        padding: 90px 15px 0;
    }
    
    .polygon-container {
        height: 250px;
        min-height: 250px;
    }
    
    .cube-stage {
        width: 200px;
        height: 200px;
    }
    
    .cube {
        width: min(200px, 80vw);
        height: min(200px, 80vw);
    }
    
    .project-container {
        margin: 80px auto 0;
        gap: 100px;
        padding: 0 15px;
    }
    
    .gallery-container {
        padding: 50px 15px 120px;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .gallery-title {
        font-size: 12px;
    }
    
    .text-container,
    .image-container {
        min-height: 250px;
    }
    
    .title-section,
    .content-section {
        min-height: 120px;
        padding: 15px;
    }
    
    .project-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .project-content {
        font-size: 16px;
        line-height: 20px;
    }
    
    .around-button,
    .about-button {
        margin: 0 10px;
    }
    
    .around-text,
    .about-text {
        font-size: 12px;
    }
    
    .footer-container {
        padding: 15px 20px;
    }
    
    .wenxin-footer {
        font-size: 16px;
    }
    
    .address-footer,
    .email-footer,
    .contact-footer {
        font-size: 14px;
    }
    
    .guide-text {
        font-size: 12px;
    }
}

/* ===== Mobile: clean vertical reading mode ===== */
@media (max-width: 768px) {

  /* 1) 移除左右漂浮的 AROUND / ABOUT */
  .mid-container { 
    display: none !important; 
  }

  /* 2) 移除 line / bead（桌面叙事装置） */
  .line-container,
  .svg-line-wrapper,
  .scroll-line-image,
  .scroll-bead,
  .guide-component {
    display: none !important;
  }

  /* 3) intro 文字更适配手机 */
  .intro-line-1,
  .intro-line-2 {
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.25;
    text-decoration-thickness: 1px;
  }

  /* 4) cube 作为 intro icon：不再占"桌面舞台高度" */
  .polygon-container {
    height: auto !important;
    min-height: unset !important;
    margin: 20px auto 10px !important;
    padding: 0 !important;
  }

  .cube-stage {
    width: 220px !important;
    height: 220px !important;
  }

  /* cube 尺寸跟随舞台，避免溢出 */
  :root {
    --cube-size: 180px;
  }

  /* 5) projects-section 不要被 JS marginTop 拉开（双保险） */
  .projects-section {
    margin-top: 40px !important;
  }

  /* 6) 手机竖屏版：project-item 变成上下结构 */
  .project-item {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .project-item .image-container {
    grid-column: 1 !important;
    order: 1; /* 上方 */
  }

  .project-item .text-container {
    grid-column: 1 !important;
    order: 2; /* 下方 */
  }

  /* 确保 image-container 和 text-container 之间没有间距 */
  .project-item .image-container + .text-container {
    margin-top: 0;
  }
}
