/**
 * GameFace PPV - Pay Per View Channel Guide
 * File: ppv/assets/css/ppv.css
 * 
 * Dark cinema streaming theme
 * Mobile-first responsive design
 * Inspired by HBO Max, Crave, Disney+
 */

/* =====================================================
   PPV DESIGN TOKENS
   ===================================================== */
:root {
    /* PPV Dark Theme Colors */
    --ppv-bg-darkest: #0a0a0b;
    --ppv-bg-dark: #111113;
    --ppv-bg-card: #1a1a1d;
    --ppv-bg-card-hover: #222226;
    --ppv-bg-elevated: #252528;
    
    /* Text Colors */
    --ppv-text-primary: #ffffff;
    --ppv-text-secondary: #a1a1aa;
    --ppv-text-muted: #71717a;
    
    /* Accent Colors */
    --ppv-accent-blue: #00CCFF;
    --ppv-accent-blue-glow: rgba(0, 204, 255, 0.3);
    --ppv-live-red: #ef4444;
    --ppv-live-red-glow: rgba(239, 68, 68, 0.4);
    --ppv-upcoming-blue: #3b82f6;
    --ppv-replay-gray: #6b7280;
    --ppv-video-teal: #14b8a6;
    
    /* Gradients */
    --ppv-gradient-hero: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.8) 60%, #0a0a0b 100%);
    --ppv-gradient-card: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    --ppv-gradient-accent: linear-gradient(135deg, #00CCFF 0%, #0066CC 100%);
    
    /* Borders */
    --ppv-border-subtle: rgba(255, 255, 255, 0.08);
    --ppv-border-hover: rgba(255, 255, 255, 0.15);
    
    /* Shadows */
    --ppv-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --ppv-shadow-glow: 0 0 30px rgba(0, 204, 255, 0.2);
    
    /* Sizing */
    --ppv-header-height: 64px;
    --ppv-card-width: 280px;
    --ppv-card-width-mobile: 200px;
    --ppv-card-aspect: 16 / 9;
    --ppv-hero-height: 480px;
    --ppv-hero-height-mobile: 320px;
    --ppv-max-width: 1400px;
    
    /* Spacing */
    --ppv-gutter: 24px;
    --ppv-gutter-mobile: 16px;
    
    /* Transitions */
    --ppv-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --ppv-transition-fast: 0.15s ease;
    
    /* Border Radius */
    --ppv-radius-sm: 6px;
    --ppv-radius-md: 10px;
    --ppv-radius-lg: 14px;
}

/* =====================================================
   BASE STYLES
   ===================================================== */
.ppv-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: var(--ppv-bg-darkest);
    color: var(--ppv-text-primary);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ppv-page * {
    box-sizing: border-box;
}

/* =====================================================
   HEADER
   ===================================================== */
.ppv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--ppv-header-height);
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.95) 0%, rgba(10, 10, 11, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--ppv-border-subtle);
}

.ppv-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--ppv-gutter);
    height: 100%;
}

.ppv-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ppv-text-primary);
}

.ppv-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--ppv-gradient-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppv-logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.ppv-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.ppv-logo-text span {
    color: var(--ppv-accent-blue);
}

.ppv-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ppv-nav-link {
    padding: 8px 16px;
    color: var(--ppv-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--ppv-radius-sm);
    transition: var(--ppv-transition-fast);
}

.ppv-nav-link:hover {
    color: var(--ppv-text-primary);
    background: var(--ppv-bg-card);
}

.ppv-nav-link.active {
    color: var(--ppv-text-primary);
    background: var(--ppv-bg-elevated);
}

.ppv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ppv-gradient-accent);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--ppv-radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: var(--ppv-transition);
}

.ppv-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--ppv-shadow-glow);
}

.ppv-btn-outline {
    background: transparent;
    border: 1px solid var(--ppv-border-hover);
    color: var(--ppv-text-primary);
}

.ppv-btn-outline:hover {
    background: var(--ppv-bg-card);
    border-color: var(--ppv-accent-blue);
    box-shadow: none;
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */
.ppv-main {
    padding-top: var(--ppv-header-height);
    min-height: 100vh;
}

/* Content wrapper for max-width constraint */
.ppv-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--ppv-gutter);
}

/* For full-bleed sections like hero, contain inner content */
.ppv-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.ppv-hero {
    position: relative;
    height: var(--ppv-hero-height);
    overflow: hidden;
    margin-bottom: var(--ppv-gutter);
}

.ppv-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.ppv-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ppv-gradient-hero);
}

.ppv-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--ppv-gutter) 48px;
}

.ppv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--ppv-live-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--ppv-radius-sm);
    margin-bottom: 16px;
    width: fit-content;
    animation: ppv-pulse 2s infinite;
}

.ppv-hero-badge.upcoming {
    background: var(--ppv-upcoming-blue);
    animation: none;
}

@keyframes ppv-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ppv-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
    max-width: 700px;
}

.ppv-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: var(--ppv-text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.ppv-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ppv-hero-meta-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.ppv-hero-actions {
    display: flex;
    gap: 12px;
}

.ppv-btn-play {
    padding: 14px 32px;
    font-size: 16px;
}

.ppv-btn-play svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   CHANNEL RAILS (HORIZONTAL SCROLL)
   ===================================================== */
.ppv-channel-section {
    margin-bottom: 40px;
}

.ppv-channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 16px;
    padding: 0 var(--ppv-gutter);
}

.ppv-channel-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ppv-text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ppv-channel-title svg {
    width: 22px;
    height: 22px;
    color: var(--ppv-accent-blue);
}

.ppv-channel-link {
    color: var(--ppv-text-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--ppv-transition-fast);
}

.ppv-channel-link:hover {
    color: var(--ppv-accent-blue);
}

.ppv-channel-link svg {
    width: 16px;
    height: 16px;
}

.ppv-rail-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.ppv-rail {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px var(--ppv-gutter);
}

.ppv-rail::-webkit-scrollbar {
    display: none;
}

/* Rail navigation arrows */
.ppv-rail-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--ppv-border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: var(--ppv-transition);
}

.ppv-rail-container:hover .ppv-rail-arrow {
    opacity: 1;
}

.ppv-rail-arrow:hover {
    background: var(--ppv-bg-card);
    border-color: var(--ppv-accent-blue);
}

.ppv-rail-arrow svg {
    width: 24px;
    height: 24px;
    color: white;
}

.ppv-rail-arrow.prev {
    left: 8px;
}

.ppv-rail-arrow.next {
    right: 8px;
}

.ppv-rail-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* =====================================================
   EVENT CARDS
   ===================================================== */
.ppv-card {
    flex-shrink: 0;
    width: var(--ppv-card-width);
    background: var(--ppv-bg-card);
    border-radius: var(--ppv-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--ppv-transition);
    border: 1px solid transparent;
}

.ppv-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: var(--ppv-bg-card-hover);
    border-color: var(--ppv-border-hover);
    box-shadow: var(--ppv-shadow-card);
}

.ppv-card-thumbnail {
    position: relative;
    aspect-ratio: var(--ppv-card-aspect);
    background: var(--ppv-bg-dark);
    overflow: hidden;
}

.ppv-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ppv-card:hover .ppv-card-thumbnail img {
    transform: scale(1.08);
}

.ppv-card-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ppv-bg-dark) 0%, var(--ppv-bg-card) 100%);
}

.ppv-card-thumbnail-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--ppv-text-muted);
    opacity: 0.5;
}

.ppv-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--ppv-gradient-card);
    opacity: 0;
    transition: var(--ppv-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppv-card:hover .ppv-card-overlay {
    opacity: 1;
}

.ppv-card-play {
    width: 56px;
    height: 56px;
    background: var(--ppv-accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    opacity: 0;
    transition: var(--ppv-transition);
}

.ppv-card:hover .ppv-card-play {
    transform: scale(1);
    opacity: 1;
}

.ppv-card-play svg {
    width: 24px;
    height: 24px;
    color: white;
    margin-left: 3px;
}

/* Status badge on card */
.ppv-card-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ppv-card-status.live {
    background: var(--ppv-live-red);
    animation: ppv-pulse 2s infinite;
}

.ppv-card-status.upcoming {
    background: var(--ppv-upcoming-blue);
}

.ppv-card-status.replay {
    background: var(--ppv-replay-gray);
}

/* Video badge - shows duration or "Video" label */
.ppv-card-status.video {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    font-variant-numeric: tabular-nums;
    top: auto;
    bottom: 12px;
    left: auto;
    right: 12px;
}

/* Team logo on card */
.ppv-card-logo {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ppv-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card info */
.ppv-card-info {
    padding: 14px;
}

.ppv-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--ppv-text-primary);
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ppv-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ppv-text-muted);
    font-size: 13px;
}

.ppv-card-meta svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.ppv-card-team {
    color: var(--ppv-text-secondary);
}

.ppv-card-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =====================================================
   CHANNEL PAGE (GRID VIEW)
   ===================================================== */
.ppv-channel-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--ppv-gutter);
}

.ppv-page-header {
    margin-bottom: 32px;
}

.ppv-page-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ppv-page-title svg {
    width: 32px;
    height: 32px;
    color: var(--ppv-accent-blue);
}

.ppv-page-subtitle {
    color: var(--ppv-text-secondary);
    font-size: 16px;
    margin: 0;
}

/* Filter tabs */
.ppv-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ppv-filter-btn {
    padding: 10px 20px;
    background: var(--ppv-bg-card);
    border: 1px solid var(--ppv-border-subtle);
    border-radius: var(--ppv-radius-md);
    color: var(--ppv-text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--ppv-transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ppv-filter-btn:hover {
    background: var(--ppv-bg-card-hover);
    color: var(--ppv-text-primary);
}

.ppv-filter-btn.active {
    background: var(--ppv-accent-blue);
    border-color: var(--ppv-accent-blue);
    color: white;
}

/* Grid layout */
.ppv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.ppv-grid .ppv-card {
    width: 100%;
}

/* Empty state */
.ppv-empty {
    text-align: center;
    padding: 80px var(--ppv-gutter);
}

.ppv-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--ppv-bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppv-empty-icon svg {
    width: 40px;
    height: 40px;
    color: var(--ppv-text-muted);
}

.ppv-empty-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
}

.ppv-empty-text {
    color: var(--ppv-text-secondary);
    font-size: 15px;
    max-width: 400px;
    margin: 0 auto;
}

/* =====================================================
   LIVE INDICATOR ANIMATION
   ===================================================== */
.ppv-live-dot {
    width: 8px;
    height: 8px;
    background: var(--ppv-live-red);
    border-radius: 50%;
    animation: ppv-live-blink 1.5s infinite;
    flex-shrink: 0;
}

@keyframes ppv-live-blink {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 var(--ppv-live-red-glow);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 0 6px transparent;
    }
}

/* =====================================================
   COUNTDOWN TIMER
   ===================================================== */
.ppv-countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.ppv-countdown-unit {
    text-align: center;
}

.ppv-countdown-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--ppv-text-primary);
    background: var(--ppv-bg-card);
    padding: 8px 16px;
    border-radius: var(--ppv-radius-md);
    min-width: 70px;
}

.ppv-countdown-label {
    font-size: 11px;
    color: var(--ppv-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.ppv-footer {
    border-top: 1px solid var(--ppv-border-subtle);
    padding: 32px var(--ppv-gutter);
    margin-top: 60px;
}

.ppv-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.ppv-footer-text {
    color: var(--ppv-text-muted);
    font-size: 13px;
}

.ppv-footer-links {
    display: flex;
    gap: 24px;
}

.ppv-footer-links a {
    color: var(--ppv-text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: var(--ppv-transition-fast);
}

.ppv-footer-links a:hover {
    color: var(--ppv-accent-blue);
}

/* =====================================================
   SPORT ICONS (PLACEHOLDER BACKGROUNDS)
   ===================================================== */
.ppv-sport-bg {
    background-size: cover;
    background-position: center;
}

.ppv-sport-bg-basketball { background: linear-gradient(135deg, #f97316, #ea580c); }
.ppv-sport-bg-football { background: linear-gradient(135deg, #84cc16, #65a30d); }
.ppv-sport-bg-soccer { background: linear-gradient(135deg, #22c55e, #16a34a); }
.ppv-sport-bg-baseball { background: linear-gradient(135deg, #ef4444, #dc2626); }
.ppv-sport-bg-volleyball { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ppv-sport-bg-hockey { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.ppv-sport-bg-lacrosse { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.ppv-sport-bg-tennis { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.ppv-sport-bg-swimming { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.ppv-sport-bg-default { background: linear-gradient(135deg, #6b7280, #4b5563); }

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    :root {
        --ppv-gutter: var(--ppv-gutter-mobile);
        --ppv-card-width: var(--ppv-card-width-mobile);
        --ppv-hero-height: var(--ppv-hero-height-mobile);
    }
    
    .ppv-header-inner {
        padding: 0 var(--ppv-gutter-mobile);
    }
    
    .ppv-nav {
        display: none;
    }
    
    .ppv-logo-text {
        font-size: 18px;
    }
    
    .ppv-hero-title {
        font-size: 26px;
    }
    
    .ppv-hero-meta {
        font-size: 13px;
        gap: 12px;
    }
    
    .ppv-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .ppv-btn-play {
        width: 100%;
        justify-content: center;
    }
    
    .ppv-channel-title {
        font-size: 17px;
    }
    
    .ppv-rail {
        gap: 12px;
        padding: 8px var(--ppv-gutter-mobile);
    }
    
    .ppv-rail-arrow {
        display: none;
    }
    
    .ppv-card-info {
        padding: 12px;
    }
    
    .ppv-card-title {
        font-size: 14px;
    }
    
    .ppv-card-meta {
        font-size: 12px;
    }
    
    .ppv-page-title {
        font-size: 24px;
    }
    
    .ppv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .ppv-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        margin: 0 calc(-1 * var(--ppv-gutter-mobile)) 24px;
        padding-left: var(--ppv-gutter-mobile);
        padding-right: var(--ppv-gutter-mobile);
    }
    
    .ppv-filter-btn {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .ppv-countdown-value {
        font-size: 24px;
        padding: 6px 12px;
        min-width: 56px;
    }
    
    .ppv-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ppv-grid {
        grid-template-columns: 1fr;
    }
    
    .ppv-card {
        width: 100%;
    }
    
    .ppv-hero-content {
        padding-bottom: 32px;
    }
    
    .ppv-hero-badge {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* =====================================================
   TABLET TWEAKS
   ===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .ppv-hero-title {
        font-size: 34px;
    }
    
    .ppv-card-width {
        --ppv-card-width: 240px;
    }
}

/* =====================================================
   LOADING SKELETON
   ===================================================== */
.ppv-skeleton {
    background: linear-gradient(90deg, 
        var(--ppv-bg-card) 0%, 
        var(--ppv-bg-card-hover) 50%, 
        var(--ppv-bg-card) 100%
    );
    background-size: 200% 100%;
    animation: ppv-shimmer 1.5s infinite;
    border-radius: var(--ppv-radius-md);
}

@keyframes ppv-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.ppv-skeleton-card {
    width: var(--ppv-card-width);
    flex-shrink: 0;
}

.ppv-skeleton-thumbnail {
    aspect-ratio: var(--ppv-card-aspect);
}

.ppv-skeleton-text {
    height: 16px;
    margin: 14px;
}

.ppv-skeleton-text-sm {
    height: 12px;
    width: 60%;
    margin: 8px 14px 14px;
}
