/* ============================================================
   TOURNOIS.CSS — Page tournois (theme Luvreizel)
   Scoped sous body.theme-luv pour rester cohérent avec calls.css
   et leaderboard.css.
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
body.theme-luv .trn-hero {
    position: relative;
    isolation: isolate;
    padding: 70px 20px 38px;
    text-align: center;
    overflow: hidden;
}
body.theme-luv .trn-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center,
        rgba(255, 138, 31, 0.25) 0%,
        rgba(255, 138, 31, 0.08) 30%,
        transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
body.theme-luv .trn-hero-content {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: callsFadeUp 0.5s ease both;
}

body.theme-luv .trn-title {
    font-family: var(--luv-font-display);
    font-size: clamp(40px, 8vw, 68px);
    line-height: 0.95;
    letter-spacing: 0.5px;
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 16px;
}
body.theme-luv .trn-title .text-accent {
    color: var(--luv-orange);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: var(--luv-orange);
}

body.theme-luv .trn-subtitle {
    font-family: var(--luv-font-body);
    font-size: 17px;
    color: var(--luv-text-dim);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Layout ────────────────────────────────────────────────── */
body.theme-luv .trn-section {
    padding: 28px 20px 80px;
    position: relative;
    z-index: 1;
}
body.theme-luv .trn-container {
    max-width: 1100px;
    margin: 0 auto;
}

body.theme-luv .trn-section-title {
    font-family: var(--luv-font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.3px;
}
body.theme-luv .trn-section-title-spaced {
    margin-top: 48px;
}
body.theme-luv .trn-section-title svg { color: var(--luv-orange); }

/* ── Auth banner ───────────────────────────────────────────── */
body.theme-luv .trn-auth-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg,
        rgba(255, 138, 31, 0.10) 0%,
        rgba(255, 138, 31, 0.03) 100%);
    border: 1px solid rgba(255, 138, 31, 0.45);
    border-radius: var(--luv-r-lg);
    padding: 18px 22px;
    margin-bottom: 32px;
}
body.theme-luv .trn-auth-banner-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(255, 138, 31, 0.12);
    border: 1px solid rgba(255, 138, 31, 0.40);
    border-radius: var(--luv-r-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--luv-orange);
}
body.theme-luv .trn-auth-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
body.theme-luv .trn-auth-banner-text strong {
    font-family: var(--luv-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--luv-text);
}
body.theme-luv .trn-auth-banner-text span {
    font-family: var(--luv-font-body);
    font-size: 12px;
    color: var(--luv-text-mute);
}
body.theme-luv .trn-auth-banner-btn {
    flex-shrink: 0;
    background: var(--luv-orange);
    color: #1a0a00;
    font-family: var(--luv-font-body);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 11px 22px;
    border-radius: var(--luv-r-md);
    text-decoration: none;
    transition: background-color .15s;
    white-space: nowrap;
}
body.theme-luv .trn-auth-banner-btn:hover {
    color: #1a0a00;
    background: var(--luv-orange-2);
}
@media (max-width: 600px) {
    body.theme-luv .trn-auth-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    body.theme-luv .trn-auth-banner-btn { width: 100%; text-align: center; }
}

/* ── Grid ──────────────────────────────────────────────────── */
body.theme-luv .trn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}

/* ── Card ──────────────────────────────────────────────────── */
body.theme-luv .trn-card {
    background: var(--luv-card);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-lg);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    cursor: default;
}
body.theme-luv .trn-card:hover {
    border-color: rgba(255, 138, 31, 0.35);
}
body.theme-luv .trn-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
body.theme-luv .trn-card-name {
    font-family: var(--luv-font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--luv-text);
    margin: 0;
    line-height: 1.3;
}
body.theme-luv .trn-card-desc {
    font-family: var(--luv-font-body);
    font-size: 13px;
    color: var(--luv-text-dim);
    margin: 0;
    line-height: 1.55;
}

/* ── Contenu Markdown rendu (descriptions de tournoi) ──────────── */
.md-content > :first-child { margin-top: 0; }
.md-content > :last-child { margin-bottom: 0; }
.md-content p { margin: 0 0 .5em; }
.md-content h1, .md-content h2, .md-content h3,
.md-content h4, .md-content h5, .md-content h6 {
    margin: .6em 0 .3em;
    line-height: 1.25;
}
.md-content h1 { font-size: 1.3em; }
.md-content h2 { font-size: 1.2em; }
.md-content h3 { font-size: 1.1em; }
.md-content h4, .md-content h5, .md-content h6 { font-size: 1em; }
.md-content ul, .md-content ol { margin: 0 0 .5em; padding-left: 1.4em; }
.md-content li { margin: .15em 0; }
.md-content a { color: var(--luv-accent, #7c5cff); text-decoration: underline; }
.md-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .9em;
    padding: .1em .35em;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
}
.md-content blockquote {
    margin: 0 0 .5em;
    padding-left: .8em;
    border-left: 3px solid rgba(255, 255, 255, .2);
    color: var(--luv-text-dim);
}
.md-content strong { font-weight: 700; }
.md-content em { font-style: italic; }

/* ── Status badges ─────────────────────────────────────────── */
body.theme-luv .trn-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
body.theme-luv .trn-badge-open {
    background: rgba(20, 196, 106, 0.12);
    border: 1px solid rgba(20, 196, 106, 0.40);
    color: var(--luv-green);
}
body.theme-luv .trn-badge-closed {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.40);
    color: #fbbf24;
}
body.theme-luv .trn-badge-active {
    background: rgba(41, 200, 230, 0.12);
    border: 1px solid rgba(41, 200, 230, 0.40);
    color: #29c8e6;
}
body.theme-luv .trn-badge-finished {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text-mute);
}

/* ── Meta row ──────────────────────────────────────────────── */
body.theme-luv .trn-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
body.theme-luv .trn-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--luv-font-mono);
    font-size: 12px;
    color: var(--luv-text-dim);
}
body.theme-luv .trn-meta-item svg {
    color: var(--luv-orange);
    flex-shrink: 0;
}

/* ── Card actions ──────────────────────────────────────────── */
body.theme-luv .trn-card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
body.theme-luv .trn-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: var(--luv-r-md);
    font-family: var(--luv-font-body);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.02em;
}
body.theme-luv .trn-btn-primary {
    background: var(--luv-orange);
    color: #1a0a00;
}
body.theme-luv .trn-btn-primary:hover {
    color: #1a0a00;
    background: var(--luv-orange-2);
}
body.theme-luv .trn-btn-outline {
    background: transparent;
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text);
}
body.theme-luv .trn-btn-outline:hover {
    border-color: var(--luv-orange);
    color: var(--luv-orange);
}
body.theme-luv .trn-btn-danger {
    background: rgba(230, 57, 70, 0.10);
    border: 1px solid rgba(230, 57, 70, 0.40);
    color: var(--luv-red);
}
body.theme-luv .trn-btn-danger:hover {
    background: var(--luv-red);
    color: #fff;
}
body.theme-luv .trn-btn:disabled,
body.theme-luv .trn-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

body.theme-luv .trn-login-prompt {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--luv-font-mono);
    font-size: 11.5px;
    color: var(--luv-text-mute);
}
body.theme-luv .trn-login-prompt a {
    color: var(--luv-orange);
    font-weight: 700;
    text-decoration: none;
}
body.theme-luv .trn-login-prompt a:hover { text-decoration: underline; }

/* ── Winner banner ─────────────────────────────────────────── */
body.theme-luv .trn-winner-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg,
        rgba(255, 138, 31, 0.14) 0%,
        rgba(255, 138, 31, 0.04) 100%);
    border: 1px solid rgba(255, 138, 31, 0.40);
    border-radius: var(--luv-r-md);
    padding: 10px 14px;
    font-family: var(--luv-font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--luv-orange);
}
body.theme-luv .trn-winner-trophy {
    display: inline-flex;
    align-items: center;
    color: var(--luv-orange);
}
body.theme-luv .trn-winner-banner img {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--luv-orange);
}

/* ── Meilleur call de la session (modal) ───────────────────── */
body.theme-luv .trn-bestcall {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 20px;
    background: linear-gradient(90deg,
        rgba(255, 138, 31, 0.12) 0%,
        rgba(255, 138, 31, 0.03) 100%);
    border: 1px solid rgba(255, 138, 31, 0.35);
    border-radius: var(--luv-r-md);
    padding: 12px 16px;
}
body.theme-luv .trn-bestcall-star { font-size: 16px; line-height: 1; }
body.theme-luv .trn-bestcall-label {
    font-family: var(--luv-font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--luv-text-mute);
    flex: 1 1 100%;
    order: -1;
    margin-left: 24px;
}
body.theme-luv .trn-bestcall-player {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--luv-font-body);
    font-size: 14px;
    font-weight: 800;
    color: var(--luv-text);
}
body.theme-luv .trn-bestcall-player img {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 138, 31, 0.5);
}
body.theme-luv .trn-bestcall-stats {
    margin-left: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-variant-numeric: tabular-nums;
}
body.theme-luv .trn-bestcall-mult {
    font-size: 20px;
    font-weight: 900;
    color: var(--luv-orange);
}
body.theme-luv .trn-bestcall-profit {
    font-family: var(--luv-font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--luv-text-dim);
}

/* ── Empty state ───────────────────────────────────────────── */
body.theme-luv .trn-empty {
    padding: 80px 20px;
    text-align: center;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-body);
}
body.theme-luv .trn-empty svg {
    color: var(--luv-text-mute);
    margin-bottom: 16px;
    opacity: 0.5;
}
body.theme-luv .trn-empty h3 {
    color: var(--luv-text);
    font-family: var(--luv-font-heading);
    font-weight: 400;
    font-size: 26px;
    margin: 0 0 8px;
    letter-spacing: 0.3px;
}
body.theme-luv .trn-empty p {
    margin: 0 auto;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.6;
}
body.theme-luv .trn-empty strong { color: var(--luv-orange); }

/* ── Modal ─────────────────────────────────────────────────── */
body.theme-luv .trn-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 22, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
body.theme-luv .trn-modal-overlay.active { display: flex; }
body.theme-luv .trn-modal {
    background: var(--luv-card);
    border: 1px solid var(--luv-line-strong);
    border-radius: var(--luv-r-lg);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}
body.theme-luv .trn-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--luv-line-strong);
    color: var(--luv-text-dim);
    border-radius: var(--luv-r-sm);
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
body.theme-luv .trn-modal-close:hover {
    color: var(--luv-orange);
    border-color: var(--luv-orange);
}
body.theme-luv .trn-modal-title {
    font-family: var(--luv-font-heading);
    font-size: 26px;
    font-weight: 400;
    color: var(--luv-text);
    margin: 0 0 6px;
    letter-spacing: 0.3px;
    padding-right: 40px;
}
body.theme-luv .trn-modal-sub {
    font-family: var(--luv-font-body);
    font-size: 13.5px;
    color: var(--luv-text-dim);
    margin: 0 0 22px;
    line-height: 1.5;
}
body.theme-luv .trn-modal-meta-label {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--luv-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

/* ── Bracket : tabs ────────────────────────────────────────── */
body.theme-luv .trn-bracket-tabs-wrap {
    margin-top: 8px;
}
body.theme-luv .trn-bracket-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--luv-line);
    margin-bottom: 16px;
    scrollbar-width: none;
}
body.theme-luv .trn-bracket-tabs::-webkit-scrollbar { display: none; }

body.theme-luv .trn-bracket-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--luv-text-mute);
    font-family: var(--luv-font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    border-radius: var(--luv-r-sm) var(--luv-r-sm) 0 0;
}
body.theme-luv .trn-bracket-tab:hover {
    color: var(--luv-text);
    background: rgba(255, 255, 255, 0.03);
}
body.theme-luv .trn-bracket-tab.active {
    color: var(--luv-orange);
    border-bottom-color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.08);
}
body.theme-luv .trn-bracket-tab.complete .trn-bracket-tab-label::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--luv-green);
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
}
body.theme-luv .trn-bracket-tab-label {
    font-size: 13px;
    font-weight: 700;
}
body.theme-luv .trn-bracket-tab-count {
    font-family: var(--luv-font-mono);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--luv-text-mute);
    letter-spacing: 0.06em;
}
body.theme-luv .trn-bracket-tab.active .trn-bracket-tab-count {
    color: var(--luv-orange);
}

/* ── Bracket : panels ──────────────────────────────────────── */
body.theme-luv .trn-bracket-panel { display: none; }
body.theme-luv .trn-bracket-panel.active {
    display: block;
    animation: callsFadeUp 0.2s ease;
}
body.theme-luv .trn-bracket-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
body.theme-luv .trn-bracket-panel-title {
    font-family: var(--luv-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--luv-text);
}
body.theme-luv .trn-bracket-panel-info {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    color: var(--luv-text-mute);
    font-weight: 600;
}

/* ── Match cards ───────────────────────────────────────────── */
body.theme-luv .trn-bracket-matches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 10px;
}
body.theme-luv .trn-match-card {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    overflow: hidden;
    transition: var(--transition);
}
body.theme-luv .trn-match-card:hover {
    border-color: rgba(255, 138, 31, 0.40);
}
body.theme-luv .trn-match-card.trn-match-pending { opacity: 0.55; }
body.theme-luv .trn-match-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--luv-line);
}
body.theme-luv .trn-match-num {
    font-family: var(--luv-font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--luv-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
body.theme-luv .trn-match-status { display: flex; align-items: center; }
body.theme-luv .trn-match-status-done { color: var(--luv-green); }
body.theme-luv .trn-match-status-live { color: #29c8e6; }
body.theme-luv .trn-match-status-wait { color: var(--luv-text-mute); opacity: 0.5; }

body.theme-luv .trn-match-vs {
    text-align: center;
    font-family: var(--luv-font-mono);
    font-size: 9px;
    font-weight: 700;
    color: var(--luv-text-mute);
    letter-spacing: 0.20em;
    padding: 3px 0;
    background: rgba(255, 255, 255, 0.015);
}
body.theme-luv .trn-match-player {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-family: var(--luv-font-body);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--luv-text);
    position: relative;
}
body.theme-luv .trn-match-player img {
    width: 22px; height: 22px;
    border-radius: 50%;
    object-fit: cover;
}
body.theme-luv .trn-match-player.winner {
    color: var(--luv-orange);
    background: rgba(255, 138, 31, 0.10);
}
body.theme-luv .trn-match-player.loser {
    opacity: 0.45;
    text-decoration: line-through;
}
body.theme-luv .trn-match-score {
    margin-left: auto;
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--luv-text-mute);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}
body.theme-luv .trn-match-player.winner .trn-match-score { color: var(--luv-orange); }
/* Multiplicateur « X win » sous le profit € (mode multiplier). */
body.theme-luv .trn-match-mult {
    display: block;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--luv-text-mute);
    opacity: 0.8;
    margin-top: 1px;
}
body.theme-luv .trn-match-player.winner .trn-match-mult { color: var(--luv-orange); }
body.theme-luv .trn-match-bye {
    color: var(--luv-text-mute);
    font-style: italic;
    font-family: var(--luv-font-mono);
}

/* ── Participants list (modal) ─────────────────────────────── */
body.theme-luv .trn-participants-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    margin-top: 8px;
}
body.theme-luv .trn-participant-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--luv-line);
    border-radius: var(--luv-r-md);
    padding: 9px 12px;
    font-family: var(--luv-font-body);
    font-size: 13px;
    color: var(--luv-text);
}
body.theme-luv .trn-participant-row img {
    width: 26px; height: 26px;
    border-radius: 50%;
    object-fit: cover;
}
body.theme-luv .trn-participant-num {
    font-family: var(--luv-font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--luv-text-mute);
    min-width: 22px;
}

/* ── Toast ─────────────────────────────────────────────────── */
body.theme-luv .trn-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--luv-card);
    border: 1px solid rgba(255, 138, 31, 0.50);
    color: var(--luv-orange);
    font-family: var(--luv-font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    white-space: nowrap;
}
body.theme-luv .trn-toast.show { opacity: 1; }
body.theme-luv .trn-toast.error {
    border-color: rgba(230, 57, 70, 0.55);
    color: var(--luv-red);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 720px) {
    body.theme-luv .trn-hero { padding: 48px 16px 30px; }
    body.theme-luv .trn-section { padding: 22px 16px 64px; }
    body.theme-luv .trn-grid { grid-template-columns: 1fr; }
    body.theme-luv .trn-modal { padding: 20px; }
    body.theme-luv .trn-bracket-matches { grid-template-columns: 1fr; }
    body.theme-luv .trn-bracket-tab { padding: 8px 12px; font-size: 12px; }
}
