/* init */
@font-face {
    font-family: 'isBold';
    src: url('../font/Montserrat-Bold.woff2') format('woff2');
    /* src: url('../fonts/Montserrat-Bold-3.otf') format('opentype'); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'isSemiBold';
    src: url('../font/Montserrat-Regular.woff2') format('woff2');
    /* src: url('../fonts/Montserrat-SemiBold-9.otf') format('opentype'); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'isRegular';
    src: url('../font/Montserrat-SemiBold.woff2') format('woff2');
    /* src: url('../fonts/Montserrat-Regular-8.otf') format('opentype'); */
    font-weight: normal;
    font-style: normal;
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'isRegular', Montserrat;
    height: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff;
    color: #000;
}

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

/* 图片不可选中和拖拽 */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: auto;
}

h1,
h2,
h3,
h4 {
    font-family: 'isBold', Montserrat;
    letter-spacing: 2px;
    font-weight: lighter;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

picture source{
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    position: relative;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    cursor: pointer;
    background-color: transparent;
    border: none;
}

textarea {
    resize: vertical;
}

/* common */
.container {
    max-width: 1200px;
    margin: 0 auto 148px;
    padding: 0 20px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 56px;
    margin: 148px 0 80px;
    color: #333;
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 50px;
        margin: 120px 0 70px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 42px;
        margin: 100px 0 60px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin: 80px 0 40px;
    }

    .container {
        padding: 0 16px;
        margin: 0 auto 80px;
    }
}

.bold {
    font-family: 'isBold', Montserrat;
}

img {
    width: 100%;
    height: 100%;
}

/* 懒加载图片过渡效果 */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease-in;
    min-height: 20px; /* 防止未加载时完全不可见 */
}

img[data-src].loaded {
    opacity: 1;
}

/* picture标签确保不破坏布局 */
picture {
    display: contents; /* picture标签不参与布局，直接显示内部img */
}

/* 确保picture内的img保持原有样式 */
picture img {
    width: 100%;
    height: 100%;
    display: block;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* vars */
:root {
    --theme-color: #159DF7FF;
}

/* nav */
.navbar {
    position: absolute;
    width: 100%;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0 20px;
    /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent); */
    user-select: none;
    background: rgba(255, 255, 255, 0.9);
    z-index: 100;
}

.navbar.sticky {
    position: fixed;
    top: 0;
}

.navbar.sticky .navbar-container {
    padding: 24px 24px;
    backdrop-filter: none;
    background-color: transparent;
}

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

.navbar .logo {
    font-size: 24px;
    cursor: pointer;
    font-family: 'isBold', Montserrat;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 37px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--theme-color);
}

.nav-links a.active {
    color: var(--theme-color);
    font-family: 'isBold', Montserrat;
    position: relative;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 30%;
    transform: translateX(-50%);
    height: 2px;
    background-color: var(--theme-color);
}

.mobile-menu-btn {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 33px;
    width: 32px;
    height: 40px;
    text-indent: -9999em;
    z-index: 99;
    right: 40px;
    display: none;
    text-indent: -9999em;
}

.mobile-menu-btn span {
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
}

.mobile-menu-btn.active span {
    background-color: transparent;
}

.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
    content: "";
}

.mobile-menu-btn.active span::before,
.mobile-menu-btn.active span::after {
    width: 100%;
}

.mobile-menu-btn span::before {
    transform-origin: 33% 100%;
    top: -10px;
    z-index: 10;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    width: 75%;
}

.mobile-menu-btn.active span::before {
    transform: translateY(6px) translateX(1px) rotate(45deg);
}

.mobile-menu-btn span::after {
    transform-origin: 33% 0;
    top: 10px;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    width: 75%;
}

.mobile-menu-btn.active span::after {
    transform: translateY(-6px) translateX(1px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        padding: 0;
    }

    .navbar-container {
        padding: 12px 16px;
        border-radius: 0;
    }

    .navbar.sticky .navbar-container {
        padding: 12px 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        display: none;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
        max-height: 500px;
        padding: 20px 0;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    margin-right: 8px;
}

/* header */
.header-section {
    position: relative;
    height: 100vh;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #FFF; /* 占位背景色 */
    background-size: cover;
    background-image: url('../images/img_topbanner_placeholder.jpg');
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 高清图层 - 使用伪元素实现平滑淡入 */
.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image); /* 通过JS动态设置 */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
}

/* 高清图加载完成后淡入 */
.header-section.loaded::before {
    opacity: 1;
}

.header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.3); */
}

.header-section .header-text {
    position: relative;
    z-index: 1;
    color: white;
}

.header-section .header-text h1 {
    font-size: 80px;
    line-height: 1.2;
    text-shadow: 0px 4px 16px #061D2D;
}

@media (max-width: 1200px) {
    .header-section .header-text h1 {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .header-section .header-text h1 {
        font-size: 55px;
    }
}

@media (max-width: 480px) {
    .header-section .header-text h1 {
        font-size: 48px;
    }
}

/* game */
.game-selection .game-box {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(180deg, #FFFFFF 0%, #E6F5FF 100%);
    border-radius: 32px 32px 32px 32px;
    padding: 40px;
    box-sizing: border-box;
}

.game-selection .game-box:not(:last-child) {
    margin-bottom: 80px;
}

.game-selection .game-info {
    flex: 1 1 300px;
    position: relative;
    margin-right: 40px;
}

.game-selection .game-info .game-icon {
    width: 90px;
    height: 90px;
}

.game-selection .game-info h2 {
    font-size: 56px;
    line-height: 68px;
    margin-bottom: 20px;
}

.game-selection .game-info p {
    font-weight: 400;
    font-size: 16px;
    color: #444444;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 40px;
}

.game-selection .app-buttons {
    display: flex;
    gap: 32px;
    align-items: center;
}

.game-selection .app-buttons img {
    width: 180px;
    height: 52px;
}

.gallery-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 711px;
    margin: auto;
    /* 为箭头留空 */
    box-sizing: border-box;
}

.gallery-thumbnails .swiper-slide {
    text-align: center;
    max-width: 160px;
}

.ash .gallery-thumbnails .swiper-slide {
    /* max-width: 260px; */
    max-width: calc(50% - 5px);
}

.gallery-thumbnails img {
    width: 100%;
    border-radius: 8px;
}

.custom-button-prev,
.custom-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    user-select: none;
}

.custom-button-prev.disabled,
.custom-button-next.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

.custom-button-prev img,
.custom-button-next img {
    width: 48px;
    height: 48px;
}

.custom-button-prev {
    left: -24px;
}

.custom-button-next {
    right: -24px;
}

/* .gallery-container.ash{
    width: 100%;
    display: flex;
} */

/* .gallery-container.ash img{
    width: calc(50% - 5px);
}

.gallery-container.ash img:nth-child(1){
    margin-right: 10px;
} */

.game-selection .main-image {
    flex: 0 1 369px;
}

.game-selection .main-image img {
    width: 100%;
}

@media (max-width: 992px) {
    .game-selection .game-box {
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .game-selection .game-box .game-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .game-selection .game-info .game-icon{
        margin-top: 20px;
    }

    .game-selection .main-image img {
        max-height: 500px;
        width: auto;
    }

    .game-selection .game-info{
        margin-right: 0;
    }

    .game-selection .game-info h2 {
        font-size: 42px;
    }

    .game-selection .game-info p {
        max-width: 620px;
        text-align: center;
    }

    .game-selection .app-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .gallery-container {
        position: relative;
        max-width: 992px;
        margin-top: 50px;
    }
}

@media (max-width: 550px) {
    .ash .gallery-thumbnails .swiper-slide {
        max-width: 260px;
    }
}

/* story */
.story-section {
    background: linear-gradient(180deg, #E6F5FF 0%, #FFFFFF 100%);
}

.story {
    position: relative;
    width: 100%;
    color: #FFFFFF;
}

.story h2 {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 52px;
    line-height: 1.2;
}

.story2 {
    margin-top: 100px;
}

@media (max-width: 1024px) {
    .story h2 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .story h2 {
        left: 40px;
        font-size: 30px;
    }

    .story2 {
        margin-top: 60px;
    }
}

@media (max-width: 550px) {
    .story h2 {
        left: 20px;
        font-size: 20px;
    }
}

/* highlights */
.highlights-section {
    background: linear-gradient(180deg, #E6F5FF 0%, #FFFFFF 100%);
}

.highlights {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.highlight-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow: hidden;
    padding: 12px;
}

.highlight-card:last-child{
    margin-bottom: 0;
}

.highlight-card:nth-child(2n-1) {
    background: linear-gradient(270deg, rgba(21, 157, 247, 0.1) 0%, rgba(21, 157, 247, 0.1) 100%);
    flex-direction: row-reverse;
}

.highlight-image {
    flex: 1 1 300px;
    min-width: 250px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlight-text {
    flex: 1 1 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-text h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.highlight-text p {
    margin-top: 0.5rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .highlight-card {
        flex-direction: column;
    }

    .highlight-card:nth-child(even) {
        flex-direction: column;
    }

    .highlight-text {
        flex: auto;
        padding: 1.2rem;
    }
}

@media (max-width: 550px) {
    .highlight-image{
        flex: auto;
    }
}

@media (max-width: 480px) {
    .highlight-text h3 {
        font-size: 20px;
    }
    
    .highlight-text p {
        font-size: 14px;
    }
}

/* testimonials */
.testimonials-section {
    background: #F3F5FA;
    overflow: hidden;
    padding-bottom: 180px;
}

.testimonials-section .swiper-container {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.testimonials-section .swiper-slide {
    max-width: 780px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 24px 24px 24px 24px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    display: flex;
}

.testimonial-card .avatar {
    width: 380px;
    height: auto;
    margin-right: 24px;
}

.testimonial-card .msg {
    width: 400px;
}

.testimonial-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    margin-top: 40px;
}

.testimonial-card .stars img {
    width: 32px;
    height: 32px;
}

.testimonial-card .feedback {
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    height: 100px;
    padding-right: 16px;
    box-sizing: border-box;
}

.testimonial-card h4 {
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    font-family: 'isSemiBold', Montserrat;
}

.testimonial-card .yinhao {
    position: absolute;
    right: 20px;
    bottom: 10px;
    width: 55px;
    height: 55px;
}

.testimonials-section .swiper-free-mode>.swiper-wrapper {
    transition-timing-function: linear !important;
}

.testimonials-section .swiper-container.top-row {
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .testimonials-section .swiper-slide {
        max-width: 580px;
    }

    .testimonial-card .avatar {
        width: 280px;
    }
    
    .testimonial-card .msg {
        width: 300px;
    }

    .testimonial-card .stars img {
        width: 24px;
        height: 24px;
    }
    
    .testimonial-card .feedback {
        font-size: 14px;
        line-height: 20px;
        height: 80px;
    }
    
    .testimonial-card h4 {
        font-size: 20px;
        font-family: 'isSemiBold', Montserrat;
    }
    
    .testimonial-card .yinhao {
        width: 40px;
        height: 40px;
    }
    
}

@media (max-width: 768px) {
    .testimonials-section {
        padding-bottom: 100px;
    }

    .testimonials-section .swiper-slide {
        max-width: 300px;
    }

    .testimonial-card {
        position: relative;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 16px;
    }

    .testimonial-card .avatar {
        width: 100%;
        height: auto;
        margin: 0 0 16px;
        padding: 0 10px;
        display: block;
    }

    .testimonial-card .msg,
    .testimonial-card>div {
        width: 100%;
        padding: 0 10px;
    }

    .testimonial-card .feedback {
        font-size: 15px;
        line-height: 22px;
        height: auto;
        padding-right: 0;
        height: 80px;
    }

    .testimonial-card h4 {
        font-size: 18px;
        line-height: 22px;
    }

    .testimonial-card .stars{
        margin-top: 0px;
    }

    .testimonial-card .stars img {
        width: 24px;
        height: 24px;
    }

    .testimonial-card .yinhao {
        position: absolute;
        right: 20px;
        width: 36px;
        height: 36px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-section .swiper-slide {
        max-width: 70%;
    }

    .testimonial-card {
        padding: 30px 12px;
    }

    .testimonial-card .feedback {
        font-size: 14px;
        line-height: 20px;
    }

    .testimonial-card h4 {
        font-size: 16px;
    }

    .testimonial-card .stars img {
        width: 20px;
        height: 20px;
    }
}

/* ourOffice */
.ourOffice-section {
    position: relative;
    background-color: #FFF;
    padding: 148px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ourOffice-section .section-title {
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 40px;
    text-align: left;
}

.ourOffice-section .image1 {
    position: relative;
    z-index: 10;
    height: auto;
    object-fit: contain;
    height: 44vw;
    width: auto;
}

.ourOffice-section .content {
    position: relative;
    margin-left: -20vw;
    height: 44vw;
    width: 44vw;
}

.ourOffice-section .content .image2 {
    width: 100%;
    height: 100%;
}

.ourOffice-section .content .text {
    width: 51%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #FFF;
}

.ourOffice-section .content .text p {
    padding-right: 20px;
    box-sizing: border-box;
    font-size: 20px;
}

@media (max-width: 1600px) {
    .ourOffice-section .section-title {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .ourOffice-section .content .text p {
        font-size: 16px;
    }
}

@media (max-width: 1400px) {
    .ourOffice-section .section-title {
        font-size: 45px;
    }
}

@media (max-width: 1300px) {
    .ourOffice-section .section-title {
        font-size: 40px;
    }

    .ourOffice-section .content .text p {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .ourOffice-section .section-title {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .ourOffice-section .content .text p {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .ourOffice-section .section-title {
        font-size: 42px;
        margin-bottom: 10px;
    }

    .ourOffice-section {
        flex-direction: column-reverse;
        align-items: start;
        padding: 80px 0;
    }

    .ourOffice-section .content {
        margin-left: 10vw;
        width: 80vw;
        height: 80vw;
        margin-bottom: -12vw;
        z-index: 2;
    }

    .ourOffice-section .image1 {
        width: 95vw;
        height: auto;
        z-index: 1;
    }

    .ourOffice-section .content .text {
        width: 100%;
        padding: 10vw;
    }

    .ourOffice-section .content .text p {
        font-size: 16px;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .ourOffice-section .section-title {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .ourOffice-section .content .text p {
        font-size: 16px;
    }
}

@media (max-width: 568px) {
    .ourOffice-section .content .text p {
        font-size: 12px;
    }
}

/* slogan */
.slogan {
    position: relative;
}

.slogan h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'isBold', Montserrat;
    font-size: 45px;
    color: #FFFFFF;
    line-height: 77px;
    letter-spacing: 1px;
    text-shadow: 0px 4px 8px rgba(19, 28, 11, 0.3);
    text-align: center;
    font-style: normal;
    text-transform: none;
    width: 100%;
}

.slogan img {
    min-height: 150px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .slogan h2 {
        font-size: 35px;
        line-height: 52px;
    }
}

@media (max-width: 768px) {
    .slogan h2 {
        padding: 0 20px;
        font-size: 30px;
        line-height: 33px;
    }
}

/* footer */
footer {
    background-color: #ecedf1FF;
    color: white;
    padding: 80px 0 40px;
}

footer .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}

.footer-section {
    flex: 1;
}

.footer-section.logo {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}

.footer-section span {
    font-family: 'isBold', Montserrat;
    font-size: 1.3rem;
}

.footer-logo {
    vertical-align: middle;
    margin-right: 10px;
    max-height: 48px;
}

.footer-section h4 {
    color: #000000FF;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section a {
    color: #000000FF;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    opacity: 1;
}

.social-link img {
    width: 48px;
    height: 48px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #d5d6d9FF;
    color: #00000080;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
}

@media (max-width: 992px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section {
        flex: 0 0 100%;
        padding: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .social-link img {
        width: 28px;
        height: 28px;
        margin: 0 auto;
    }

    .footer-bottom {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .footer-section a {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}