body {
    margin: 0;
    font-family: 'Noto Sanif SC', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    animation: slide-in 1s ease-out forwards;
}

.title {
    font-family: 'Parisienne', cursive;
    font-size: 5em;
    margin: 0;
}

.intro {
    font-family: 'Ma Shan Zheng', cursive;
    margin: 0 auto;
    font-size: 1.5em;
    color: white;
}

.rubyText {
    font-size:0.1em;
}

:lang(en) 	{
    font-family: 'Noto Sanif SC', sans-serif;
    font-size: 1em;
    }

/* .buttons {
    margin: 20px 0;
}

.button {
    font-family: 'Noto Sanif SC', sans-serif;
    text-decoration: none;
    background-color: #39C5BB;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0056b3;
} */

.image {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 25%;
    z-index: 0;
}

/* .abstract-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.abstract-shapes::before, .abstract-shapes::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    animation: move 5s infinite alternate;
    z-index: -2;
}

.abstract-shapes::before {
    top: 20%;
    left: 10%;
}

.abstract-shapes::after {
    bottom: 20%;
    right: 10%;
} */

@keyframes slide-in {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #0e1c36, #1c3144);
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.logo img {
    width: 1.75rem;
}

.logo span {
    font-weight: bold;
    font-size: 1.25rem;
}

nav {
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #39C5BB;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
}

.shape-1 { top: 25%; left: 25%; width: 200px; height: 200px; background: linear-gradient(to bottom right, rgba(76, 122, 255, 0.5), rgba(155, 93, 229, 0.5)); animation: rotate 20s linear infinite; }
.shape-2 { top: 33%; right: 25%; width: 150px; height: 150px; background: linear-gradient(to bottom right, rgba(255, 107, 107, 0.5), rgba(255, 165, 0, 0.5)); animation: rotate 25s linear infinite; }
.shape-3 { bottom: 25%; left: 33%; width: 180px; height: 180px; background: linear-gradient(to bottom right, rgba(6, 214, 160, 0.5), rgba(17, 138, 178, 0.5)); animation: rotate 30s linear infinite; }
.shape-4 { top: 25%; left: 25%; width: 150px; height: 150px; background: linear-gradient(to bottom right, rgba(76, 122, 255, 0.7), rgba(155, 93, 229, 0.7)); animation: rotate 22s linear infinite; }
.shape-5 { top: 33%; right: 25%; width: 120px; height: 120px; background: linear-gradient(to bottom right, rgba(255, 107, 107, 0.7), rgba(255, 165, 0, 0.7)); animation: rotate 27s linear infinite; }
.shape-6 { bottom: 25%; left: 33%; width: 140px; height: 140px; background: linear-gradient(to bottom right, rgba(6, 214, 160, 0.7), rgba(17, 138, 178, 0.7)); animation: rotate 32s linear infinite; }
.shape-7 { top: 45%; left: 45%; width: 100px; height: 100px; background: linear-gradient(to bottom right, rgba(255, 209, 102, 0.6), rgba(255, 107, 107, 0.6)); animation: rotate 18s linear infinite; }
.shape-8 { top: 10%; right: 10%; width: 80px; height: 80px; background: linear-gradient(to bottom right, rgba(102, 126, 234, 0.6), rgba(118, 75, 162, 0.6)); animation: rotate 23s linear infinite; }
.shape-9 { bottom: 10%; right: 20%; width: 90px; height: 90px; background: linear-gradient(to bottom right, rgba(0, 206, 201, 0.6), rgba(0, 126, 167, 0.6)); animation: rotate 28s linear infinite; }

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

.content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Parisienne', cursive;
}

.intro {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
} */

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    transform: translateY(50%);
    z-index: 1;
}

footer p {
    margin: 0;
}

footer div {
    display: flex;
    gap: 1rem;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #39C5BB;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .intro {
        font-size: 1rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer div {
        margin-top: 0.5rem;
    }
}