/* ==============================================================
   檔案名稱：live-stream-style.css
   功能說明：TC Gaming — 直播包網（Live Stream）頁面樣式表
   設計基準：1920px 固定寬度，透過 JS transform: scale() 等比縮放
   命名規則：
     - 共用元件：tcg- 前綴（與首頁一致）
     - 頁面專屬：tcg-ls- 前綴（ls = live-stream）
   瀏覽器支援：Chrome / Edge / Safari / Firefox，IE11 盡量相容
   ============================================================== */


/* ==============================================================
   [共用] 重置、變數、基本排版
   ※ 與首頁 style.css 相同的基礎樣式，獨立檔案所以需要重複
   ============================================================== */

/* CSS 變數 */

/* ★ Web 共用樣式已移至 tcg-common-web.css ★ */

.tcg-hamburger-desktop {
    font-size: 20px;
    cursor: pointer;
    color: #262626;
    color: var(--tcg-text);
}

.tcg-search-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #262626;
    color: var(--tcg-text);
    margin-right: 12px;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.tcg-search-btn:hover {
    color: #E5222B;
    color: var(--tcg-red);
}



/* ★ 漢堡選單已移至 tcg-common-web.css ★ */

/* [Page-Specific] Live Stream 頁面樣式
   ============================================================== */

/* ================================================================
   Web 版圖片尺寸控制
   ================================================================ */
.tcg-wrapper .tcg-ls-feature-icon img,
.tcg-wrapper .tcg-ls-showcase-deco img,
.tcg-wrapper .tcg-ls-showcase-pic img {
    max-width: 100%;
    height: auto;
}

/* ================================================================
   Hero Section（web 版 — background-image 模式）
   ================================================================ */
.tcg-wrapper .tcg-ls-hero {
    min-height: 600px;
    background-image: url('https://tc-gaming.com/img/web/live-stream/solutions4_img_00_banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 111px;
}
.tcg-wrapper .tcg-ls-hero-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 600px;
    padding-top: 92px;
    padding-left: 228px;
}
.tcg-wrapper .tcg-ls-hero-content {
    max-width: 600px;
    padding-top: 0px;
}
.tcg-wrapper .tcg-ls-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #262626;
    color: var(--tcg-text);
    margin-bottom: 100px;
}
.tcg-wrapper .tcg-ls-hero-btn {
    /* 可獨立調整 hero 按鈕 */
}


/* ================================================================
   What is Live Stream（web 版）
   ================================================================ */
.tcg-wrapper .tcg-ls-what {
    background: #FFFFFF;
    padding: 101px 0;
    padding-bottom: 59px;
}
/* 獨立標題（僅 web） */
.tcg-wrapper .tcg-ls-what-title {
    font-size: 55px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #262626;
    color: var(--tcg-text);
}
.tcg-wrapper .tcg-ls-what-text {
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: center;
}
.tcg-wrapper .tcg-ls-what-desc {
    font-size: 18px;
    color: #6B6B6B;
    color: var(--tcg-text-light);
    line-height: 2;
    margin: 0 auto 20px;
}

/* 4 個功能 icon 列 */
.tcg-wrapper .tcg-ls-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 120px;
    margin-top: 0px;
}
.tcg-wrapper .tcg-ls-feature-item {
    text-align: center;
}
/* icon 圖片自帶圓角卡片外觀，不加額外外框 */
.tcg-wrapper .tcg-ls-feature-icon {
    margin: 0 auto 16px;
}
.tcg-wrapper .tcg-ls-feature-label {
    font-size: 26px;
    font-weight: 600;
    color: #262626;
    color: var(--tcg-text);
    font-weight: 900;
    position: relative;
    top: -80px;
}
/* 各 feature 獨立 hook */
.tcg-wrapper .tcg-ls-feature-item-1 { }
.tcg-wrapper .tcg-ls-feature-item-2 { }
.tcg-wrapper .tcg-ls-feature-item-3 { }
.tcg-wrapper .tcg-ls-feature-item-4 { }


/* ================================================================
   Phone Showcase（web 版）
   ================================================================ */
.tcg-wrapper .tcg-ls-showcase {
    background: #FFFFFF;
    padding: 0 0 0px;
    position: relative;
    overflow: visible;
    margin-bottom: 37px;
}
/* 左側紅色裝飾（absolute，不影響佈局） */
.tcg-wrapper .tcg-ls-showcase-deco {
    position: absolute;
    left: 0;
    top: 22%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99;
    pointer-events: none;
}
.tcg-wrapper .tcg-ls-showcase-deco img {
    display: block;
}
.tcg-wrapper .tcg-ls-showcase-inner {
    position: relative;
    z-index: 1;
}
/* 展示卡片（灰底圓角，CSS 繪製） */
.tcg-wrapper .tcg-ls-showcase-card {
    position: relative;
    min-height: 680px;
    max-width: 1660px;
    margin: 0 auto;
    background: #F0F0F0;
    border-radius: 38px;
}
/* 手機展示圖（置中） */
.tcg-wrapper .tcg-ls-showcase-pic {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 97px;
    padding-left: 237px;
}
.tcg-wrapper .tcg-ls-showcase-pic img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* ================================================================
   Live Stream 頁面（live-stream.html）專用樣式
   前綴：tcg-m-ls-
   ================================================================ */

/* ── Hero：Banner + 標題 + 按鈕覆蓋 ── */
.tcg-m-ls-hero {
    position: relative;
}
.tcg-m-ls-hero-bg {
    width: 100%;
}
.tcg-m-ls-hero-bg img {
    display: block;
    width: 100%;
}
/* Hero 標題 — absolute 定位在 banner 上方 */
.tcg-wrapper-mobile .tcg-m-ls-hero-title {
    position: absolute;
    top: 97px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 54px;
    font-weight: 900;
    color: #262626;
}
.tcg-m-ls-hero-btn-wrap {
    position: absolute;
    bottom: 68px;
    left: 0;
    width: 100%;
    text-align: center;
}


/* ── What：什么是直播包网？ ── */
.tcg-m-ls-what {
    background: #FFFFFF;
    padding: 128px 0;
    padding-bottom: 24px;
}
.tcg-wrapper-mobile .tcg-m-ls-what-title {
    font-size: 55px;
    font-weight: 800;
    color: #262626;
    text-align: center;
    margin-bottom: 41px;
}
.tcg-wrapper-mobile .tcg-m-ls-what-desc {
    font-size: 24px;
    color: #6B6B6B;
    line-height: 1.8;
    text-align: center;
    padding-right: 52px;
    padding-left: 52px;
}
.tcg-wrapper-mobile .tcg-m-ls-what-desc + .tcg-m-ls-what-desc {
    margin-top: 35px;
}


/* ── Features：功能展示 2×2 圓角 icon 卡片 + 標籤 ── */
.tcg-m-ls-features {
    background: #FFFFFF;
    padding: 20px 0 0px;
}
.tcg-m-ls-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    padding-right: 22px;
    padding-left: 22px;
}
.tcg-m-ls-feature-item {
    flex: 0 0 50%;
    text-align: center;
    margin-bottom: 39px;
}
/* 圓角 icon 方塊卡片（白色底 + 陰影） */
.tcg-m-ls-feature-card {
    width: 100%;
    /* height: 180px; */
    /* margin: 0 auto 16px; */
    background: #FFFFFF;
    /* border-radius: 30px; */
    /* box-shadow: 0 6px 24px rgba(0,0,0,0.08); */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 351px;
}
/* icon 圖片（圖片自帶圓角卡片外觀） */
.tcg-wrapper-mobile img.tcg-m-ls-feature-icon {
    display: block;
    width: 100%;
    height: auto;
}
.tcg-m-ls-feature-label {
    font-size: 30px;
    font-weight: 700;
    color: #262626;
    line-height: 1.4;
    margin-top: -100px;
    display: block;
}


/* ── Deco：紅色玻璃質感裝飾圖（不受 container padding 限制） ── */
.tcg-m-ls-deco {
    /* background: #FFFFFF; */
    padding: 21px 0 0;
    z-index: 10000;
    position: relative;
}
.tcg-m-ls-deco-img {
    display: block;
}


/* ── Showcase：手機展示區（不受 container padding 限制） ── */
.tcg-m-ls-showcase {
    padding: 2px 51px 0px;
    margin-top: -61px;
}
.tcg-m-ls-showcase-area img {
    display: block;
    width: 100%;
}

/* ★ Mobile 共用樣式已移至 tcg-common-mobile.css ★ */

