/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    background-color: #000;
}

/* Navigation styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    z-index: 100;
    width: 100%;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-links a {
    color: #CACACA;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #F8CD48;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1500;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

/* Fullpage section styles */
.fullpage-container {
    height: 100vh;
    height: -webkit-fill-available;
    overflow: hidden;
    position: relative;
}

.section {
    height: 100vh;
    height: -webkit-fill-available;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
    overflow: hidden;
}

.section.active {
    opacity: 1;
    z-index: 10;
}

/* Home section specific styles */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* #000000 with 70% opacity */
    z-index: 0;
}

.main-logo {
    max-width: 60%;
    height: auto;
    max-height: 40vh;
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: block;
}

.scroll-down {
    position: absolute;
    bottom: 4rem;
    width: 96%;
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-down img {
    width: 135px;
    height: auto;
    opacity: 0.7;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Default section backgrounds - will be replaced with game assets */
#home {
    background-color: #1a1a2e;
}

#section1 {
    background-color: #16213e;
}

#section2 {
    background-color: #0f3460;
}

#section3 {
    background-color: #533483;
}

#section4 {
    background-color: #5b4b8a;
}

#section5 {
    background-color: #30475e;
}

/* Section content styles */
.section-content {
    max-width: 1200px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    transition-delay: 0.3s;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    margin-bottom: 12rem;
}

.section.active .section-content {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-description {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

/* Giới Thiệu section specific styles */
#gioi-thieu-1 {
    background-color: #000;
}

#gioi-thieu-1 .background-video {
    opacity: 0.7;
}

#ve-chung-toi {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

#ve-chung-toi .section-content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.bottom-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    width: 100%;
}

.weaver-section {
    position: relative;
    max-width: 500px;
    text-align: center;
}

.team-icons {
    position: relative;
    display: flex;
    gap: 2rem;
}

.dong-hanh-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #F8CD48;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dong-hanh-description {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFACF;
    line-height: 119%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.email-icon {
    width: 32px;
    height: 32px;
}

.email-link {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #F8CD48;
    text-decoration: none;
}

.partners {
    margin-top: 4rem;
    width: 100%;
}

.partners-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFACF;
    margin-bottom: 1rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.partner-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
}

/* Top bar styles */
.top-bar {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    z-index: 1000;
}

/* Language selector styles */
.language-selector {
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    cursor: pointer;
}

.selected-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 700;
    padding: 5px;
}

.lang-code {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% - 5px);
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
    display: none;
    min-width: 180px;
    white-space: nowrap;
}

.language-selector:hover .language-dropdown {
    display: block;
}

/* Add a pseudo-element to create a hover bridge */
.language-selector::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.language-option:not(.disabled):hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background: rgba(248, 205, 72, 0.1);
}

.language-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lang-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* Social icons styles */
.social-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    color: #ffffff;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-svg {
    width: 100%;
    height: 100%;
}

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    display: none;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 2rem;
}

.close-menu {
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: #fff;
    padding: 4px;
}

.close-menu svg {
    width: 100%;
    height: 100%;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 48px;
    color: #F8CD48;
    margin-bottom: 1rem;
}

.menu-item {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #F8CD48;
}

/* Mobile language selector */
.language-selector-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Mobile social icons */
.social-icons-mobile {
    display: flex;
    gap: 2rem;
}

.social-icons-mobile .social-icon {
    width: 32px;
    height: 32px;
}

/* Hide desktop elements on mobile */
@media screen and (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .section-title {
        font-size: 48px;
        margin-bottom: 1.5rem;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .nav-links a {
        font-size: 16px;
    }

    .main-logo {
        max-width: 80%;
        bottom: 6rem;
    }

    .scroll-down {
        bottom: 3rem;
    }

    .scroll-down img {
        width: 90px;
    }

    .section {
        padding: 1rem;
    }

    .section-content {
        padding: 0 1rem;
        margin-bottom: 8rem;
    }

    .mobile-menu-toggle {
        top: 1.5rem;
        right: 1.5rem;
    }

    .studio-description,
    .weaver-description {
        font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 13px;
        line-height: 1.4;
        font-weight: 400;
    }
    
    .studio-description {
        margin-bottom: 1.5rem;
    }

    .weaver-description {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .partner-logo {
        max-width: 96px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 14px;
    }

    .main-logo {
        max-width: 90%;
        bottom: 5rem;
    }

    .scroll-down {
        bottom: 2rem;
    }

    .scroll-down img {
        width: 75px;
    }

    .section-content {
        margin-bottom: 6rem;
    }

    .studio-description,
    .weaver-description {
        font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 12px;
        line-height: 1.3;
    }
    
    .studio-description {
        margin-bottom: 1rem;
    }

    .weaver-description {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    .partner-logo {
        max-width: 72px;
    }
}

@font-face {
    font-family: 'Danh Da';
    src: url('assets/fonts/DanhDa-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Thunder';
    src: url('assets/fonts/Thunder-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

/* Background image styles */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* About Us section styles */
.about-us {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 2rem;
}

.studio-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 100px;
    font-weight: 700;
    color: #F8CD48;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.studio-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #FFEBAE;
    margin-bottom: 2rem;
}

.studio-description,
.weaver-description {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #E1E1E1;
}

.studio-description {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.weaver-section {
    position: relative;
    max-width: 500px;
    text-align: center;
    bottom: auto;
    left: auto;
    transform: none;
}

.team-icons {
    position: relative;
    display: flex;
    gap: 2rem;
    bottom: auto;
    right: auto;
    transform: none;
}

.dong-hanh-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #F8CD48;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dong-hanh-description {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFACF;
    line-height: 119%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.email-icon {
    width: 32px;
    height: 32px;
}

.email-link {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #F8CD48;
    text-decoration: none;
}

.partners {
    margin-top: 4rem;
    width: 100%;
}

.partners-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFACF;
    margin-bottom: 1rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.partner-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
}

/* Top bar styles */
.top-bar {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    z-index: 1000;
}

/* Language selector styles */
.language-selector {
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    cursor: pointer;
}

.selected-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 700;
    padding: 5px;
}

.lang-code {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% - 5px);
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
    display: none;
    min-width: 180px;
    white-space: nowrap;
}

.language-selector:hover .language-dropdown {
    display: block;
}

/* Add a pseudo-element to create a hover bridge */
.language-selector::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.language-option:not(.disabled):hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background: rgba(248, 205, 72, 0.1);
}

.language-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.lang-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* Social icons styles */
.social-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    color: #ffffff;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-svg {
    width: 100%;
    height: 100%;
}

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    display: none;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 2rem;
}

.close-menu {
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: #fff;
    padding: 4px;
}

.close-menu svg {
    width: 100%;
    height: 100%;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 48px;
    color: #F8CD48;
    margin-bottom: 1rem;
}

.menu-item {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #F8CD48;
}

/* Mobile language selector */
.language-selector-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Mobile social icons */
.social-icons-mobile {
    display: flex;
    gap: 2rem;
}

.social-icons-mobile .social-icon {
    width: 32px;
    height: 32px;
}

/* Hide desktop elements on mobile */
@media screen and (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .studio-title {
        font-size: 28px;
        margin-bottom: 0.75rem;
    }

    .studio-tagline {
        font-size: 16px;
        margin-bottom: 0.75rem;
    }

    .studio-description,
    .weaver-description {
        font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .weaver-description {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 0.75rem;
    }

    .weaver-section {
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .weaver-title {
        font-size: 16px !important;
        margin-bottom: 0.75rem;
    }

    .team-icons {
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    .team-icon-container {
        gap: 0.25rem;
    }

    .team-icon {
        width: 40px;
        height: 40px;
    }

    .team-name {
        font-size: 12px;
    }

    #ve-chung-toi {
        padding: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .studio-title {
        font-size: 24px;
        margin-bottom: 0.5rem;
    }

    .studio-tagline {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }

    .studio-description,
    .weaver-description {
        font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .weaver-title {
        font-size: 14px !important;
        margin-bottom: 0.5rem;
    }

    .weaver-description {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    .team-icon {
        width: 32px;
        height: 32px;
    }

    .team-name {
        font-size: 10px;
    }

    .bottom-content {
        gap: 1rem;
    }

    .team-icons {
        gap: 0.75rem;
    }
}

#dong-hanh .section-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1024px;
    margin: 0;
    text-align: center;
    padding: 0 2rem;
}

.dong-hanh-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 96px;
    font-weight: 700;
    color: #F8CD48;
    margin-bottom: 2rem;
    line-height: 1.2;
    margin-top: 3rem;
}

.dong-hanh-description {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFACF;
    line-height: 119%;
    max-width: 800px;
    margin: 0 auto;
}

.weaver-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #E1E1E1;
    margin-bottom: 1.5rem;
}

.weaver-description {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #E1E1E1;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    #dong-hanh .section-content {
        top: 60%;
        padding: 0 1rem;
    }

    .dong-hanh-title {
        font-size: 32px;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .dong-hanh-description {
        font-size: 14px;
        line-height: 1.4;
    }

    .email-link {
        font-size: 16px;
        word-break: break-all;
    }

    .email-icon {
        width: 24px;
        height: 24px;
    }

    .partners-title {
        font-size: 16px;
    }

    .partner-logo {
        max-width: 96px;
    }
}

@media screen and (max-width: 480px) {
    #dong-hanh .section-content {
        top: 55%;
        padding: 0 0.75rem;
    }

    .dong-hanh-title {
        font-size: 28px;
        margin-top: 1rem;
        margin-bottom: 0.75rem;
    }

    .dong-hanh-description {
        font-size: 12px;
        line-height: 1.3;
    }

    .email-link {
        font-size: 14px;
    }

    .email-icon {
        width: 20px;
        height: 20px;
    }

    .partners-title {
        font-size: 14px;
    }

    .partner-logo {
        max-width: 72px;
    }
}

.weaver-section-title {
    font-family: 'Danh Da', sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #E1E1E1;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
    .weaver-section-title {
        font-size: 24px;
        margin-bottom: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .weaver-section-title {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }
}

.team-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.team-icon {
    width: 100px;
    height: 100px;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: #E1E1E1;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .team-icon-container {
        gap: 0.25rem;
    }

    .team-icon {
        width: 40px;
        height: 40px;
    }

    .team-name {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .team-icon {
        width: 32px;
        height: 32px;
    }

    .team-name {
        font-size: 10px;
    }
} 