html {
    width: 100vw;
    height: auto;
    overflow-x: hidden;
}
.section-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.section-1-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-1-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 6px;

}


.section-1-text {
    margin-left: 5%;
    margin-right: 5%;
    order: 2;
}

.section-1-text h2 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.section-1-text p {
    font-size: 14px;
    line-height: 1.6;
}

.section-2 {
    margin-top: 50px;
}

.section-2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-2-text {
    margin-left: 5%;
    margin-right: 5%;
    order: 2;
}
.section-2-title {
    margin-left: 5%;
    margin-right: 5%;
    order: 2;
}
.section-2-title h2 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-2-text p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.section-2-image {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.studio-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.studio-image:hover {
    transform: scale(1.02);
}



.section-add1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    margin-top: 40px;
}

.add1-container {
    display: flex;
    width: 96%;
    margin-left: 1%;
    margin-right: 1%;
    gap: 10px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
}

.module-image:hover {
    transform: scale(1.02);
}

.text-content{
    flex: 1;
    padding: 10px;
    text-align: left;
}


.text-content p {
    font-size: 14px;
    line-height: 1.6;
}


.section-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}

.section-3-content {
    display: flex;
    flex-direction: column;
    width: 96%;
    margin-left: 1%;
    margin-right: 1%;
    gap: 10px;
    box-sizing: border-box;
}

.feature-card {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 14px;
    padding: 10px 20px;
    margin: 0;
    background-image: url('../../img/hiro_text_bg.png');
    background-size: cover;
    color: #fff;
    font-weight: 700;
    flex: 1;
    border-radius: 4px;
    min-height: 50px; /* 确保最小高度以完整显示背景 */
    display: flex;
    align-items: center; 
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    flex: 2;
    margin: 0;
}

.section-4{
    margin-top: 50px;
}

.section-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持比例并填充容器 */
    object-position: center;
    opacity: 0.8; /* 可选：添加轻微透明度 */
}

/* 如果需要添加遮罩层 */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* 半透明黑色遮罩 */
    z-index: 1;
}


.section-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
}

.section-6-content {
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.pixel-pitch-select {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pitch-btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pitch-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: #666;
}

.pitch-btn:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.pitch-btn.active {
    color: #0f52ba;
}

.pitch-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.pitch-icon svg {
    width: 100%;
    height: 100%;
}

.pitch-text {
    font-weight: 500;
}

.spec-table {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 30px;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
    font-size:14px;
}

.pitch-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.spec-table th,
.spec-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.spec-table th {
    background-color: rgba(0, 0, 0, 0.8);
    color: #0f52ba;
    font-weight: 600;
}

.hidden {
    display: none;
}

.spec-table tr:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.spec-table tbody tr:nth-child(odd) {
    background-color: #000; /* 更深的灰色 */
}

.spec-table tbody tr:nth-child(even) {
    background-color: #2d2d2d; /* 稍浅的灰色 */
}


/* 下载按钮样式 */
.download-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 50px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1e2460; /* 蓝色背景 */
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #1e2460;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.download-btn:hover {
    background-color: #0056b3; /* 深蓝色背景 */
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.btn-icon {
    font-size: 14px;
    display: none;
}
