
  /* CSS Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Root Variables */
  :root {
    --primary-color: #001f3f;
    --secondary-color: #6a11cb;
    --accent-color: #39ff14;
    --highlight-color: #ffffff;
    --background-gradient: linear-gradient(to bottom, #001f3f, #6a11cb);
    --font-family: 'Roboto', sans-serif;
    --title-font-size: 2.5rem;
    --subtitle-font-size: 2rem;
    --text-font-size: 1rem;
    --code-bg: rgba(0, 0, 0, 0.7);
    --code-color: #39ff14;
    --table-header-bg: #001f3f;
    --table-header-color: #ffffff;
    --table-row-bg: #f5f5f5;
    --table-row-color: #000000;
    --transition-speed: 0.3s;
    --max-width: 1200px;
    --particle-color: rgba(57, 255, 20, 0.7);
  }

  /* Body Styling */
  body {
    font-family: var(--font-family);
    background: var(--background-gradient);
    color: var(--highlight-color);
    line-height: 1.6;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
  }

  /* Container */
  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    position: relative;
    z-index: 1;
  }

  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: bold;
  }

  h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
  }

  h2 {
    font-size: 2.5rem;
    margin-top: 40px;
  }

  h3 {
    font-size: 2rem;
    margin-top: 30px;
  }

  h4 {
    font-size: 1.75rem;
    margin-top: 25px;
  }

  /* Paragraphs */
  p {
    font-size: var(--text-font-size);
    margin-bottom: 20px;
    text-align: justify;
  }

  /* Links */
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed);
  }

  a:hover {
    color: var(--highlight-color);
  }

  /* Highlight Text */
  .highlight {
    color: var(--accent-color);
  }

  /* Code Blocks */
  pre {
    background: var(--code-bg);
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 20px;
  }

  code {
    color: var(--code-color);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
  }

  /* Tables */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }

  table th, table td {
    padding: 10px;
    text-align: left;
  }

  table th {
    background: var(--table-header-bg);
    color: var(--table-header-color);
  }

  table tr:nth-child(even) {
    background: var(--table-row-bg);
  }

  table tr:nth-child(odd) {
    background: var(--table-header-bg);
    color: var(--table-header-color);
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
  }

  .deco-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 10px;
  }

  /* Visual Impact Section */
  .visual-impact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
  }

  .visual-impact img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 10px;
    border-radius: 10px;
    transition: transform var(--transition-speed);
  }

  .visual-impact img:hover {
    transform: scale(1.1);
  }

  /* Dynamic Boxes */
  .dynamic-box {
    transition: transform 0.5s ease-in-out;
  }

  .dynamic-box:hover {
    transform: scale(1.1);
  }

  /* Particle Animation */
  @keyframes particle-animation {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, -100px); }
  }

  .particle {
    width: 10px;
    height: 10px;
    background-color: var(--particle-color);
    position: absolute;
    animation: particle-animation 5s infinite;
  }

  /* Tables */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }

  table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
  }

  table th {
    background-color: var(--table-header-bg);
    color: var(--table-header-color);
  }

  table tr:nth-child(even) {
    background-color: var(--table-row-bg);
    color: var(--table-row-color);
  }

  /* Responsive Design */
  @media (max-width: 1440px) {
    .container {
      max-width: 1100px;
    }
  }

  @media (max-width: 1200px) {
    .container {
      max-width: 1000px;
    }
  }

  @media (max-width: 1024px) {
    .container {
      max-width: 900px;
    }
    h1 {
      font-size: 2.5rem;
    }
    h2 {
      font-size: 2.2rem;
    }
    h3 {
      font-size: 1.8rem;
    }
    p {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 768px) {
    .container {
      padding: 15px;
    }
    h1 {
      font-size: 2rem;
    }
    h2 {
      font-size: 1.75rem;
    }
    h3 {
      font-size: 1.5rem;
    }
    p {
      font-size: 0.9rem;
    }
    .visual-impact img {
      width: 120px;
      height: 120px;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 10px;
    }
    h1 {
      font-size: 1.75rem;
    }
    h2 {
      font-size: 1.5rem;
    }
    h3 {
      font-size: 1.25rem;
    }
    p {
      font-size: 0.85rem;
    }
    .visual-impact img {
      width: 100px;
      height: 100px;
    }
  }

  @media (max-width: 320px) {
    .container {
      padding: 5px;
    }
    h1 {
      font-size: 1.5rem;
    }
    h2 {
      font-size: 1.25rem;
    }
    h3 {
      font-size: 1rem;
    }
    p {
      font-size: 0.8rem;
    }
    .visual-impact img {
      width: 80px;
      height: 80px;
    }
  }

  /* Floating Elements */
  .floating-element {
    position: relative;
    display: inline-block;
    transition: transform var(--transition-speed);
  }

  .floating-element:hover {
    transform: translateY(-10px);
  }

  /* Particle Container */
  .particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }

  /* Code Preview */
  .code-preview {
    background: var(--code-bg);
    border-left: 5px solid var(--accent-color);
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow-x: auto;
  }

  /* Prompt Text */
  .prompt-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--highlight-color);
  }

