  * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #1a2332, #2d3748);
      color: #e2e8f0;
      padding: 20px;
      min-height: 100vh;
      position: relative;
    }
    
        #logo {
      display: block;
      margin: 0 auto 0px;
      width: 150px;
      opacity: 0.9;
      transition: transform 0.3s ease;
    }
    
    #logo:hover {
      transform: scale(1.05);
    }

    
    /* ======================================================
   NAVBAR
====================================================== */
.navbar {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    flex-wrap: wrap;
}
.nav-title { font-size: 1.5rem; font-weight: 800; }
.nav-links { display: flex; gap: 12px; }
.nav-item {
    padding: 10px 16px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.nav-item:hover { background: rgba(255,255,255,0.25); }

/* Hamburger Menu for Mobile */
.navbar .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.navbar .hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}
@media(max-width:768px){
    .nav-links{
        display:none;
        width:100%;
        flex-direction: column;
        margin-top:10px;
        gap:5px;
    }
    .nav-links.show{ display:flex; }
    .navbar .hamburger{ display:flex; width: 49px; }
}

a {
    text-decoration: none;
    color: #ffffff;
}
    
    .container {
      max-width: 1200px;
      margin: 35px auto;
      padding: 20px;
    }

    
    h1 {
      font-family: 'Quicksand', sans-serif;
      font-size: 32px;
      text-align: center;
      color: #63b3ed;
      margin-bottom: 30px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .generate-btn {
      display: block;
      margin: 0 auto 40px auto;
      padding: 16px 32px;
      font-size: 18px;
      border: none;
      border-radius: 50px;
      background: linear-gradient(135deg, #4299e1, #3182ce);
      color: white;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .generate-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(66, 153, 225, 0.6);
    }
    
    .generate-btn:active {
      transform: translateY(1px);
    }
    
    .generate-btn i {
      margin-right: 8px;
    }
    
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }
    
    .card {
      background: rgba(45, 55, 72, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #4299e1, #63b3ed);
    }
    
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
    
    .card h2 {
      font-family: 'Quicksand', sans-serif;
      font-size: 22px;
      color: #63b3ed;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }
    
    .card h2 i {
      margin-right: 10px;
      font-size: 24px;
    }
    
    .card-content {
      background: rgba(26, 32, 44, 0.5);
      border-radius: 12px;
      padding: 15px;
      margin-bottom: 20px;
    }
    
    pre {
      white-space: pre-wrap;
      font-family: 'Poppins', monospace;
      font-size: 15px;
      color: #e2e8f0;
      margin: 0;
      line-height: 1.6;
    }
    
    .use-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 15px;
      padding: 12px 20px;
      background: linear-gradient(135deg, #48bb78, #38a169);
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      width: 100%;
      transition: all 0.3s ease;
      font-size: 16px;
    }
    
    .use-btn:hover {
      background: linear-gradient(135deg, #38a169, #2f855a);
      transform: translateY(-2px);
    }
    
    .use-btn i {
      margin-right: 8px;
    }
    
    .note {
      background: rgba(45, 55, 72, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 25px;
      margin-top: 40px;
      text-align: center;
      font-size: 16px;
      color: #cbd5e0;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .note strong {
      color: #63b3ed;
      font-weight: 600;
    }
    
    .social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      background: rgba(66, 153, 225, 0.2);
      color: #63b3ed;
      text-decoration: none;
      font-weight: 500;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background: rgba(66, 153, 225, 0.4);
      transform: translateY(-3px);
    }
    
    .social-links a i {
      margin-right: 8px;
    }
    
    .footer {
      text-align: center;
      margin-top: 40px;
      padding: 20px;
      color: #a0aec0;
      font-size: 14px;
    }
    
    /* Music Player Styles */
    .music-player {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      align-items: center;
      background: rgba(45, 55, 72, 0.8);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      padding: 10px 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .music-control {
      background: none;
      border: none;
      color: #63b3ed;
      font-size: 20px;
      cursor: pointer;
      margin-right: 10px;
      transition: all 0.3s ease;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    
    .music-control:hover {
      background: rgba(99, 179, 237, 0.2);
      transform: scale(1.1);
    }
    
    .music-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-right: 10px;
    }
    
    .music-title {
      font-size: 12px;
      font-weight: 600;
      color: #e2e8f0;
      margin: 0;
    }
    
    .music-artist {
      font-size: 10px;
      color: #a0aec0;
      margin: 0;
    }
    
    .volume-control {
      display: flex;
      align-items: center;
    }
    
    .volume-slider {
      width: 60px;
      height: 4px;
      -webkit-appearance: none;
      appearance: none;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 2px;
      outline: none;
      margin: 0 5px;
    }
    
    .volume-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 12px;
      height: 12px;
      background: #63b3ed;
      border-radius: 50%;
      cursor: pointer;
    }
    
    .volume-slider::-moz-range-thumb {
      width: 12px;
      height: 12px;
      background: #63b3ed;
      border-radius: 50%;
      cursor: pointer;
      border: none;
    }
    
    .volume-icon {
      color: #63b3ed;
      font-size: 16px;
    }
    
    /* Music notification */
    .music-notification {
      position: fixed;
      top: 20px;
      right: 20px;
      background: rgba(45, 55, 72, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      z-index: 1001;
      animation: slideIn 0.5s ease-out;
    }
    
    @keyframes slideIn {
      from {
        transform: translateX(100%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }
    
    .music-notification i {
      color: #63b3ed;
      font-size: 20px;
      margin-right: 10px;
    }
    
    .music-notification-text {
      font-size: 14px;
      color: #e2e8f0;
    }
    
    @media (max-width: 768px) {
      h1 {
        font-size: 26px;
      }
      
      .generate-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px 24px;
      }
      
      #logo {
        width: 120px;
      }
      
      .grid {
        grid-template-columns: 1fr;
      }
      
      .social-links {
        flex-direction: column;
        align-items: center;
      }
      
      .social-links a {
        width: 80%;
        justify-content: center;
      }
      
      .music-player {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
      }
      
      .music-info {
        display: none;
      }
      
      .volume-slider {
        width: 40px;
      }
      
      .music-notification {
        top: 10px;
        right: 10px;
        left: 10px;
      }
    }