body {
    background: linear-gradient(#ffffff, #b0eaff);
    color: #000000;
    font-family: 'Times New Roman', Times, serif, sans-serif;
    margin: 0;
    padding-right: 280px;
    padding-left: 280px;
}

a {
    color: #00ff00;
}

.top-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
}

.top-banner img {
    display: block;
}

.top-banner a {
    display: inline-flex;
    text-decoration: none;
}

.top-banner .side-gif {
    max-width: 200px;
}

.top-banner .logo {
    max-width: 20000px;
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.nav-image {
    display: block;
    max-height: 116px;
    width: auto;
}

.site-header {
    display: block;
}

.section {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: center;
}

.headline {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.flex-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 10px 0 30px;
}

.flex-row-tight {
    margin: 10px 0 20px;
}

.center-row {
    display: flex;
    justify-content: center;
    margin: 10px 0 30px;
}

.center-row-tight {
    margin: 10px 0 20px;
}

.thumb-220 {
    display: block;
    max-width: 220px;
}

.thumb-420 {
    display: block;
    max-width: 420px;
}

.banner-600 {
    display: block;
    max-width: 900px;
    width: auto;
    height: 300px;
    max-height: 300px;
}

.banner-pair {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 10px 0 20px;
}

.banner-side {
    display: block;
    max-width: 700px;
    width: auto;
    height: 300px;
    max-height: 300px;
}

.footer-note {
    text-align: center;
    margin: 10px 0 30px;
}

.career-cta {
    color: #0066ff;
    font-weight: bold;
    text-decoration: underline;
    font-size: 26px;
    text-align: center;
    display: block;
    animation: pulse-glow 1.6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 102, 255, 0.4);
    }

    50% {
        transform: scale(1.04);
        text-shadow: 0 0 12px rgba(0, 102, 255, 0.7);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(0, 102, 255, 0.4);
    }
}

.sidebar {
    position: fixed;
    top: 60px;
    right: 0;
    width: 260px;
    height: calc(100% - 60px);
    padding: 12px;
    overflow-y: auto;
}

.sidebar-title {
    font-weight: bold;
    font-size: 22px;

    color: #ff0000;
    margin-bottom: 6px;
}

.sidebar-text {
    font-size: 18px;
    line-height: 1.4;
}

.sidebar-text-stretch {
    display: inline-block;
    transform: scaleX(0.92) scaleY(1.12);
    transform-origin: top left;
}

.sidebar img {
    display: block;
    width: 100%;
    margin-top: 12px;
}

.sidebar-left {
    left: 0;
    right: auto;
    border-left: none;
}

@media (max-width: 900px) {
    body {
        padding-right: 0;
        padding-left: 0;
    }

    .sidebar {
        position: static;
        width: auto;
        height: auto;
        border-left: none;
        border-top: 2px solid #00ff00;
    }
}