
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

    :root {
      --bg-main: #0d121b;
      --bg-surface: #192233;
      --bg-surface-hover: #212d42;
      --bg-surface-alt: #131a28;
      --accent: #ff6b0d;
      --accent-hover: #ff8533;
      --accent-glow: rgba(255, 107, 13, 0.35);
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --text-dark: #0f172a;
      --border: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(255, 107, 13, 0.3);
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
      --font-body: 'Inter', system-ui, -apple-system, sans-serif;
      --container-width: 1240px;
      --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
      --shadow-glow: 0 0 25px var(--accent-glow);
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: var(--font-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      padding-bottom: 70px;
    }

    @media (min-width: 768px) {
      body {
        padding-bottom: 0;
      }
    }

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

    img, video, iframe, svg {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .skip-link {
      position: absolute;
      top: -100px;
      left: 1rem;
      background: var(--accent);
      color: #fff;
      padding: 0.5rem 1rem;
      z-index: 9999;
      border-radius: var(--radius-sm);
      font-weight: 700;
      transition: top 0.2s;
    }
    .skip-link:focus {
      top: 1rem;
    }

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 1rem;
      min-width: 0;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: rgba(13, 18, 27, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0.75rem 0;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: nowrap;
      min-width: 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-heading);
      font-size: clamp(1.1rem, 4vw, 1.5rem);
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: -0.5px;
      min-width: 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .brand__logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--accent), #e05300);
      color: #fff;
      border-radius: 8px;
      font-weight: 900;
      font-size: 1.2rem;
      box-shadow: var(--shadow-glow);
      flex-shrink: 0;
    }

    .brand__text {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .brand__text span {
      color: var(--accent);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      width: 38px;
      height: 38px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 8px;
      cursor: pointer;
      flex-shrink: 0;
    }

    .nav-toggle span {
      width: 100%;
      height: 2px;
      background-color: var(--text-main);
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    @media (min-width: 1024px) {
      .nav-toggle {
        display: none;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-family: var(--font-heading);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: var(--radius-md);
      transition: all 0.25s ease;
      cursor: pointer;
      border: none;
      min-width: 0;
      white-space: nowrap;
      text-align: center;
    }

    .btn--sm {
      padding: 0.5rem 0.85rem;
      font-size: clamp(0.75rem, 3vw, 0.85rem);
    }

    .btn--md {
      padding: 0.75rem 1.25rem;
      font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    }

    .btn--lg {
      padding: 0.95rem 1.8rem;
      font-size: clamp(0.9rem, 4vw, 1.05rem);
    }

    .btn--cta {
      background: linear-gradient(135deg, var(--accent) 0%, #e05300 100%);
      color: #fff;
      box-shadow: var(--shadow-glow);
    }

    .btn--cta:hover {
      background: linear-gradient(135deg, var(--accent-hover) 0%, #ff6b0d 100%);
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(255, 107, 13, 0.5);
    }

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

    .btn--outline:hover {
      background: rgba(255, 107, 13, 0.1);
      border-color: var(--accent);
      color: #fff;
    }

    .site-nav {
      display: none;
      background-color: var(--bg-surface-alt);
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
      position: static;
      width: 100%;
    }

    .site-nav--open {
      display: block;
    }

    @media (min-width: 1024px) {
      .site-nav {
        display: block !important;
        background-color: var(--bg-surface-alt);
        padding: 0.6rem 0;
      }
    }

    .site-nav ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    @media (min-width: 1024px) {
      .site-nav ul {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
      }
    }

    .site-nav a {
      display: block;
      padding: 0.5rem 1rem;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-muted);
      border-radius: var(--radius-sm);
      transition: all 0.2s;
    }

    .site-nav a:hover {
      color: var(--accent);
      background: rgba(255, 255, 255, 0.03);
    }

    .hero {
      position: relative;
      background: radial-gradient(circle at 50% 20%, #1e293b 0%, var(--bg-main) 70%);
      padding: clamp(1.75rem, 5vw, 3.5rem) 0;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      }
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 107, 13, 0.12);
      border: 1px solid var(--border-accent);
      color: var(--accent);
      padding: 0.35rem 0.85rem;
      border-radius: 50px;
      font-size: clamp(0.75rem, 3vw, 0.85rem);
      font-weight: 700;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hero__title {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 5vw, 3.2rem);
      font-weight: 900;
      line-height: 1.15;
      color: #fff;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .hero__title span {
      background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero__subtitle {
      font-size: clamp(0.9rem, 3vw, 1.1rem);
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      max-width: 540px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
    }

    .hero-actions .btn {
      flex: 1 1 auto;
    }

    @media (min-width: 480px) {
      .hero-actions .btn {
        flex: 0 0 auto;
      }
    }

    .hero-media {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
      max-height: 280px;
    }

    @media (min-width: 768px) {
      .hero-media {
        max-height: 380px;
      }
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .widget-section {
      padding: clamp(2rem, 5vw, 3.5rem) 0;
      border-bottom: 1px solid var(--border);
    }

    .section-header {
      margin-bottom: 1.5rem;
      text-align: left;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(1.3rem, 4vw, 2rem);
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-title::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 1.1em;
      background: var(--accent);
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: clamp(0.85rem, 3vw, 0.95rem);
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    .calc-card {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: clamp(1.25rem, 4vw, 2rem);
      box-shadow: var(--shadow-card);
    }

    .calc-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .calc-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      }
    }

    .calc-control {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .calc-label {
      font-weight: 600;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.95rem;
    }

    .calc-amount {
      font-family: var(--font-heading);
      color: var(--accent);
      font-size: 1.25rem;
      font-weight: 800;
    }

    .calc-range {
      width: 100%;
      height: 8px;
      background: var(--bg-surface-alt);
      border-radius: 4px;
      outline: none;
      accent-color: var(--accent);
      cursor: pointer;
    }

    .calc-results {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      background: var(--bg-surface-alt);
      padding: 1rem;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
    }

    .calc-res-box {
      display: flex;
      flex-direction: column;
    }

    .calc-res-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .calc-res-val {
      font-family: var(--font-heading);
      font-size: clamp(1rem, 3.5vw, 1.3rem);
      font-weight: 800;
      color: #fff;
    }

    .calc-res-val--highlight {
      color: var(--accent);
    }

    .slots-filter {
      display: flex;
      gap: 0.5rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
      margin-bottom: 1.25rem;
      scrollbar-width: thin;
    }

    .filter-btn {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 0.4rem 0.9rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      white-space: nowrap;
      cursor: pointer;
      transition: all 0.2s;
    }

    .filter-btn--active, .filter-btn:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
    }

    .slots-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.85rem;
    }

    @media (min-width: 640px) {
      .slots-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (min-width: 1024px) {
      .slots-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }
    }

    .slot-card {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.2s, border-color 0.2s;
    }

    .slot-card:hover {
      transform: translateY(-4px);
      border-color: var(--border-accent);
    }

    .slot-thumb {
      aspect-ratio: 1 / 1;
      background: #111827;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slot-thumb-bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slot-badge {
      position: absolute;
      top: 6px;
      right: 6px;
      background: rgba(13, 18, 27, 0.85);
      backdrop-filter: blur(4px);
      border: 1px solid var(--border-accent);
      color: var(--accent);
      font-size: 0.68rem;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      z-index: 2;
    }

    .slot-overlay {
      position: absolute;
      inset: 0;
      background: rgba(13, 18, 27, 0.75);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.2s;
    }

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

    .slot-body {
      padding: 0.6rem;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .slot-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .slot-provider {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .table-responsive {
      width: 100%;
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--bg-surface);
    }

    .data-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.88rem;
      min-width: 550px;
    }

    .data-table th, .data-table td {
      padding: 0.85rem 1rem;
      border-bottom: 1px solid var(--border);
    }

    .data-table th {
      background: var(--bg-surface-alt);
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--text-main);
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.5px;
    }

    .data-table tr:last-child td {
      border-bottom: none;
    }

    .data-table tr:hover td {
      background: rgba(255, 255, 255, 0.02);
    }

    .pay-sys {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      color: #fff;
    }

    .pay-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: var(--bg-surface-alt);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      border: 1px solid var(--border);
    }

    .badge-status {
      display: inline-block;
      padding: 0.2rem 0.5rem;
      border-radius: 4px;
      font-size: 0.72rem;
      font-weight: 700;
      background: rgba(34, 197, 94, 0.15);
      color: #4ade80;
    }

    .layout-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 2rem;
      padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    }

    @media (min-width: 1024px) {
      .layout-grid {
        grid-template-columns: minmax(0, 2.7fr) minmax(0, 1.3fr);
      }
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

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

    .breadcrumb-sep {
      opacity: 0.4;
    }

    article {
      min-width: 0;
      overflow-wrap: anywhere;
      word-break: break-word;
      color: #cbd5e1;
      font-size: 0.98rem;
      line-height: 1.7;
    }

    article h1, article h2, article h3, article h4 {
      font-family: var(--font-heading);
      color: #fff;
      margin: 1.5rem 0 0.75rem 0;
      line-height: 1.25;
    }

    article h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
    article h2 { font-size: clamp(1.25rem, 3.5vw, 1.6rem); border-bottom: 1px solid var(--border); padding-bottom: 0.4rem; }
    article h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); }

    article p {
      margin-bottom: 1rem;
    }

    article ul, article ol {
      margin: 0 0 1rem 1.25rem;
    }

    article li {
      margin-bottom: 0.35rem;
    }

    article img, article video, article iframe, article svg {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-md);
      margin: 1.25rem 0;
    }

    article table {
      display: block;
      overflow-x: auto;
      max-width: 100%;
      border-collapse: collapse;
      margin: 1.25rem 0;
      width: 100% !important;
    }

    article table th, article table td {
      padding: 0.65rem 0.85rem;
      border: 1px solid var(--border);
      background: var(--bg-surface);
    }

    article table th {
      background: var(--bg-surface-alt);
      color: #fff;
    }

    article pre {
      overflow-x: auto;
      max-width: 100%;
      background: var(--bg-surface-alt);
      padding: 1rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      margin: 1rem 0;
    }

    article code {
      word-break: break-word;
      font-family: monospace;
      background: rgba(255, 255, 255, 0.06);
      padding: 0.15rem 0.35rem;
      border-radius: 4px;
    }

    .aside-stack {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      min-width: 0;
    }

    .widget-box {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.25rem;
    }

    .widget-box--accent {
      border-color: var(--border-accent);
      background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(255, 107, 13, 0.05) 100%);
      position: relative;
    }

    .widget-box__title {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.85rem;
    }

    .aside-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .aside-links a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.5rem 0.75rem;
      background: var(--bg-surface-alt);
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      font-size: 0.88rem;
      transition: all 0.2s;
    }

    .aside-links a:hover {
      color: var(--accent);
      background: var(--bg-surface-hover);
    }

    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .faq-question {
      padding: 1rem 1.25rem;
      font-family: var(--font-heading);
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.95rem;
    }

    .faq-question::-webkit-details-marker {
      display: none;
    }

    .faq-question::after {
      content: '+';
      font-size: 1.3rem;
      color: var(--accent);
      transition: transform 0.2s;
    }

    .faq-item[open] .faq-question::after {
      content: '−';
    }

    .faq-answer {
      padding: 0 1.25rem 1rem 1.25rem;
      color: var(--text-muted);
      font-size: 0.9rem;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
      padding-top: 0.75rem;
    }

    .site-footer {
      background-color: var(--bg-surface-alt);
      border-top: 1px solid var(--border);
      padding-top: 3rem;
      margin-top: auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 2rem;
      margin-bottom: 2.5rem;
    }

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
      }
    }

    .footer-col__title {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links a {
      color: var(--text-muted);
      font-size: 0.88rem;
      transition: color 0.2s;
    }

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

    .footer-desc {
      color: var(--text-muted);
      font-size: 0.85rem;
      line-height: 1.6;
      margin-top: 0.75rem;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 1.25rem 0;
      text-align: center;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 990;
      background: rgba(13, 18, 27, 0.96);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-top: 1px solid var(--border-accent);
      padding: 0.6rem 1rem;
      display: flex;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .sticky-bar {
        display: none;
      }
    }

    .sticky-bar .btn {
      flex: 1;
    }

    .wins-ticker {
      background: var(--bg-surface-alt);
      border-bottom: 1px solid var(--border);
      padding: 0.5rem 0;
      font-size: 0.8rem;
      overflow: hidden;
    }

    .wins-ticker__inner {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      white-space: nowrap;
      min-width: 0;
    }

    .wins-ticker__label {
      background: var(--accent);
      color: #fff;
      font-weight: 800;
      padding: 0.15rem 0.5rem;
      border-radius: 4px;
      font-size: 0.7rem;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .wins-ticker__list {
      display: flex;
      gap: 1.5rem;
      animation: ticker 25s linear infinite;
      min-width: 0;
    }

    .win-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--text-muted);
    }

    .win-item strong {
      color: #fff;
    }

    .win-item span {
      color: #4ade80;
      font-weight: 700;
    }

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
  
/* engine safety: menu must never be trapped in sticky/fixed */
.site-nav,.site-nav *{position:static !important}


html{ -webkit-text-size-adjust:100%; text-size-adjust:100%; }
body{ overflow-x:hidden; }
img,video,iframe,svg{ max-width:100%; height:auto; }
main,article,section,aside,header,nav,footer{ min-width:0; }
@media (max-width:768px){
  [class*="layout"],[class*="container"],[class*="grid"],[class*="content"],[class*="wrapper"],[class*="main"],[class*="row"]{ min-width:0; }
  pre,table{ min-width:0; max-width:100%; }
  pre{ overflow-x:auto; }
  table{ display:block; overflow-x:auto; }
  code,kbd,samp{ word-break:break-word; }
  [class*="ticker"]{ overflow:hidden; }
  [class*="ticker"] *{ min-width:0; }
}
