body {
            background-color: black;
            color: #ffffff;
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        header {
            text-align: center;
            padding: 20px;
            background-color: black;
        }

        header img {
            max-width: 100px;
            margin-bottom: 10px;
        }

        header h1 {
            font-size: 2rem;
            margin: 0;
        }

        nav {
            background-color: black;
            width: 100%;
            padding: 10px 0;
            display: flex;
            justify-content: center;
        }
        nav a {
            color: #ffffff;
            text-decoration: none;
            padding: 10px 20px;
            margin: 0 5px;
            border-radius: 5px;
        }
        nav a:hover {
            background-color: #0078d7; /* Highlight on hover */
        }
        .container {
            text-align: center; /* Centers inline elements (like the <a> tag) */
        }
        .blog-link {
            display: block; /* Treat the link as a block element */
            text-align: center; /* Center the link's content */
            margin-top: 20px; /* Add some spacing above the blog link */
        }
        .blog-link a {
            color: yellow; /* Change blog link text to yellow */
            font-size: 18px;
            text-decoration: none;
        }
        .search-container {
            text-align: center;
            margin-top: 20px;
        }

        .search-container input[type="text"] {
            width: 80%;
            padding: 10px;
            margin-right: 10px;
            border-radius: 5px;
            border: 1px solid #555;
            background-color: #333;
            color: #fff;
        }

        .template-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            padding: 20px;
        }

        .template-box {
            background-color: black;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.2s, background-color 0.3s ease-in-out;
        }

        .template-box:hover {
            background-color: #333333;
            transform: scale(1.05);
        }

        .template-box h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .iframe-container {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0; /* Fullscreen */
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000; /* Ensure it's above everything else */
        }

        iframe {
            width: 90%;
            height: 90%;
            border-radius: 10px;
            border: none;
        }

        .close-btn {
            position: absolute;
            top: 20px; right: 20px;
            background-color: #0078d7;
            color: white;
            border-radius: 5px;
            padding: 10px 15px;
            cursor: pointer;
        }

        .close-btn:hover {
            background-color: #005bb5;
        }

        footer {
          text-align:center ;
          padding :10 px;background -color:#282828;}footer p{margin :0;font -size :14 px;color:#bbb;}footer a{color:#0078d7;text-decoration:none;}footer a:hover{color:#005bb5;}

/* Mobile optimized black background form */
    body {
      margin: 0;
      background-color: #000;
      color: #fff;
      font-family: system-ui, sans-serif;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 1rem;
    }
    form {
      background-color: #181818;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
      width: 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    input[type="text"] {
      padding: 12px;
      font-size: 1.1em;
      border: none;
      border-radius: 6px;
      background-color: #222;
      color: #fff;
      outline-offset: 2px;
      outline-color: #555;
    }
    input[type="text"]::placeholder {
      color: #bbb;
    }
    button {
      padding: 12px;
      font-size: 1em;
      background-color: #222;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }
    button:hover,
    button:focus {
      background-color: #333;
    }
