/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
  }
  
  /* Heading */
  h1 {
    color: #ffcc00;
    margin-bottom: 40px;
    font-size: 3rem;
    text-shadow: 2px 2px 5px #000;
    letter-spacing: 1px;
  }
  
  /* Styled Ordered List */
  ol {
    width: 100%;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    list-style: none;
    padding: 0;
  }
  
  /* List Items */
  li {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    counter-increment: custom;
  }
  
  /* Custom Numbering */
  li::before {
    content: counter(custom) ". ";
    color: #00ffd5;
    font-weight: bold;
    margin-right: 10px;
  }
  
  /* Hover Style */
  li:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #00ffd5;
    padding-left: 35px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  /* Last item border remove */
  li:last-child {
    border-bottom: none;
  }
  