﻿.live_page_body {
    min-height: 100vh;
    background: linear-gradient(180deg, #020317 0%, #0e132b 50%, #020317 100%);
    color: #f1f4f9;
    font-family: system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.live_page_body ::selection {
    background: rgba(163, 230, 53, 0.3);
    color: #d9f99d;
}

.c_1570 {
    max-width: 1570px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.live_main_section {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .live_main_section {
        padding-top: 2.5rem;
        padding-bottom: 4rem;
    }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: #03987c;
    color: #fff;
    z-index: 9999;
    text-decoration: none;
    border-radius: 0.25rem;
}

.live_hero {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(5, 150, 105, 0.95) 0%, rgba(2, 132, 199, 0.92) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.3), transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(16, 185, 129, 0.3), transparent 55%);
}

.live_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 60px);
    pointer-events: none;
    opacity: 0.35;
}

.live_hero .hero_content {
    position: relative;
    padding: 2.5rem 2rem;
}

@media (min-width: 768px) {
    .live_hero .hero_content {
        padding: 3.5rem 2rem;
    }
}

.live_breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .live_breadcrumb {
        margin-bottom: 1.5rem;
    }
}

.live_breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.live_breadcrumb a:hover {
    text-decoration: underline;
}

.live_hero_tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.live_hero_tag .blink_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f15942;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.35);
    animation: liveBlink 1.4s infinite;
}

@keyframes liveBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.live_page_title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .live_page_title {
        font-size: 2.8rem;
    }
}

.live_page_title .live_dash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: rgba(239, 68, 68, 0.92);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.live_page_desc {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    max-width: 44rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .live_page_desc {
        margin-top: 1.25rem;
        font-size: 1.05rem;
    }
}

.live_hero_btns {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn_live_primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.6rem;
    background: linear-gradient(90deg, #f15942, #f8bc08);
    color: #fff;
    padding: 0.7rem 1.4rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
    transition: all 0.25s;
    font-size: 0.95rem;
}

.btn_live_primary:hover {
    box-shadow: 0 10px 26px rgba(239, 68, 68, 0.45);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.btn_live_secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.7rem 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: all 0.25s;
    font-size: 0.95rem;
}

.btn_live_secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.live_hero_keywords {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .live_hero_keywords {
        margin-top: 1.75rem;
    }
}

.live_hero_keywords .kw_label {
    color: #85f0b9;
    font-weight: 600;
}

.live_hero_keywords .kw_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.6rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.live_hero_keywords .kw_divider {
    opacity: 0.4;
    margin: 0 0.15rem;
}

.live_section {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .live_section {
        margin-bottom: 4rem;
    }
}

.section_head {
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .section_head {
        margin-bottom: 2.25rem;
    }
}

.section_title_h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f8f9fc;
    margin: 0;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .section_title_h2 {
        font-size: 2.1rem;
    }
}

.section_title_h2 i {
    color: #32d5af;
}

.section_subtitle {
    margin-top: 0.75rem;
    color: #929dba;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 50rem;
}

.section_head_row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-end;
}

.live_tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.live_tab_btn {
    border: none;
    outline: none;
    background: transparent;
    color: #929dba;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.live_tab_btn:hover {
    color: #e2e6f0;
}

.live_tab_btn.active {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.25), rgba(14, 165, 233, 0.2));
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.live_tab_btn .tab_icon {
    font-size: 0.8rem;
}

.live_match_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .live_match_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .live_match_list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.match_card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    overflow: hidden;
    transition: all 0.3s;
}

.match_card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 40px -12px rgba(16, 185, 129, 0.18);
}

.match_card_cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.match_card_cover .cover_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.1) 30%, rgba(2, 6, 23, 0.85) 100%);
}

.match_card_badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.65rem;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    z-index: 2;
}

.match_card_badge.live {
    background: linear-gradient(90deg, #f15942, #f8bc08);
}

.match_card_badge .mini_dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.match_card_badge.live .mini_dot {
    animation: liveBlink 1.2s infinite;
}

.match_card_hd {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    color: #85f0b9;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.match_card_schedule {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    z-index: 2;
}

.match_sch_time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.match_sch_league {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.6rem;
    border-radius: 6px;
    background: rgba(251, 191, 36, 0.18);
    color: #fde68a;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.match_cover_fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #064e3b, #082f49);
}

.match_card_cover.football .match_cover_fallback {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(16, 185, 129, 0.35), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(14, 165, 233, 0.3), transparent 55%),
        linear-gradient(135deg, #064e3b, #082f49);
}

.match_card_cover.basketball .match_cover_fallback {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(249, 115, 22, 0.35), transparent 55%),
        radial-gradient(ellipse at 70% 70%, rgba(239, 68, 68, 0.3), transparent 55%),
        linear-gradient(135deg, #7c2d12, #7f1d1d);
}

.match_card_cover.mixed .match_cover_fallback {
    background:
        radial-gradient(ellipse at 25% 30%, rgba(139, 92, 246, 0.35), transparent 55%),
        radial-gradient(ellipse at 75% 70%, rgba(236, 72, 153, 0.3), transparent 55%),
        linear-gradient(135deg, #312e81, #581c87);
}

.match_card_body {
    padding: 1.25rem;
}

.match_teams {
    margin: 0 0 0.6rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8f9fc;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .match_teams {
        font-size: 1.25rem;
    }
}

.match_teams .vs_tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(14, 165, 233, 0.2));
    color: #85f0b9;
    font-weight: 800;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.match_desc {
    margin: 0 0 1rem 0;
    font-size: 0.85rem;
    color: #929dba;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.match_desc::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #32d5af;
    flex-shrink: 0;
}

.match_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.btn_match_primary {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #0ebb98, #06b6d4);
    color: #fff;
    padding: 0.48rem 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.8rem;
}

.btn_match_primary:hover {
    color: #fff;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.3);
    text-decoration: none;
}

.btn_match_outline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    color: #cad2e2;
    padding: 0.48rem 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s;
    font-size: 0.8rem;
}

.btn_match_outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transform: translateY(-1.5px);
}

.btn_match_outline.warn {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.22);
    color: #fcd34d;
}

.btn_match_outline.warn:hover {
    background: rgba(251, 191, 36, 0.14);
    color: #fde68a;
}

.section_link_row {
    text-align: center;
    margin-top: 1.5rem;
}

.link_text_outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #32d5af;
    font-size: 0.88rem;
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(52, 211, 153, 0.3);
    text-decoration: none;
    transition: all 0.2s;
}

.link_text_outline:hover {
    color: #0ebb98;
    border-color: #0ebb98;
    text-decoration: none;
}

.why_us_layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .why_us_layout {
        grid-template-columns: 1.1fr 1fr;
        gap: 2.5rem;
    }
}

.why_us_list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.why_us_item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem 1.2rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    transition: all 0.25s;
}

.why_us_item:hover {
    transform: translateX(3px);
    border-color: rgba(16, 185, 129, 0.3);
}

.why_us_icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(14, 165, 233, 0.2));
    color: #32d5af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.why_us_title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #f8f9fc;
    margin: 0 0 0.2rem 0;
}

.why_us_text {
    font-size: 0.85rem;
    color: #929dba;
    line-height: 1.65;
    margin: 0;
}

.why_us_visual {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(14, 165, 233, 0.1), rgba(16, 185, 129, 0.08));
    padding: 2rem 1.5rem;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .why_us_visual {
        min-height: 360px;
        padding: 2.5rem 2rem;
    }
}

.phone_view {
    position: relative;
    margin: 0 auto;
    width: 220px;
    max-width: 100%;
    aspect-ratio: 9/19;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 1.75rem;
    padding: 0.55rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .phone_view {
        width: 240px;
    }
}

.phone_view_screen {
    width: 100%;
    height: 100%;
    border-radius: 1.3rem;
    background: linear-gradient(160deg, #0e132b, #1e293b);
    overflow: hidden;
    position: relative;
}

.phone_view_notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 18px;
    background: #0e132b;
    border-radius: 0 0 12px 12px;
    z-index: 3;
}

.pv_live_row {
    margin: 2.2rem 0.85rem 0.6rem 0.85rem;
    padding: 0.6rem 0.7rem;
    border-radius: 0.55rem;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.22), rgba(251, 191, 36, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pv_live_label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fecaca;
    letter-spacing: 0.05em;
}

.pv_live_label .d {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f15942;
    animation: liveBlink 1.2s infinite;
}

.pv_live_hd {
    font-size: 0.6rem;
    color: #85f0b9;
    font-weight: 800;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pv_match_core {
    margin: 0 0.85rem 0.6rem 0.85rem;
    padding: 0.8rem 0.75rem;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(14, 165, 233, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.pv_score_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.4rem;
}

.pv_team {
    font-size: 0.65rem;
    color: #e2e6f0;
    font-weight: 600;
    text-align: center;
}

.pv_team_logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 0 auto 0.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #0c8aeb, #0ebb98);
}

.pv_team_logo.r {
    background: linear-gradient(135deg, #f8bc08, #f15942);
}

.pv_score {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
}

.pv_score_colon {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.pv_timer {
    margin-top: 0.4rem;
    font-size: 0.62rem;
    color: #fddc22;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.pv_watch_btn {
    margin: 0 0.85rem 0.6rem 0.85rem;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, #f15942, #f8bc08);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.25);
}

.pv_sched {
    margin: 0 0.85rem 0 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-bottom: 1rem;
}

.pv_sched_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0.5rem;
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.58rem;
    color: #cad2e2;
}

.commenter_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .commenter_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.commenter_card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    overflow: hidden;
    transition: all 0.3s;
}

.commenter_card:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 165, 233, 0.35);
}

.commenter_avatar_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #0c4a6e, #164e63);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.commenter_avatar_wrap.type_b {
    background: linear-gradient(135deg, #7c2d12, #78350f);
}

.commenter_avatar_wrap.type_c {
    background: linear-gradient(135deg, #365314, #166534);
}

.commenter_avatar_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.commenter_avatar_wrap.type_b .commenter_avatar_icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(239, 68, 68, 0.2));
}

.commenter_avatar_wrap.type_c .commenter_avatar_icon {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.3), rgba(16, 185, 129, 0.2));
}

.commenter_avatar_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}

.commenter_role_tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fde68a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(3px);
}

.commenter_body {
    padding: 1.25rem;
}

.commenter_name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8f9fc;
    margin: 0 0 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.commenter_name span.sep_role {
    font-size: 0.75rem;
    font-weight: 500;
    color: #36a5fa;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    background: rgba(14, 165, 233, 0.12);
}

.commenter_desc {
    font-size: 0.85rem;
    color: #929dba;
    line-height: 1.7;
    margin: 0.5rem 0 0 0;
}

.app_cta_layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .app_cta_layout {
        grid-template-columns: 1fr 1.1fr;
        gap: 2.5rem;
    }
}

.app_cta_visual {
    position: relative;
    min-height: 320px;
    border-radius: 1rem;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.25), transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(14, 165, 233, 0.25), transparent 55%),
        linear-gradient(160deg, #0b1120, #101528);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

@media (min-width: 768px) {
    .app_cta_visual {
        min-height: 380px;
    }
}

.app_cta_mock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app_cta_features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.app_feat_item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.25s;
}

.app_feat_item:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateX(3px);
}

.app_feat_icon {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(249, 115, 22, 0.12));
    color: #fcd34d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.app_feat_text {
    font-size: 0.88rem;
    color: #cad2e2;
    line-height: 1.6;
    margin: 0;
}

.app_feat_text strong {
    color: #fde68a;
    font-weight: 700;
}

.app_cta_btns {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn_amber_primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.6rem;
    background: linear-gradient(90deg, #f8bc08, #f15942);
    color: #fff;
    padding: 0.7rem 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    font-size: 0.95rem;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.3);
}

.btn_amber_primary:hover {
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(245, 158, 11, 0.4);
}

.xme_contact_wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .xme_contact_wrap {
        grid-template-columns: 1.25fr 1fr;
        gap: 2rem;
    }
}

.xme_card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.xme_card_head {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

@media (min-width: 768px) {
    .xme_card_head {
        padding: 2rem 2rem 0.5rem 2rem;
    }
}

.xme_title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8f9fc;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.xme_title i {
    color: #36a5fa;
}

.xme_list {
    padding: 0.5rem 0 1rem 0;
}

.xme_item {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.xme_item_q {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

@media (min-width: 768px) {
    .xme_item_q {
        padding: 1rem 2rem;
    }
}

.xme_item_q:hover {
    background: rgba(255, 255, 255, 0.02);
}

.xme_item_q_text {
    font-size: 0.92rem;
    font-weight: 600;
    color: #e2e6f0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.xme_item_q_text .xme_q_mark {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    color: #36a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}

.xme_item_q_toggle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #929dba;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.25s;
}

.xme_item.open .xme_item_q_toggle {
    transform: rotate(180deg);
    color: #0ebb98;
    background: rgba(16, 185, 129, 0.1);
}

.xme_item_a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem 0 1.5rem;
}

@media (min-width: 768px) {
    .xme_item_a {
        padding: 0 2rem 0 2rem;
    }
}

.xme_item.open .xme_item_a {
    max-height: 220px;
    padding: 0 1.5rem 1rem 1.5rem;
}

@media (min-width: 768px) {
    .xme_item.open .xme_item_a {
        padding: 0 2rem 1.25rem 2rem;
    }
}

.xme_item_a_text {
    padding-left: 2rem;
    font-size: 0.88rem;
    color: #929dba;
    line-height: 1.8;
    border-left: 2px solid rgba(56, 189, 248, 0.3);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.xme_item_a_text a {
    color: #32d5af;
    text-decoration: underline;
}

.contact_card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(16, 185, 129, 0.08), rgba(255, 255, 255, 0.02));
    padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
    .contact_card {
        padding: 2rem 2rem;
    }
}

.contact_title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8f9fc;
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact_title i {
    color: #0ebb98;
}

.contact_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact_list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: #cad2e2;
    line-height: 1.6;
}

.contact_list i {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: rgba(16, 185, 129, 0.12);
    color: #32d5af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.contact_meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #626e8d;
}

.contact_meta span i {
    color: #0c8aeb;
    margin-right: 0.35rem;
}

.about_extra_card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about_extra_card {
        padding: 2rem 2rem;
    }
}

.about_extra_card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(16, 185, 129, 0.12), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(14, 165, 233, 0.1), transparent 55%);
    pointer-events: none;
}

.about_extra_title {
    position: relative;
    font-size: 1.35rem;
    font-weight: 700;
    color: #f8f9fc;
    margin: 0 0 1rem 0;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

@media (min-width: 768px) {
    .about_extra_title {
        font-size: 1.55rem;
    }
}

.about_extra_title i {
    color: #32d5af;
}

.about_extra_text {
    position: relative;
    font-size: 0.9rem;
    color: #cad2e2;
    line-height: 1.9;
    margin: 0 0 1.25rem 0;
}

.about_extra_kw {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.about_extra_kw span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    color: #929dba;
}

.about_extra_kw span i {
    color: #32d5af;
    font-size: 0.65rem;
}

/* 3076dd */
html {
    line-break: strict;
}
[data-811] {
    tab-size: 4;
}
[data-811] {
    -webkit-tap-highlight-color: transparent;
}
