/*
 * index.php puslapio stiliai.
 * 2026-09-17 iškelta iš inline <style> bloko: puslapis siunčiamas su
 * Cache-Control: no-store, todėl inline CSS keliaudavo iš naujo su KIEKVIENU
 * atidarymu. Atskiras failas kešuojamas naršyklėje, o versija keičiama per
 * ?v=<filemtime>, tad atnaujinimas pasiekia žmones iš karto.
 */
/* ===== VIZUALINIS STILIUS — pyramides.php paleta ===== */
:root {
    --primary:       #1565C0;
    --primary-dark:  #0D47A1;
    --primary-light: #e3f2fd;
    --card-shadow:   0 6px 18px rgba(0,0,0,0.08);
    --hover-shadow:  0 12px 28px rgba(0,0,0,0.13);
    --background:    #f5f7fb;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f5f7fb;
}

/* Kortelės */
.card {
    border-radius: 16px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
    margin-bottom: 16px;
}
.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.card-header h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #212121;
    letter-spacing: -.01em;
}
.card-body {
    padding: 12px;
}

/* Žaidėjų kortelės */
.player-card {
    border-radius: 12px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06) !important;
    transition: transform .2s, box-shadow .2s;
}
.player-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.11) !important;
}
.player-name {
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    color: #1e293b;
}
.player-card > .player-avatar-container {
    flex-shrink: 0;
}
/* Iššūkių kortelėse vardas yra po avataru — paliekame vietos Elo ženkliukui */
.team-side .player-avatar-container {
    margin-bottom: 10px;
}
.player-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2px;
    white-space: nowrap;
    line-height: 1;
    min-width: 62px;
    cursor: pointer;
    transition: transform .15s;
}
.player-badge:active {
    transform: scale(0.93);
}
.player-badge-emoji {
    font-size: 22px;
    line-height: 1;
}
/* Siauruose ekranuose paliekamas tik emoji, kad netemptų kortelės */
@media (max-width: 520px) {
    .player-badge {
        gap: 0;
        padding: 8px;
        margin-left: 6px;
        min-width: 0;
        border-radius: 50%;
    }
    .player-badge-name {
        display: none;
    }
    .player-badge-emoji {
        font-size: 22px;
    }
}

/* Ženkliukų paaiškinimo modalas */
.badge-legend-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.badge-legend-row:last-of-type {
    border-bottom: none;
}
.badge-legend-row .player-badge {
    cursor: default;
}
.badge-legend-row .player-badge-name {
    display: block;
}
.badge-legend-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.badge-legend-text strong {
    font-size: 0.88rem;
    color: #1e293b;
}
.badge-legend-text span {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}
.player-elo-bubble {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #e53935;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 9px;
    border: 2px solid #fff;
    white-space: nowrap;
}
.player-position {
    background: #1565C0 !important;
    border-radius: 8px;
    font-weight: 700;
}
.player-position-bubble {
    background: #1565C0 !important;
}

/* Grupių antraštės */
.group-header {
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    border-left: none !important;
    padding: 8px 14px;
}
.group-header.top {
    background: #e3f2fd;
    color: #1565C0;
}
.group-header.mid {
    background: #fff3e0;
    color: #E65100;
}
.group-header.low {
    background: #fce4ec;
    color: #AD1457;
}
/* Registracijos metu užsiregistravę, bet dar nereitinguoti žaidėjai */
.group-header.unranked {
    background: #eceff1;
    color: #546E7A;
}
.player-position.unranked {
    background: #b0bec5 !important;
    color: #fff;
}

/* Status badge'ai — apvaliau */
.status-badge {
    border-radius: 20px !important;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
}

/* Iššūkio grupės antraštė */
.challenge-group-header {
    background: #e3f2fd;
    border-left: 4px solid #1565C0;
    color: #1565C0;
    border-radius: 0 10px 10px 0;
}

/* Dabartinis vartotojas */
.player-card.current-user {
    background: linear-gradient(90deg, rgba(21,101,192,.12) 0%, rgba(21,101,192,.02) 100%) !important;
    border: 1px solid rgba(21,101,192,.2) !important;
}
.player-card.current-user .player-position {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%) !important;
}

/* Mygtukai */
.btn-primary {
    background: #1565C0;
    border-color: #1565C0;
}
.btn-primary:hover {
    background: #0D47A1;
    border-color: #0D47A1;
}


/* Iššūkio kortelėje vardai — 12px */
.match-card .player-name {
    font-size: 12px !important;
    font-weight: 500 !important;
}

/* Filtrai — toggle mygtukas */
.toggle-button,
#toggleFilters {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: #fff;
    color: #555;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.toggle-button:hover,
#toggleFilters:hover {
    background: #e3f2fd;
    border-color: #1565C0;
}
.toggle-button.open,
#toggleFilters.open {
    background: #1565C0;
    color: #fff;
    border-color: #1565C0;
}

/* Filtrai — laukų stilius */
.filter-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    min-width: 130px;
    flex: 1 1 130px;
}
.filter-label {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #9e9e9e !important;
    margin-bottom: 5px !important;
}
.filter-input,
.search-input {
    padding: 9px 12px !important;
    border: 1.5px solid #e8e8e8 !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
    background: #fafafa !important;
    color: #1e293b !important;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.filter-input:focus,
.search-input:focus {
    border-color: #1565C0 !important;
    box-shadow: 0 0 0 3px rgba(21,101,192,.1) !important;
    background: #fff !important;
}
select.filter-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 30px !important;
    cursor: pointer;
}
.date-filter-wrapper {
    display: flex !important;
    gap: 6px !important;
    align-items: center !important;
}
.date-filter-wrapper .filter-input {
    flex: 1 !important;
}
.clear-date-btn {
    padding: 8px 10px !important;
    border: 1.5px solid #e8e8e8 !important;
    border-radius: 10px !important;
    background: #fafafa !important;
    color: #9e9e9e !important;
    font-size: 0.8rem !important;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .15s;
    line-height: 1;
}
.clear-date-btn:hover {
    border-color: #f44336 !important;
    color: #f44336 !important;
    background: #fff5f5 !important;
}
/* ? pagalbos mygtukas etiketėje */
.filter-label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.filter-help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid #bdbdbd;
    background: none;
    color: #9e9e9e;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    transition: border-color .15s, color .15s;
    font-family: inherit;
}
.filter-help-btn:hover {
    border-color: #1565C0;
    color: #1565C0;
}


/* Filtrai — collapse (max-height metodas) */
.filters {
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height .3s cubic-bezier(.4,0,.2,1) !important;
    padding: 0 !important;
    background: none !important;
    border-top: none !important;
}
.filters.active {
    max-height: 600px !important;
}
.filters > .filter-group,
.filters > div {
    padding: 0;
}
/* ===== /VIZUALINIS STILIUS ===== */

.player-avatar-container {
    position: relative;
    display: inline-block;
}

.player-position-bubble {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    background: var(--primary, #1976D2);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
    z-index: 10;
}

.challenge-group-header {
    grid-column: 1 / -1;
    background-color: #f5f5f5;
    padding: 10px 15px;
    font-weight: 600;
    color: #333;
    border-left: 4px solid #1976D2;
    margin-top: 20px;
    margin-bottom: 10px;
}

.challenge-group-header:first-child {
    margin-top: 0;
}

/* Center-align challenge card and actions on desktop */
@media (min-width: 768px) {
    .challenge-grid {
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }
    
    .match-card {
        max-width: 600px;
        width: 100%;
    }
    
    .challenge-actions {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }
    
    .notification {
        max-width: 600px;
        margin: 10px auto;
    }
}

/* Deadline radial card */
.dl-card { transition: box-shadow 0.2s; }
.dl-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.11) !important; }

.dl-info-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(0,0,0,0.08); color: #666;
    font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.dl-info-icon:hover { background: var(--primary); color: #fff; }

.dl-radial-layout { display: flex; align-items: center; gap: 18px; }
.dl-ring-wrap { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
.dl-ring-svg  { width: 88px; height: 88px; display: block; }
.dl-ring-bg   { fill: none; stroke: #e8e8e8; stroke-width: 9; }
.dl-ring-fg   {
    fill: none; stroke-width: 9; stroke-linecap: round;
    stroke-dasharray: 314.16;
    transform: rotate(-90deg); transform-origin: 60px 60px;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1);
}
.dl-ring-center {
    position: absolute; inset: 0; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.65rem; pointer-events: none;
}
.dl-text { flex: 1; min-width: 0; }
.dl-tag  { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 3px; }
.dl-name { font-size: 0.95rem; font-weight: 700; color: #1e293b; line-height: 1.2; margin-bottom: 5px; }
.dl-num-row { display: flex; align-items: baseline; gap: 1px; margin-bottom: 1px; }
.dl-num  { font-size: 2.1rem; font-weight: 800; line-height: 1; }
.dl-unit { font-size: 1rem; font-weight: 700; }
.dl-sub  { font-size: 0.74rem; color: #999; }
.dl-more { font-size: 0.71rem; color: #bbb; margin-top: 6px; }

/* Challenge availability styling - subtle and unobtrusive */
.player-card.challengeable-no-penalty {
    position: relative;
    padding-left: 30px;
}

.player-card.challengeable-no-penalty::before {
    content: 'Be baudos';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    background: linear-gradient(180deg, #4caf50 0%, #66bb6a 100%);
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
    padding: 5px 0;
}

.player-card.challengeable-with-penalty {
    position: relative;
    padding-left: 30px;
}

.player-card.challengeable-with-penalty::before {
    content: 'Su bauda';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 18px;
    background: linear-gradient(180deg, #f44336 0%, #ef5350 100%);
    border-radius: 4px 0 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
    padding: 5px 0;
}

/* Optional: Add subtle hover effect for challengeable players */
.player-card.challengeable-no-penalty:hover::before {
    width: 20px;
}

.player-card.challengeable-with-penalty:hover::before {
    width: 20px;
}

/* Highlight current user in the player list */
.player-card.current-user {
    background: linear-gradient(90deg, rgba(25, 118, 210, 0.32) 0%, rgba(25, 118, 210, 0.02) 100%);
    border: 1px solid rgba(25, 118, 210, 0.2);
}

.player-card.current-user .player-position {
    background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
    color: white;
    font-weight: 600;
}

/* dl-timeline steps (used in modal) */
.dl-timeline { display: flex; flex-direction: column; padding: 4px 0 2px; }
.dl-step { display: flex; align-items: flex-start; gap: 12px; }
.dl-node { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 30px; }
.dl-dot  { width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;flex-shrink:0;z-index:1; }
.dl-line { width:2px;flex:1;min-height:10px;background:#e8e8e8;margin:3px 0; }
.dl-step:last-child .dl-line { display:none; }
.dl-body { flex:1;min-width:0;padding:4px 0 14px; }
.dl-label { font-size:0.83rem;font-weight:600;color:#1e293b;line-height:1.3; }
.dl-date  { font-size:0.72rem;color:#aaa;margin-top:2px; }
.dl-pill  { font-size:0.68rem;font-weight:700;padding:2px 8px;border-radius:20px;white-space:nowrap;align-self:flex-start;margin-top:6px;flex-shrink:0; }

.dl-step.dl-completed .dl-dot  { background:#e8f5e9;color:#388e3c;border:2px solid #81c784; }
.dl-step.dl-completed .dl-line { background:#81c784; }
.dl-step.dl-completed .dl-label{ color:#777; }
.dl-step.dl-completed .dl-pill { background:#e8f5e9;color:#388e3c; }
.dl-step.dl-active .dl-dot  { background:#fff3e0;color:#e65100;border:2px solid #FF9800;animation:dl-pulse 2s ease-in-out infinite; }
.dl-step.dl-active .dl-pill { background:#fff3e0;color:#e65100; }
.dl-step.dl-overdue .dl-dot  { background:#ffebee;color:#c62828;border:2px solid #e57373; }
.dl-step.dl-overdue .dl-label{ color:#c62828; }
.dl-step.dl-overdue .dl-pill { background:#ffebee;color:#c62828; }
.dl-step.dl-future .dl-dot  { background:#f5f5f5;color:#bbb;border:2px solid #e0e0e0; }
.dl-step.dl-future .dl-label{ color:#999; }
.dl-step.dl-future .dl-pill { background:#f5f5f5;color:#bbb; }
@keyframes dl-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,152,0,.35)} 50%{box-shadow:0 0 0 5px rgba(255,152,0,0)} }

/* Compact Win Probability Dial for List View */
.compact-dial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    max-width: 110px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 8px;
}

.compact-dial-track {
    width: 100%;
    height: 28px;
    background: linear-gradient(to right, #1976d2 0%, #64b5f6 30%, #f5f5f5 50%, #ffb74d 70%, #ff9800 100%);
    border-radius: 14px;
    position: relative;
    overflow: visible;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    flex-shrink: 0;
}

.compact-dial-percentage {
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    z-index: 1;
}

.compact-dial-indicator {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 32px;
    background: #333;
    border-radius: 2px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 2;
}

.compact-dial-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.compact-dial-label {
    font-size: 10px;
    color: #999;
    text-align: center;
}

@media (max-width: 768px) {
    .compact-dial-container {
        max-width: 100px;
        padding: 6px;
    }
    
    .compact-dial-track {
        height: 24px;
        padding: 0 6px;
    }
    
    .compact-dial-percentage {
        font-size: 10px;
    }
    
    .compact-dial-indicator {
        height: 28px;
        width: 2px;
    }
    
    .compact-dial-indicator::before {
        width: 8px;
        height: 8px;
    }
    
    .compact-dial-label {
        font-size: 9px;
    }
}

/* Timeline Progression Bar Styles */
.timeline-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 13px;
    font-weight: 600;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.timeline-info-icon:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.timeline-card-body {
    padding: 14px 20px;
}

.timeline-progression {
    cursor: pointer;
}

/* Radial layout: ring left, text right */
.radial-layout {
    display: flex;
    align-items: center;
    gap: 18px;
}

.radial-ring-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
}

.radial-svg {
    width: 88px;
    height: 88px;
    display: block;
}

.radial-bg {
    fill: none;
    stroke: #e8e8e8;
    stroke-width: 9;
}

.radial-fg {
    fill: none;
    stroke: var(--primary);
    stroke-width: 9;
    stroke-linecap: round;
    stroke-dasharray: 314.16;
    stroke-dashoffset: 314.16;
    transform: rotate(-90deg);
    transform-origin: 60px 60px;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.radial-ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    pointer-events: none;
}

/* Text panel */
.radial-info {
    flex: 1;
    min-width: 0;
}

.radial-stage-tag {
    font-size: 0.64rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 3px;
}

.radial-stage-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 5px;
}

.radial-days-row {
    display: flex;
    align-items: baseline;
    gap: 1px;
    margin-bottom: 1px;
}

.radial-num {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.radial-unit {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.radial-till {
    font-size: 0.74rem;
    color: #999;
}

.radial-away {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 7px;
    font-size: 0.7rem;
    color: #888;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 3px 8px;
    line-height: 1.3;
}

/* Desktop-only extras */
.radial-desktop {
    display: none;
}

@media (min-width: 600px) {
    .radial-ring-wrap {
        width: 108px;
        height: 108px;
    }
    .radial-svg {
        width: 108px;
        height: 108px;
    }
    .radial-ring-center {
        font-size: 1.9rem;
    }
    .radial-stage-name {
        font-size: 1.05rem;
    }
    .radial-num {
        font-size: 2.4rem;
    }
    .radial-desktop {
        display: block;
    }
    .radial-next {
        font-size: 0.73rem;
        color: #1565C0;
        background: #f0f7ff;
        border-radius: 6px;
        padding: 5px 9px;
        margin-top: 8px;
        line-height: 1.4;
    }
}

.timeline-modal-step {
    margin-bottom: 10px;
    padding: 13px 14px;
    background: #fafafa;
    border-radius: 12px;
    border-left: 3px solid #1565C0;
}
.timeline-modal-step.past   { border-left-color: #43a047; background: #f1f8f1; }
.timeline-modal-step.future { border-left-color: #e0e0e0; background: #fafafa; }
.timeline-modal-step.current { border-left-color: #FF9800; background: #fffde7; }

.timeline-modal-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.timeline-modal-step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.timeline-modal-step-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.timeline-modal-step-date {
    font-size: 0.76rem;
    color: #9e9e9e;
    margin: 4px 0;
    font-weight: 500;
}

.timeline-modal-step-description {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

