body {
    line-height: 1.6;
    background-color: #1a1a1b;
    color: #d7dadc;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3 {
    color: rgb(247, 231, 51);
    transition: color 0.3s ease;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 140px);
    max-width: 100%;
    overflow-x: hidden;
}

.content-wrapper {
    display: flex;
    flex: 1;
    position: relative;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    flex: 1;
    padding: 50px;
    overflow-y: auto;
    max-height: calc(100vh - 140px);
}

.logo-container img {
    width: 800px;
    height: auto;
    filter: none;
    transition: filter 0.3s ease;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: small;
    color: #d7dadc;
}

@media (max-width: 1199px) {
    .content-wrapper {
        flex-direction: column;
    }

    .logo-container {
        display: none;
    }

    .about-content {
        flex: 1;
        width: 100%;
        padding: 20px;
        overflow-x: hidden;
    }

    .about-text {
        text-align: left;
        width: 80%;
        box-sizing: border-box;
    }
}


.team-section {
    margin-top: 35px;
    padding: 0 10px;
}

.team-section h2 {
    text-align: center;
    font-size: 1.75em;
    margin-bottom: 30px;
    color: #ffe600;
}

.team-category {
    margin-bottom: 36px;
}

.team-category h3 {
    font-size: 1.3em;
    color: #7c97ff;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.team-card {
    background: rgba(20, 20, 28, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 28px;
    padding: 24px 32px;
    box-sizing: border-box;
    min-width: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.team-image-container {
    width: 110px;
    min-width: 110px;
    aspect-ratio: 4/5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #18181b;
    border: 1px solid #222;
    border-radius: 0;
    flex-shrink: 0;
}

.team-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: #18181b;
}

@media (min-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }

    .team-card {
        padding: 32px 28px;
        gap: 36px;
    }

    .team-image-container {
        width: 140px;
        min-width: 140px;
    }
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1 1 0%;
    justify-content: center;
    align-items: flex-start;
    overflow-wrap: anywhere;
}

.team-name {
    font-size: 1.08em;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: left;
    word-break: break-word;
    line-height: 1.2;
}

.team-role {
    font-size: 1em;
    color: #a5a5a5;
    text-align: left;
    word-break: break-word;
    line-height: 1.2;
}

@media (min-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (min-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media (min-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
    }

    .team-card {
        padding: 36px 40px;
        gap: 44px;
        max-width: 520px;
    }

    .team-image-container {
        width: 140px;
        min-width: 140px;
    }

    .team-name,
    .team-role {
        font-size: 1.08em;
    }
}


.scroll-indicator {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: rgb(247, 231, 51);
    transition: opacity 0.3s ease;
}

.scroll-indicator i {
    display: block;
    margin-bottom: 10px;
    animation: scroll-bounce 2s infinite;
}

.scroll-indicator i:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator i:nth-child(3) {
    animation-delay: 0.4s;
}

.scroll-indicator i:nth-child(4) {
    animation-delay: 0.6s;
}

.scroll-indicator i:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes scroll-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

@media (max-width: 1199px) {
    .scroll-indicator {
        display: none;
    }
}