body {
    background-color: rgb(48, 0, 120);
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 0%;
}

.banner {
    font-size: 96px;
    background: rgb(48, 0, 130);
    color: white;
    padding: 20px 0;
    margin: 0 auto 40px auto;
    border-radius: 5px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    width: 80%;
    letter-spacing: 5px;
}

.top-tab {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}
.top-tab a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.4s;
}
.top-tab a:hover {
    color: #ff00cc;
}
.foot {
    margin-top: 60px;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.6);
    background-color: cyan;
    border-radius: 5px;
}

.news-box {
    width: 80%;
    margin: 40px 0 40px 40px;
    border: 4px solid #00eaff;
    border-radius: 5px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    padding: 32px 0 24px 0;
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    vertical-align: top;
}
.news-title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 4px;
    text-align: center;
    width: 100%;
}
.news-text {
    flex: 1;
    padding-left: 40px;
    font-size: 22px;
    color: #e0e0e0;
}
.news-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-image img {
    max-width: 300px;
    max-height: 220px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 2px solid #00eaff;
    background: #fff;
}
@media (max-width: 900px) {
    .news-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .news-text, .news-image {
        padding: 0;
    }
    .news-image img {
        max-width: 90vw;
        max-height: 40vw;
    }
}

/* Project and OpenUTAU page styles */
.section {
    background: rgba(255,255,255,0.08);
    margin: 30px auto;
    padding: 40px 0;
    border-radius: 5px;
    width: 70%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    font-size: 36px;
    transition: box-shadow 0.2s;
}
.section.important {
    border: 4px solid #00eaff;
    box-shadow: 0 8px 32px rgba(0,238,255,0.4);
    font-size: 44px;
}
.section a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: inherit;
    transition: color 0.3s;
}
.section a:hover {
    color: #00eaff;
    text-decoration: underline;
}
.section-desc {
    font-size: 20px;
    margin-top: 20px;
    color: #e0e0e0;
    font-weight: normal;
}

/* OpenUTAU image/text box styles */
.img-border {
    width: 62%;
    margin: 0 auto 30px auto;
    border: 4px solid #00eaff;
    border-radius: 5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.08);
    padding: 24px;
}
.img-border img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}
.img-border-text {
    font-size: 22px;
    color: #e0e0e0;
}

.links  {
    color: yellow;
    transition: 0.3s;
}

.links:hover {
    color: #33BBAD;
}

/* Silly page styles */ 
.silly_section {
    background: rgba(255,255,255,0.08);
    margin: 30px auto;
    padding: 40px 0;
    border-radius: 5px;
    width: 70%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    font-size: 36px;
    transition: box-shadow 0.2s;
}
/* Side Banner */
.side-banner {
    display: inline-block;
    width: 450px;
    margin: 40px;
    border: 4px solid #00eaff;
    border-radius: 5px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    padding: 24px;
    vertical-align: top;
}
.side-banner-text {
    font-size: 22px;
    color: #e0e0e0;
}
.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
}
@media (max-width: 900px) {
    .content-wrapper {
        display: block;
        width: 95%;
        margin: 0 auto;
        gap: 12px;
    }

    .news-column {
        display: block;
        width: 100%;
    }

    .news-box {
        display: block;
        width: 100%;
        margin: 16px 0;
        padding: 18px;
        box-sizing: border-box;
        text-align: center;
        gap: 12px;
    }

    .news-text, .news-image {
        padding: 0;
    }

    .news-image img {
        max-width: 90vw;
        max-height: 40vw;
        margin: 0 auto;
    }

    .side-banner {
        width: 50%;
        margin: 12px auto;
        display: block;
        text-align: center;
    }
}
