/* ==========================================================================
   淡金精装书 (Light Gold Premium Book) Design System
   ========================================================================== */

@layer site {

/* ==========================================================================
   CSS Variables — Light Mode
   ========================================================================== */
:root {
    --bg: #fefcf6;
    --bg-card: #f7f2e8;
    --bg-warm: #f0ead8;
    --bg-code: #f5f0e3;
    --ink: #1f1708;
    --ink-light: #6b5a3e;
    --ink-dim: #9a8b6e;
    --gold: #b8943f;
    --gold-light: rgba(184,148,63,0.12);
    --gold-glow: rgba(184,148,63,0.20);
    --blue: #3d6bbf;
    --blue-light: rgba(61,107,191,0.10);
    --green: #2e7d4f;
    --green-light: rgba(46,125,79,0.08);
    --orange: #c47800;
    --orange-light: rgba(196,120,0,0.08);
    --red: #b03020;
    --red-light: rgba(176,48,32,0.07);
    --border: #e8dfc8;
    --border-light: #ede6d4;
    --shadow: rgba(80,60,10,0.06);
    --shadow-md: rgba(80,60,10,0.08);
    --shadow-lg: rgba(80,60,10,0.10);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --font-ui: 'Noto Sans SC', sans-serif;
    --font-read: 'Noto Serif SC', serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   CSS Variables — Dark Mode
   ========================================================================== */
[data-theme="dark"] {
    --bg: #1a1610;
    --bg-card: #252015;
    --bg-warm: #2e2718;
    --bg-code: #2a2418;
    --ink: #e8e0d0;
    --ink-light: #b0a48a;
    --ink-dim: #7a6e58;
    --gold: #d4aa4f;
    --gold-light: rgba(212,170,79,0.15);
    --blue: #6d9ae0;
    --blue-light: rgba(109,154,224,0.12);
    --green: #4aad6f;
    --red: #d05040;
    --border: #3a3225;
    --border-light: #302a1e;
    --shadow: rgba(0,0,0,0.20);
}

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-ui);
    background-color: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--gold);
}

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

/* ==========================================================================
   2. Layout
   ========================================================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-content {
    flex: 1;
}

/* ==========================================================================
   3. Navbar
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px var(--shadow);
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar-brand {
    font-family: var(--font-read);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--gold);
}

.navbar-links {
    display: flex;
    gap: 20px;
}

.navbar-links a {
    color: var(--ink-light);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.navbar-links a:hover {
    color: var(--ink);
    border-bottom-color: var(--gold);
}

.navbar-auth {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-user {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.9rem;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    border-radius: 1px;
    transition: transform 0.2s;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    text-decoration: none;
    line-height: 1.4;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover {
    background: #325cad;
    color: #fff;
    box-shadow: 0 4px 12px var(--shadow-md);
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: #a68438;
    color: #fff;
    box-shadow: 0 4px 12px var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm {
    padding: 5px 14px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero {
    text-align: center;
    padding: 80px 24px 60px;
    background: linear-gradient(170deg, var(--bg) 0%, var(--bg-card) 50%, var(--bg-warm) 100%);
    border-bottom: 1px solid var(--gold-light);
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.hero h1,
.hero-title {
    font-family: var(--font-read);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--ink-light);
    font-weight: 300;
}

/* ==========================================================================
   6. Course Cards
   ========================================================================== */
.section-title {
    font-family: var(--font-read);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--ink);
}

.course-cards,
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    padding: 48px 0;
}

.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    box-shadow: 0 2px 6px var(--shadow);
}

.course-card:hover {
    box-shadow: 0 8px 24px var(--shadow-lg);
    transform: translateY(-3px);
}

.course-card-cover {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-card) 100%);
}

.course-card-body {
    padding: 20px;
}

.course-card-title {
    font-family: var(--font-read);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.course-card-desc {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-card-chapters {
    font-size: 0.85rem;
    color: var(--ink-dim);
}

.course-price,
.price-tag {
    font-family: var(--font-read);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.price-tag .currency {
    font-size: 0.85rem;
    font-weight: 500;
}

.price-free {
    color: var(--green);
    font-weight: 600;
}

/* ==========================================================================
   7. Course Detail
   ========================================================================== */
.course-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px;
}

.course-header {
    margin-bottom: 40px;
}

.course-header h1 {
    font-family: var(--font-read);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.course-description {
    font-size: 1.05rem;
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: 24px;
}

.course-price-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.course-price-box .price-tag {
    font-size: 1.5rem;
}

/* ==========================================================================
   8. Chapter List
   ========================================================================== */
.chapter-list {
    list-style: none;
}

.chapter-list-title {
    font-family: var(--font-read);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.chapter-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.15s;
}

.chapter-item:hover {
    background: var(--gold-light);
}

.chapter-order {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--ink-dim);
    min-width: 32px;
    flex-shrink: 0;
}

.chapter-title {
    flex: 1;
}

.chapter-title a {
    color: var(--ink);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.chapter-title a:hover {
    color: var(--blue);
}

.chapter-badge {
    font-size: 0.72rem;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 500;
    margin-left: 12px;
    flex-shrink: 0;
}

.badge-free {
    background: var(--green-light);
    color: var(--green);
}

.badge-locked {
    color: var(--ink-dim);
    font-size: 0.75rem;
}

.lock-icon::before {
    content: "\1F512 ";
    font-size: 0.8rem;
}

/* ==========================================================================
   9. Reader
   ========================================================================== */
.reader {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    position: relative;
}

.reader-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.reader-breadcrumb {
    font-size: 0.85rem;
    color: var(--ink-dim);
    margin-bottom: 12px;
}

.reader-breadcrumb a {
    color: var(--ink-dim);
}

.reader-breadcrumb a:hover {
    color: var(--blue);
}

.reader-title {
    font-family: var(--font-read);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.reader-content {
    font-family: var(--font-read);
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--ink);
}

.reader-content p {
    margin-bottom: 1.3em;
}

.reader-content h2 {
    font-family: var(--font-read);
    font-size: 1.4rem;
    margin: 2em 0 0.8em;
    font-weight: 700;
}

.reader-content h3 {
    font-family: var(--font-read);
    font-size: 1.2rem;
    margin: 1.6em 0 0.6em;
    font-weight: 600;
}

.reader-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 12px 20px;
    margin: 1.5em 0;
    background: var(--gold-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--ink-light);
}

.reader-content pre {
    background: var(--bg-code);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
    margin: 1.5em 0;
}

.reader-content code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    background: var(--bg-code);
    padding: 2px 6px;
    border-radius: 4px;
}

.reader-content pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}

.reader-content a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.reader-content a:hover {
    color: var(--gold);
}

.reader-content img {
    border-radius: var(--radius);
    margin: 1.5em 0;
}

.reader-content ul,
.reader-content ol {
    padding-left: 1.6em;
    margin-bottom: 1.3em;
}

.reader-content li {
    margin-bottom: 0.4em;
}

.reader-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    gap: 16px;
}

.reader-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.reader-nav a:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--gold);
}

.reader-progress {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 24px;
    font-size: 0.85rem;
    color: var(--ink-dim);
    text-align: center;
}

/* ==========================================================================
   10. Code Block with Floating Label
   ========================================================================== */
.code-block {
    position: relative;
    margin: 28px 0 20px;
}

.code-block pre {
    background: var(--bg-code);
    border: 1px solid var(--border);
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
    border-radius: var(--radius-sm);
    margin: 0;
}

.code-label {
    position: absolute;
    top: -13px;
    left: 16px;
    background: var(--gold);
    color: #fff;
    padding: 3px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    z-index: 1;
    box-shadow: 0 2px 6px var(--shadow);
}

/* ==========================================================================
   11. Syntax Highlighting
   ========================================================================== */
.hl-comment {
    color: var(--ink-dim);
    font-style: italic;
}

.hl-keyword {
    color: #8a4baf;
    font-weight: 500;
}

.hl-string {
    color: var(--green);
}

.hl-property {
    color: var(--blue);
}

.hl-value {
    color: var(--orange);
}

.hl-function {
    color: #b8543f;
}

/* ==========================================================================
   12. Chapter Body (embedded tutorial HTML)
   ========================================================================== */
.chapter-body {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   13. Forms
   ========================================================================== */
.form-group {
    margin-bottom: 16px;
}

.form-label,
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-light);
    margin-bottom: 6px;
}

.form-input,
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
}

.form-error {
    font-size: 0.82rem;
    color: var(--red);
    margin-top: 4px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--ink-light);
}

.auth-form {
    max-width: 400px;
    margin: 0 auto;
}

.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 160px);
    padding: 40px 24px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 12px var(--shadow-md);
}

.auth-card h1 {
    font-family: var(--font-read);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 28px;
}

/* ==========================================================================
   14. Messages / Alerts
   ========================================================================== */
.messages-container {
    max-width: 1100px;
    margin: 16px auto 0;
    padding: 0 24px;
}

.message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    border-left: 3px solid transparent;
    animation: slideDown 0.3s ease;
}

.message-success {
    background: var(--green-light);
    color: var(--green);
    border-left-color: var(--green);
}

.message-warning {
    background: var(--orange-light);
    color: var(--orange);
    border-left-color: var(--orange);
}

.message-error {
    background: var(--red-light);
    color: var(--red);
    border-left-color: var(--red);
}

.message-info {
    background: var(--blue-light);
    color: var(--blue);
    border-left-color: var(--blue);
}

.message-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 0 0 0 12px;
}

.message-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   15. Dashboard
   ========================================================================== */
.dashboard {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
}

.dashboard-welcome {
    font-family: var(--font-read);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 36px;
}

.dashboard-section {
    margin-bottom: 48px;
}

.dashboard-title,
.dashboard-section h2 {
    font-family: var(--font-read);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th,
.order-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}

.order-table th {
    font-weight: 600;
    color: var(--ink-light);
    background: var(--bg-card);
}

.order-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-paid {
    background: var(--green-light);
    color: var(--green);
}

.status-pending {
    background: var(--orange-light);
    color: var(--orange);
}

.status-failed {
    background: var(--red-light);
    color: var(--red);
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--ink-dim);
    font-size: 0.95rem;
}

/* ==========================================================================
   16. Checkout / Payment
   ========================================================================== */
.checkout {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 24px;
}

.checkout h1 {
    font-family: var(--font-read);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
}

.checkout-box,
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 28px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.order-summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 12px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-methods {
    margin-bottom: 28px;
}

.payment-tabs {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}

.payment-tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    background: var(--bg);
    border: none;
    color: var(--ink-light);
    transition: background 0.2s, color 0.2s;
}

.payment-tab.active {
    background: var(--gold);
    color: #fff;
}

.payment-tab:not(.active):hover {
    background: var(--bg-card);
}

.qrcode-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.qrcode-area #qrcode {
    width: 200px;
    height: 200px;
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-dim);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.qrcode-hint {
    font-size: 0.85rem;
    color: var(--ink-dim);
    text-align: center;
}

.order-status-area {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--ink-dim);
}

/* ==========================================================================
   17. Footer
   ========================================================================== */
.footer.site-footer,
.site-footer {
    border-top: 1px solid var(--border);
    padding: 24px;
    text-align: center;
    color: var(--ink-dim);
    font-size: 0.8rem;
}

/* ==========================================================================
   18. Watermark
   ========================================================================== */
.watermark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
}

/* ==========================================================================
   19. Anti-Piracy
   ========================================================================== */
@media print {
    body {
        display: none !important;
    }
}

@media (pointer: fine) {
    .protected-content {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* ==========================================================================
   20. Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .navbar-links,
    .navbar-auth {
        display: none;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar.open .navbar-links,
    .navbar.open .navbar-auth {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        box-shadow: 0 4px 12px var(--shadow-md);
    }

    .navbar.open .navbar-auth {
        top: auto;
        border-top: 1px solid var(--border-light);
        padding-top: 12px;
        margin-top: 8px;
    }

    .hero {
        padding: 48px 20px 40px;
    }

    .hero h1,
    .hero-title {
        font-size: 1.8rem;
    }

    .course-cards,
    .course-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 0;
    }

    .reader {
        padding: 32px 18px 60px;
    }

    .reader-title {
        font-size: 1.4rem;
    }

    .reader-content {
        font-size: 1rem;
    }

    .reader-nav {
        flex-direction: column;
    }

    .reader-nav a {
        width: 100%;
        justify-content: center;
    }

    .auth-card {
        padding: 28px 20px;
    }

    .checkout {
        padding: 32px 16px;
    }

    .order-table {
        font-size: 0.82rem;
    }

    .order-table th,
    .order-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }
}

} /* end @layer site */
