      :root {
      --primary-orange: #f25e07;
      --primary-blue: #428bfb;
      --accent-blue: #0066CC;
      --dark-gray: #333;
      --light-gray: #f0f0f0;
      --white: #fff;
      --border-color: #ccc;
      --max-width: 1200px;
      --border-radius: 8px;
      --transition: all 0.3s ease;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
/* Better keyboard accessibility, tiny but impactful */
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #BBD5FB;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      color: white;
    }

    .header-top2 {
	  background: #f25e07;
	  margin: 8px 0px 0px 0px;
    }

    .header-top {
	  background: #f25e07;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      font-size: 0.9em;
	  font-weight: bold;
    }

    .header-top img {
      max-height: 50px;
    }

    .stats {
      background: rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 8px;
	  margin: 4px;
      backdrop-filter: blur(10px);
    }

    .cbblue {
      color: #0066CC;
      font-weight: bold;
    }

    .languages {
       display: grid;
	  grid-template-columns: repeat(5, auto);
	  gap: 4px;
    }

    .languages a {
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4em 1em;
      font-size: 1em;
	  font-weight: bold;
      background: rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 8px;
	  margin: 4px;
      backdrop-filter: blur(10px);	 	  
      transition: background 0.2s ease, transform 0.2s ease; /* smoother */
    }
    .languages a:hover {
      background: #0066CC;
    }    

    .languages img {
      width: 16px;
      height: 11px;
    }

    .blue-bar {
      background: #428bfb;
      color: white;
      padding: 8px 10px;
	  margin: 7px 0px;
    }

    .blue-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 1em;
      justify-content: space-between;
      align-items: flex-start;
    }

    .menu-box {
      flex: 1 1 65%;
      min-width: 250px;
      text-align: center;
    }

    .menu-links {
      font-size: 1em;
      margin-bottom: 0.3em;
      font-weight: 600;
    }
    .menu-links a {
      color: var(--white);
      text-decoration: none;
      margin: 0 0.5em;
      padding: 2px 8px;
      border-radius: 4px;
      transition: var(--transition);
    }

    .menu-links a:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-2px);
    }

    .alphabet-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0em;
      font-weight: bold;
      font-size: 0.85em;
      justify-content: center;
    }

    .alphabet-links a {
      color: white;
      text-decoration: none;
	  padding: 2px 8px;
	  border-radius: 4px;
    }
	
	 .alphabet-links a:hover {
      text-decoration: none;
      background: rgba(255,255,255,0.2);
    }

    .search-box {
      flex: 1 1 30%;
      min-width: 200px;
      display: flex;
      justify-content: flex-end;
    }

    .search-form {
      display: flex;
      width: 100%;
      max-width: 260px;
    }

    .search-form input {
      flex: 1;
      padding: 0.5em;
  border: 1px solid var(--border-color);
  border-right: none;
      border-radius: 4px 0 0 4px;
    }

    .search-form button {
      padding: 0.5em 1em;
      background: #333;
      color: white;
      border: 1px solid #333;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    main {
      display: flex;
      justify-content: center;
      flex: 1;
    }

    .main-content {
      color: var(--dark-gray);
      margin-bottom: 20px;
      font-size: 14px;
     /* border-bottom: 3px solid var(--primary-orange); */
      flex: 1;
      padding : 0px 10px 10px 10px;
    }

    .body-container {
      display: flex;
      flex-wrap: nowrap;
      max-width: var(--max-width);
      width: 100%;
      border-radius: var(--border-radius);
      overflow: hidden;
      min-height: 500px;
	  margin-bottom : 8px;
    }

    nav {
      width: 200px;
	  background: #428bfb;
      padding: 5px;
      min-width: 200px;
      flex-shrink: 0;
    }

    .extra {
      width: 200px;
      background: #428bfb;
      padding: 5px;
      min-width: 200px;
      flex-shrink: 0;
    }

    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 1em;
    }

    @media (max-width: 1100px) {
      .header-top,
      .blue-inner {
        flex-direction: column;
        align-items: center;
      }

      .search-box {
        justify-content: center;
      }

      .search-form {
        max-width: 100%;
      }

      .menu-box {
        text-align: center;
      }

      .body-container {
        flex-direction: column;
      }

      nav,
      .extra {
        width: 100%;
        max-width: 320px;
    margin: 0 auto;
      }
    }
    .menu-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .menu-list li {
      margin-bottom: 4px;
    }

    .menulink {
      display: block;
      color: var(--white);
      text-decoration: none;
      padding: 2px 2px;
      border-radius: 4px;
      font-weight: 500;
      transition: var(--transition);
      border-left: 6px solid transparent;
    }

    .menulink:hover {
      background: rgba(255,255,255,0.2);
    }
    .menulink:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

    .menuheader {
      background: #f25e07;
      color: var(--white);
      font-weight: 700;
      font-size: 16px;
      margin: 5px -5px 5px -5px;
      padding: 2px 1px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .menuheader:first-child {
      margin-top: 0;
    }

h1,
h2,h3 {
	text-align: center;
	background: #EE6212;
	color: #FFF;
	font-weight: 700;
	font-size: 16px;
	
	margin-bottom: 8px;
	padding: 2px;
}
h3 {
	color: #FFF;
	font-size: 16px;
}
.news-section ul {
	/* Adds indentation to the list, replacing   */
	padding-left: 10px;
	list-style: none;
	/* Removes default browser margin */
	margin-top: 0;
	margin-bottom: 1em;
	color : white;
	font-size: 14px;
	/* Creates space between year groups, replacing <br><br> */
}

.news-section h3 {
	/* Removes default browser margin to tighten space between year and list */
	margin-bottom: 0.5em;
	padding-left: 10px;
}
.specname {
	width: 150px;
	padding-left: 0;
	float: left;
	line-height: 22px;
}

.specval {
	font-weight: 700;
	width: 150px;
	line-height: 22px;
	padding: 5px;
}

.font-specs {
  display: grid;
  grid-template-columns: 150px 200px; /* To: Fixed pixel values */
  gap: 4px 4px; /* 8px space between rows, 16px between columns */
  align-items: left; /* Vertically aligns the content in each row */
  margin-top:20px;
}

.font-specs dt {
  text-align: left; /* Aligns the term to the right for a clean edge */
}

.font-specs dd {
  /* The <dd> elements have a default margin-left we should remove */
  margin: 0;
}
.font-specs a:hover {
    color :Black;
}
.font-specs dt::after {
  content: ":";
}
dt {
	width: 150px;
}

dd {
	font-weight: 700;
	width: 200px;
}
.font-specs,
.copyright,
.download-btn {
  margin-bottom: 1.5em; /* Adjust spacing as needed */
}
.specval a {
	color: #3B81DE;
}
.specval a:hover {
    color :Black;
}
.floatright {
	float: right;
	margin-right: 20px;
	margin-top: 8px;
	color: #FFF;
	font-weight: 700;
}

.responsive-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
}
.responsive-image2 {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

.font-card {
  background: #fff;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.font-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  background: #ddd;
  padding: 4px;
  border-radius: 4px;
  font-weight: bold;
}
.font-header a:hover {
  color: #F25E07;
}
.font-info-left {
  display: flex;
  flex-direction: column;
}
.font-info-left:hover {
  color: #000
}
.font-name {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}
.font-author {
  font-size: 14px;
  color: #666;
  margin-top: 2px;
  text-decoration: none;
}
.font-category {
  font-size: 14px;
  color: #444;
  font-style: italic;
  white-space: nowrap;
  font-weight: bold;
}
.font-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.font-meta a:hover {
  background-color: #E75A1F;
}
.preview-img {
  max-height: 60px;
  margin-right: 15px;
}

.download-btn {
  background-color: #2c2c2c; /* Very dark gray */
  color: white;
  border: none;
  padding: 12px 24px; /* Increased padding for better presence */
  margin: 5px 15px; /* More vertical margin for breathing room */
  font-size: 16px; /* Slightly larger text */
  cursor: pointer;
  border-radius: 6px; /* Slightly more rounded corners */
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* Stronger text shadow */
  box-shadow: 0 3px 8px rgba(0,0,0,0.2); /* Add depth with shadow */
  transition: all 0.2s ease; /* Smooth transitions */
  display: inline-block; /* Better control over positioning */
  min-width: 180px; /* Consistent button width */
}

.download-btn:hover {
  background-color: #1a1a1a; /* Even darker on hover */
  box-shadow: 0 5px 12px rgba(0,0,0,0.3); /* Stronger shadow on hover */
  transform: translateY(-1px); /* Subtle lift effect */
}
a.download-btn::before {
  content: "▼ "; /* Down arrow with space */
  font-size: 18px; /* Slightly larger than button text */
  font-weight: bold;
  margin-right: 8px; /* Space between icon and text */
}

.download-btn:active {
  transform: translateY(0); /* Return to original position when clicked */
  box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Reduced shadow when pressed */
}

.info-btn {
  background-color: #2c2c2c; /* Very dark gray */
  color: white;
  border: none;
  padding: 5px 5px; /* Increased padding for better presence */
  margin: 5px 10px; /* More vertical margin for breathing room */
  font-size: 16px; /* Slightly larger text */
  cursor: pointer;
  border-radius: 6px; /* Slightly more rounded corners */
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* Stronger text shadow */
  box-shadow: 0 3px 8px rgba(0,0,0,0.2); /* Add depth with shadow */
  transition: all 0.2s ease; /* Smooth transitions */
  display: inline-block; /* Better control over positioning */
  min-width: 100px; /* Consistent button width */
}

.info-btn:hover {
  background-color: #1a1a1a; /* Even darker on hover */
  box-shadow: 0 5px 12px rgba(0,0,0,0.3); /* Stronger shadow on hover */
  transform: translateY(-1px); /* Subtle lift effect */
}

.section-box {
  background: var(--white);         /* or #fff */
  border-radius: var(--border-radius); /* from your :root */
  padding: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.rounded4
{
    font-weight:700;
    color:#FFF;
    width:190px;
    line-height:20px;
    margin:0 1px 0 1px;
    padding:1px 5px 3px 5px;
    border-radius:4px;
      text-decoration: none;
}
.orange
{
        background-color:#C4500E;
}
.blue
{
        background-color:#2573DA;
}
    .paging {
      font-weight: bold;
      text-align: center;
      padding: 10px;
    }
    a
{
    text-decoration:none;
    color:#336FBE;
}
a:hover
{
    color:#FFF;
}
.linkstuff
{
    background-color:#BBB;
    font-weight:700;
    padding:3px;
    margin:2px;
    text-align:left;
    width: 400px;

  display: flex;
  justify-content: space-between; /* Optional: spreads them nicely */
  align-items: center;            /* Aligns vertically */
  margin-bottom: 4px;             /* Optional: spacing between rows */

    
}
.detailleft
{
    float:left;
    padding-left:4px;
}
.detailright
{
    text-align:right;
    padding-right:4px;
  
}
.supported-characters ul {
  
  padding-left: 0;
  margin-left: 20;
}

.supported-characters li {
  margin-bottom: 0.25em;
  margin-left: 30px;
}
.faq dt {
  font-weight: bold;
  Background-color:#BBB;
  padding:10px;
  text-align:left;
}
.faq dd {
  margin-left: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
  padding-bottom: 10px;
}
.fonts-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  max-width: 800px;
}

.font-column {
  flex: 1 1 48%;
  min-width: 200px;
  max-width: 400px;
}
.headertxt {text-align:center;background:#3B81DE;color:#FFF;font-weight:700;padding:4px;margin-bottom:8px;}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.disclaimer-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1em;
}

