:root {
    --White: #FFF;
    --Black: #000;
    --Primary-Blue: #0042FF;
}

.text-header {
    font-family: 'Funnel Display';
    font-size: 2.53vmax;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.text-subheader {
    font-family: "Funnel Display";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.text-subtitle {
    font-family: "Funnel Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.text-caption {
    font-family: "Funnel Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.text-menu {
    font-family: "Funnel Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.word-wrap-break{
    word-wrap: break-word;
}

/* #region -----Hero(Banner) 區塊樣式----- */
.hero {
    position: relative;
    width: 100%;
    height: 780px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 90px;
}

.hero [name="banner"] {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 780px;
}

.hero [name="banner"] img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero [name="overlay"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 42.92%, #000 75.42%);
}

.hero [name="container"] {
    width: 100%;
    z-index: 1;
    align-items: center;
}

.hero-text{
    max-width: 482px;
}

.hero-text [name="title"]{
    margin-bottom: 21px;
}

.hero-text [name="content"] {
    margin-bottom: 41px;
}

/* #endregion */ 

/* #region -----Interface Controllers Section----- */
.controllers{
    padding-top: 100px;
    padding-bottom: 100px;
}

.controllers-list{
    display: grid;
    gap: 10px;
}

.controllers-item {
    width: 100%;
}

.DropdownItem [name="downloadList"]{
    padding-top: 45px;
    padding-bottom: 35px;
}

.DropdownItem [name="downloadItem"] {
    margin-bottom: 40px;
}

.DropdownItem [name="downloadItem"] a {
    color: var(--Black, #000);
    font-weight: 800;
    max-width: 422px;
    margin-bottom: 20px;
    text-decoration: none;
}

.DropdownItem [name="other"] {
    margin-top: 34px ;
}

.DropdownItem [name="subcategorySelect"] {
    max-width: 500px; 
    margin: 38px 0; 
    border-radius: 5px;
    font-size: clamp(21px, 2rem, 999px);
    border: 1.5px solid #000;
}
.DropdownItem [name="modelList"] { display: grid; gap: 16px; }
.DropdownItem [name="modelList"] a {
    color: #0042FF; font-family: "Funnel Sans"; font-size: 24px;
    font-weight: 800; text-decoration: underline;
}
/* #endregion */ 