body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: url('C:\Users\krish\Downloads\websitebackground.jpg') no-repeat center center fixed;
      background-size: cover;
      color: #fff;
    }

    header {
      background: rgba(0, 0, 0, 0.7);
      padding: 20px;
      text-align: center;
    }

    header h1 {
      font-family: 'Bangers', cursive;
      font-size: 3rem;
      margin: 0;
      color: #ff0055;
      letter-spacing: 2px;
    }

    nav ul {
      list-style: none;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    nav a {
      text-decoration: none;
      color: #fff;
      font-weight: 600;
    }

    .hero {
      text-align: center;
      padding: 80px 20px 40px;
      background: rgba(0, 0, 0, 0.6);
    }

    .hero h2 {
      font-size: 2.5rem;
      font-family: 'Bangers', cursive;
      color: #00ffd9;
    }

    .subscribe-button {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      background: #ff0055;
      color: white;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: 0.3s;
    }

    .subscribe-button:hover {
      background: #ff3377;
    }

    .profile-image {
      text-align: center;
      margin: 40px 0;
    }

    .profile-image img {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 4px solid #00ffd9;
      box-shadow: 0 0 15px #00ffd9;
    }

    .cover-gallery {
      padding: 40px 20px;
      background: rgba(0, 0, 0, 0.7);
      text-align: center;
    }

    .cover-gallery h3 {
      font-size: 2rem;
      color: #fff;
      margin-bottom: 20px;
    }

    .gallery {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .gallery img {
      width: 250px;
      border-radius: 10px;
      transition: transform 0.3s;
      box-shadow: 0 0 10px #333;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    footer {
      background: rgba(0, 0, 0, 0.8);
      padding: 20px;
      text-align: center;
    }

    .social-links a {
      margin: 0 10px;
      color: #00ffd9;
      text-decoration: none;
    }
