@import url("../css.css");

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: #ffffff;
    --bg-menu: #ffffff;
    --bg-navbar: rgba(255, 255, 255, 0.6);
    --bg-loader: #fff;
    --bg-footer: rgba(51, 51, 51, 0.3);
    --text-primary: #353434;
    --text-secondary: #494848;
    --text-muted: #666;
    --text-light: #fff;
    --text-card: #333;
    --text-menu: #1B2732;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-sm: rgba(0, 0, 0, 0.05);
    --shadow-md: rgba(0, 0, 0, 0.15);
    --accent: #0099ff;
    --accent-dark: #0051a7;
    --accent-light: #82ebff;
    --accent-overlay: rgba(0, 153, 255, 0.5);
    --btn-bg: #0051a7;
    --btn-hover-bg: #82ebff;
    --btn-hover-text: #333;
    --social-bg: #0099ff;
    --social-hover-bg: #fff;
    --scroll-top-bg: #0099ff;
    --scroll-top-hover-bg: #fff;
    --menu-item-hover: rgba(0, 153, 255, 0.1);
    --navbar-collapse-bg: #353434;
    --toggler-color: #fff;
    --toggler-line: #fff;
}

[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #141414;
    --bg-menu: #161616;
    --bg-navbar: rgba(10, 10, 10, 0.85);
    --bg-loader: #0a0a0a;
    --bg-footer: rgba(0, 0, 0, 0.5);
    --text-primary: #e8e8e8;
    --text-secondary: #a0a0a0;
    --text-muted: #777;
    --text-light: #fff;
    --text-card: #e0e0e0;
    --text-menu: #e0e0e0;
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow-sm: rgba(0, 0, 0, 0.4);
    --shadow-md: rgba(0, 0, 0, 0.6);
    --accent: #4da6ff;
    --accent-dark: #3d8be0;
    --accent-light: #6ec6ff;
    --accent-overlay: rgba(77, 166, 255, 0.3);
    --btn-bg: #3d8be0;
    --btn-hover-bg: #5bb3ff;
    --btn-hover-text: #0a0a0a;
    --social-bg: #3d8be0;
    --social-hover-bg: #fff;
    --scroll-top-bg: #3d8be0;
    --scroll-top-hover-bg: #fff;
    --menu-item-hover: rgba(77, 166, 255, 0.12);
    --navbar-collapse-bg: #0d0d0d;
    --toggler-color: #e0e0e0;
    --toggler-line: #e0e0e0;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg-primary: #0a0a0a;
        --bg-secondary: #111111;
        --bg-card: #141414;
        --bg-menu: #161616;
        --bg-navbar: rgba(10, 10, 10, 0.85);
        --bg-loader: #0a0a0a;
        --bg-footer: rgba(0, 0, 0, 0.5);
        --text-primary: #e8e8e8;
        --text-secondary: #a0a0a0;
        --text-muted: #777;
        --text-light: #fff;
        --text-card: #e0e0e0;
        --text-menu: #e0e0e0;
        --border-color: rgba(255, 255, 255, 0.06);
        --shadow-sm: rgba(0, 0, 0, 0.4);
        --shadow-md: rgba(0, 0, 0, 0.6);
        --accent: #4da6ff;
        --accent-dark: #3d8be0;
        --accent-light: #6ec6ff;
        --accent-overlay: rgba(77, 166, 255, 0.3);
        --btn-bg: #3d8be0;
        --btn-hover-bg: #5bb3ff;
        --btn-hover-text: #0a0a0a;
        --social-bg: #3d8be0;
        --social-hover-bg: #fff;
        --scroll-top-bg: #3d8be0;
        --scroll-top-hover-bg: #fff;
        --menu-item-hover: rgba(77, 166, 255, 0.12);
        --navbar-collapse-bg: #0d0d0d;
        --toggler-color: #e0e0e0;
        --toggler-line: #e0e0e0;
    }
}

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

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

@media only screen and (max-width: 75em) {
    html {
        font-size: 56.25%;
    }
}

@media only screen and (max-width: 61.94em) {
    html {
        font-size: 53.13%;
    }
}

@media only screen and (max-width: 48em) {
    html {
        font-size: 50%;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-primary);
    font-size: 1.6rem;
    background-color: var(--bg-primary);
    line-height: 1.6;
    letter-spacing: .08rem;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.heading-primary {
    font-size: 4.8rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.heading-secondary {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 2rem 0;
    font-family: 'Kreon', serif;
}

.heading-tertiary {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Basic', sans-serif;
}

p {
    font-family: 'Basic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1rem 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

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

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: var(--text-primary);
}

button,
button:hover,
button:focus,
button:active {
    text-decoration: none;
    outline: none;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: hidden;
}

.no-js #loader-wrapper {
    display: none;
}

#loader {
    position: relative;
    top: 50%;
    margin: 0 auto;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: .2rem solid transparent;
    border-color: transparent;
    z-index: 1000;
}

#loader:before {
    content: "";
    position: absolute;
    top: .7rem;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    border-radius: 50%;
    border: .7rem solid transparent;
    border-color: #1B2732;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

#loader:after {
    content: "";
    position: absolute;
    top: .7rem;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    border-radius: 50%;
    border: .7rem solid transparent;
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-loader);
    z-index: 999;
    transition: background-color 0.3s ease;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

#scroll-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    display: none;
    z-index: 9;
    background: var(--scroll-top-bg);
    color: #fff;
    transition: all .3s;
}

#scroll-to-top i {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
}

@media (hover: hover) {
    #scroll-to-top:hover {
        background: var(--scroll-top-hover-bg);
        color: var(--accent);
        transform: scale(1.2);
    }
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border: 0;
    background: var(--bg-navbar);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99;
    min-height: 70px;
    font-family: 'Roboto', sans-serif;
    transition: all .5s ease;
    box-shadow: 0 2px 10px var(--shadow-sm);
}

.navbar-brand .logo {
    width: 50%;
    height: 50%;
    margin-left: 2rem;
}

@media (max-width: 768px) {
    .navbar-brand .logo {
        display: none;
    }
}

.navbar .icon-bar {
    color: var(--toggler-color);
    margin-right: 15px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    cursor: pointer;
    background: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 100;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--toggler-line);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.navbar .navbar-nav .active {
    color: var(--accent) !important;
}

.navbar-collapse .navbar-nav .nav-link {
    text-align: center;
    color: var(--text-primary);
    padding: 10px;
    margin: 1rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.nav-scroll {
    transition: background-color .5s ease 0s;
    position: fixed;
    color: var(--text-primary);
    top: -100px;
    left: 0;
    width: 100%;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.nav-scroll .icon-bar {
    margin-right: 15px;
}

.nav-scroll .navbar-nav .nav-link .active {
    color: var(--accent) !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: var(--navbar-collapse-bg);
        z-index: 90;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding-top: 100px;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 0 30px;
    }

    .navbar-collapse .navbar-nav .nav-item {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.35s ease, transform 0.35s ease;
        width: 100%;
    }

    .navbar-collapse.show .navbar-nav .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
        transition-delay: 0.08s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
        transition-delay: 0.16s;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
        transition-delay: 0.24s;
    }

    .navbar-collapse .navbar-nav .nav-link {
        color: #fff;
        font-size: 2rem;
        padding: 1.2rem 0;
        margin: 0;
        display: block;
        transition: color 0.3s ease;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-collapse .navbar-nav .nav-link:hover {
        color: var(--accent);
    }

    .navbar-nav .nav-item .theme-toggle {
        margin: 2rem 0 0;
        color: #fff;
        font-size: 1.8rem;
        width: 44px;
        height: 44px;
    }
}

.line li a {
    position: relative;
}

.line li a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: var(--accent-overlay);
    height: 50px;
    border-radius: 2px;
    z-index: -1;
    transition: all .5s;
}

.nav-scroll .line li a:before {
    background: var(--accent-overlay);
}

.line li a:hover:before {
    width: 100%;
}

@media (max-width: 991px) {
    .line li a:hover:before {
        width: 10%;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .line li a:hover:before {
        width: 20%;
    }
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
    margin-right: 4px;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    opacity: 0.7;
}

.theme-toggle:hover {
    opacity: 1;
    color: var(--accent);
    background: rgba(0, 153, 255, 0.08);
}

.theme-toggle:active {
    transform: scale(0.92);
}

.navbar-nav .nav-item .theme-toggle {
    margin: 0.8rem 1rem;
}

@media (max-width: 991px) {
    .navbar-nav .nav-item .theme-toggle {
        margin: 0.5rem auto;
        display: flex;
    }
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 89;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.home {
    padding: 25rem 0;
    background: url("../img/hero.jpg") no-repeat center;
    background-size: cover;
    clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 28% 100%, 0% 80%, 0 0);
}

.home-content h1 {
    font-size: 10rem;
    font-weight: 900;
    color: #fff;
    display: block;
    overflow: hidden;
    animation: moveInLeft 3s ease-out;
    animation-delay: 2s;
    animation-duration: 3s;
}

@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-10rem);
    }

    80% {
        transform: translateX(1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.home-content p {
    color: whitesmoke;
    font-size: 2rem;
    display: block;
    overflow: hidden;
    animation: moveInRight 3s ease-out;
    animation-delay: 2s;
    animation-duration: 3s;
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(10rem);
    }

    80% {
        transform: translateX(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .home {
        padding: 20rem 0;
    }
}

@media (max-width: 768px) {
    .home {
        padding: 25rem 0;
    }

    .home-content {
        margin-top: 20px;
        text-align: center;
    }

    .home-content h1 {
        margin-top: 20px;
        font-size: 5rem;
    }
}

.dest {
    background: var(--bg-primary);
    padding: 60px 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.dest .dest-title {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-card);
}

.dest .dest-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.dest .card {
    border: none;
    border-radius: 2px;
    margin-top: 2rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-card);
}

.dest .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-md);
}

.dest h2 {
    font-size: 4rem;
    margin-bottom: 40px;
    font-weight: normal;
}

.dest .card .text-center {
    padding: 15px;
}

.dest .text-center p {
    background: var(--bg-card);
    padding: 10px;
    margin: 0;
    color: var(--text-card);
    font-weight: 500;
}

.dest .card-img-top {
    border-radius: 8px 8px 0 0;
}

.footer {
    padding: 5rem 0;
    text-align: center;
}

.footer .social-links {
    margin: 40px 0;
    text-align: center;
}

.footer .social-links ul li {
    display: inline-block;
    padding: 0;
}

.footer .social-links ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    background: var(--social-bg);
    transition: all .3s;
    display: inline-block;
    margin: 0 5px;
}

@media (hover: hover) {
    .footer .social-links ul li a:hover {
        color: var(--accent);
        background: var(--social-hover-bg);
        transform: scale(1.2);
    }
}

.copyright {
    text-align: center;
    margin-top: 20px;
}

.copyright h5 {
    font-weight: 400;
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .footer {
        text-align: center;
    }

    .footer h3 {
        margin-top: 10px;
    }
}

.play-menu-container {
    position: relative;
    display: inline-block;
}

.side-menu {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-menu);
    border-radius: 8px;
    padding: 12px;
    margin-right: 15px;
    box-shadow: 0 4px 15px var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 250px;
    z-index: 1000;
}

.side-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.menu-item {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item a {
    display: block;
    padding: 10px;
    color: var(--text-menu);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-align: left;
    background: var(--bg-menu);
}

@media (hover: hover) {
    .menu-item a:hover {
        background: var(--menu-item-hover);
    }
}

.menu-text span {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-menu);
}

.menu-text small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .side-menu {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: 100%;
        right: auto;
        transform: translateX(-50%) translateY(10px);
        margin: 0 0 15px 0;
        background: var(--bg-menu);
        width: 280px;
        padding: 8px;
    }

    .side-menu.active {
        transform: translateX(-50%) translateY(0);
        visibility: visible;
        opacity: 1;
    }
}

.btn-custom {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    color: #fff !important;
    background-color: var(--btn-bg);
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.btn-custom.menu-open {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-text) !important;
}

@media (hover: hover) {
    .btn-custom:hover {
        background-color: var(--btn-hover-bg);
        transform: scale(1.05);
        color: var(--btn-hover-text) !important;
        text-decoration: none;
    }
}

.rainbow-text {
    background: linear-gradient(to right,
        #3b82f6,
        #22c55e,
        #eab308,
        #ec4899,
        #3b82f6
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    display: inline-block;
    animation: shine 3s linear infinite;
}

.plural {
    background: linear-gradient(to right,
        #3b82f6,
        #22c55e,
        #eab308,
        #ec4899,
        #3b82f6
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    display: inline-block;
    animation: shine 3s linear infinite;
    font-size: 1.2em;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* ====== Credits Section ====== */
.credits {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.credits-title {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-card);
}

.credits-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.credits-title {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-card);
}

.credit-item {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
}

.credit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-sm);
}

.credit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.credit-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    flex-shrink: 0;
}

.credit-avatar-placeholder {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    border-radius: 50%;
    background: rgba(128,128,128,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.credit-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-name:hover {
    color: var(--accent);
}

.credit-role {
    font-size: 1.2rem;
    color: var(--accent);
    background: rgba(0, 153, 255, 0.08);
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.credit-desc {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin: 8px 0 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .credits {
        padding: 50px 0;
    }

    .credits-title {
        font-size: 2.4rem;
    }

    .credit-name {
        font-size: 1.4rem;
    }

    .credit-role {
        font-size: 1.1rem;
    }

    .credit-desc {
        font-size: 1.3rem;
    }
}
