@import url('https://fonts.cdnfonts.com/css/ocr-a-std');

html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: clip;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }
/* Root variables for color scheme */
:root {
    --primary-blue: #2563eb;
    --light-blue: #60a5fa;
    --lighter-blue: #dbeafe;
    --accent-blue: #1d4ed8;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  /* Reset and base styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #dbeafe;
    color: var(--gray-700);
    line-height: 1.6;
    min-height: 100vh;
  }
  
  /* Container and layout */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  /* Header styles */
  header {
    background: #2563eb;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 3px 11px 3px 4px rgba(0, 0, 0, 0.05);
  }
  
  .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Typography */
  h1 {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
  }
  h1.title{
    font-family: 'OCR A Std', sans-serif;
    color: #f1f5f9;
    /* box-shadow: 0px 20px 17px #1e293b; */
    /* border: #000000; */
}
.subtitle{
    color: white;
}
  
  h2 {
    font-size: 2rem;
    color: var(--gray-800);
    margin: 2rem 0 1rem;
    font-weight: 600;
  }
  
  h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
  }
  
  p {
    margin-bottom: 1rem;
    color: #1e293b;
  }
  
  /* Links */
  a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  a:hover {
    color: var(--light-blue);
  }
  
  /* Base URL display */
  .base-url {
    color: #dbeafe;
    font-size: 1.1rem;
    font-family: "Monaco", "Consolas", monospace;
    background: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}
  
  /* Sections */
  .section {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
  }

  .emoticon-grid{
    display: flex;
  }
  .emoticon-item{
    font-size: 1rem;
    margin-left: 1vw;
    color: white;
    padding: 10px;
    border-radius: 20px;
    background: #60a5fa;
  }
  .emoticon-item:hover{
    box-shadow: 0 1px 10px 8px rgba(5, 30, 141, 0.05);
  }
  /* Endpoints */
  .endpoint {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  .method {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
  }
  
  .url {
    color: var(--accent-blue);
    font-family: "Monaco", "Consolas", monospace;
    margin-left: 1rem;
    font-size: 0.95rem;
  }
  
  /* Response blocks */
  .response-block {
    background: #1e293b;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: "Monaco", "Consolas", monospace;
    overflow-x: auto;
    color: #27b543;
}
  
  .response-block pre {
    margin: 0;
    white-space: pre-wrap;
  }
  
  /* Badges */
  .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0.5rem;
  }
  
  .badge.required {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
  }
  
  .badge.optional {
    background: var(--lighter-blue);
    color: var(--primary-blue);
    border: 1px solid var(--light-blue);
  }
  
  /* Tables */
  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1rem 0;
  }
  
  th, td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--gray-200);
  }
  
  th {
    background: var(--gray-100);
    color: var(--gray-800);
    font-weight: 600;
  }
  
  tr:hover {
    background: var(--gray-50);
  }
  
  /* GitHub section */
  .github-section {
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
  }
  
  .github-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .github-buttons a {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }
  
  .github-buttons a:hover {
    background: var(--light-blue);
  }
  
  /* Accordion styles */
  .accordion {
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    margin: 1rem 0;
    background: var(--white);
  }
  
  .accordion-header {
    background: var(--gray-100);
    color: var(--gray-800);
    padding: 1rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    border: none;
    border-radius: 6px 6px 0 0;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .accordion-header:hover {
    background: var(--lighter-blue);
  }
  
  .accordion-content {
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .accordion-content ul {
    list-style: none;
    padding: 0;
  }
  
  .accordion-content li {
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background: var(--gray-50);
  }
  
  /* Footer */
  footer {
    /* background: var(--white); */
    background: #000000;   
    font-family: 'OCR A Std', sans-serif;
    /* padding: 2rem 0; */
    text-align: center;
    color: var(--gray-700);
    /* border-top: 1px solid var(--gray-200); */
    margin-top: 3rem;
  }
  .footer-para{
    color: white;
    margin-bottom: 0;
  }
  
  /* Creator info */
  .creator-info {
    background: #ffffff;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
  }
  .creator-info:hover{
    box-shadow: 0 1px 20px 2px #1e293b;
  }
  
  .creator-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--light-blue);
    object-fit: cover;
  }
  .profile-image:hover{
    box-shadow: 0 1px 20px 2px #1e293b;
  }
  
  .profile-info {
    flex: 1;
    min-width: 200px;
  }
  
  .creator-name {
    font-family: 'OCR A Std', sans-serif;
    font-size: 4vw;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
  }
  
  /* Social links */
  .social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .social-links a {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: var(--lighter-blue);
    color: var(--primary-blue);
    transition: all 0.2s ease;
  }
  
  .social-links a:hover {
    background: var(--light-blue);
    color: var(--white);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    .section {
      padding: 1.5rem;
    }
    
    .endpoint {
      padding: 1rem;
    }
    
    .creator-profile {
      gap: 1rem;
      justify-content: center;
      text-align: center;
    }
    
    .profile-info {
      width: 100%;
    }
    
    .social-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.75rem;
    }
    
    .method {
      /* display: block; */
      margin-bottom: 0.5rem;
    }
    
    .url {
      /* margin-left: 0;
      display: block; */
      word-break: break-all;
    }
    
    .badge {
      display: block;
      margin: 0.5rem 0;
    }
    .emoticon-grid{
        display: block;
    }
    .emoticon-item{
        background: white;
        color: #1e293b;
        padding: 0;
        margin: 0;
    }
  }