/* =========================================================
   乐体育全站基础样式
========================================================= */
:root {
    --tf-bg: #06110c;
    --tf-bg-2: #07150f;
    --tf-card: rgba(255, 255, 255, .078);
    --tf-card-strong: rgba(255, 255, 255, .12);
    --tf-border: rgba(255, 255, 255, .14);
    --tf-text: #f8faf8;
    --tf-muted: #b8c8bf;
    --tf-muted-2: #8da199;
    --tf-green: #22c55e;
    --tf-gold: #f8c95a;
    --tf-shadow: 0 12px 32px rgba(0, 0, 0, .22);
    --tf-radius: 18px;
    --tf-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.tf-site-body {
    margin: 0;
    background: var(--tf-bg);
    color: var(--tf-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.tf-container {
    width: min(var(--tf-container), calc(100% - 32px));
    margin-inline: auto;
}

.tf-skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 9999;
}

.tf-skip-link:focus {
    left: 12px;
    background: #fff;
    color: #000;
    padding: 10px 14px;
    border-radius: 10px;
}

.tf-main {
    background: var(--tf-bg);
}
