* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Hind Siliguri', sans-serif;
  }
  
  body {
    background: #fff5f5;
    color: #333;
    line-height: 1.6;
  }
  
  /* White Header with Logo */
  .logo-header {
    background: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .logo-container {
    padding: 10px;
    display: inline-block;
  }
  
  .logo {
    width: 250px;
    height: auto;
    object-fit: contain;
  }
  
  /* Red Content Section */
  .red-content {
    background: #d62828;
    color: white;
    padding: 30px 20px;
    text-align: center;
  }
  
  .red-content h1 {
    font-size: 28px;
    margin: 10px 0;
    color: white;
  }
  
  .red-content .bio {
    background: rgba(255,255,255,0.15);
    padding: 15px;
    border-radius: 8px;
    margin: 15px auto;
    max-width: 800px;
    font-size: 16px;
  }
  
  .red-content h2 {
    color: white;
    margin: 20px 0 10px;
    font-size: 22px;
  }
  
  .red-content h2::after {
    background: white;
  }
  
  .red-content ul li {
    color: white;
  }
  
  .red-content ul li:before {
    color: #ffffff;
  }
  ul {
    text-align: center; /* Center the text */
    max-width: 700px;
    margin: 15px auto;
    padding-left: 0; /* Remove default padding */
    list-style-type: none;
    display: inline-block; /* Make the ul only as wide as its content */
  }
  
  ul li {
    position: relative;
    padding: 8px 0;
    color: #444;
    text-align: left; /* Align text to left within centered container */
    padding-left: 25px; /* Space for custom bullet */
  }
  
  ul li:before {
    content: "•";
    color: #d62828;
    font-size: 20px;
    position: absolute;
    left: 5px; /* Position bullet closer to text */
  }
  .hashtags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
  }
  
  .hashtag {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: white;
  }
  
  /* Rest of the styles */
  .container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #ffe0e0;
    position: relative;
    overflow: hidden;
  }
  
  .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d62828, #b22222);
  }
  
  .upload-label {
    background: linear-gradient(135deg, #d62828, #b22222);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(214, 40, 40, 0.3);
  }
  
  canvas {
    margin: 20px auto;
    max-width: 100%;
    border: 2px dashed #d62828;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  button {
    margin-top: 25px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, #d62828, #b22222);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .support-text {
    text-align: center;
    margin: 20px 0;
    font-style: italic;
    color: #666;
  }
  
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #d62828, #b22222);
    color: white;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
  }
  
  @media (max-width: 768px) {
    .logo {
      width: 180px;
    }
    
    .red-content h1 {
      font-size: 22px;
    }
    
    .container {
      padding: 20px;
      margin: 20px;
    }
  }