 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        /* Navigation Styling */
        nav {
            background: #2c3e50;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
        }

        .menu {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .menu li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        .menu li a:hover {
            color: #3498db;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            height: 3px;
            width: 25px;
            background: white;
            margin: 4px 0;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #2c3e50;
                flex-direction: column;
                padding: 15px 0;
                text-align: center;
            }

            .menu.active {
                display: flex;
            }

            .hamburger {
                display: flex;
            }
        }

        /* Header Styling */
        header {
            text-align: center;
            padding: 50px 20px;
            /* background: linear-gradient(135deg, #3498db, #2ecc71); */
            /* background-color: #353935; */

              background: linear-gradient(135deg, #47687c, #5d5f1b);

            color: white;
        }

        header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        header p {
            font-size: 1.2em;
            opacity: 0.9;
        }

        /* Make Rocket Icon Red */
        .fa-rocket {
            color: #ff0000; /* Red color for rocket icons */
        }

        /* Container Styling */
        container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Details and Summary Styling */
        details {
            margin: 20px 0;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

 summary {
            padding: 15px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background 0.3s;
            position: relative; /* Added for arrow positioning */
        }

        summary:hover {
            background: #e0e0e0;
        }

     

        details[open] summary {
            background: #d8bc05;
            color: white;
        }

        details[open] summary .fa-rocket {
            color: #ff0000; /* Ensure rocket stays red when summary is open */
        }

        details > div, details > p, details > ol, details > ul {
            padding: 20px;
        }

        /* Sub-sections and Lists */
        .sub-steps, .hosting-options {
            display: grid;
            gap: 20px;
        }

        .sub-step, .hosting-card {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .hosting-card {
            border-left: 4px solid #3498db;
        }

        .checklist {
            list-style: none;
            padding-left: 0;
        }

        .checklist li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .checklist li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #2ecc71;
        }

        /* Tips and Warnings */
        .tip, .warning {
            padding: 15px;
            margin: 15px 0;
            border-radius: 5px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .tip {
            background: #e8f4f8;
            border-left: 4px solid #3498db;
        }

        .tip::before {
            content: "\f0eb";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #3498db;
        }

        .warning {
            background: #fef8e7;
            border-left: 4px solid #e74c3c;
        }

        .warning::before {
            content: "\f071";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #e74c3c;
        }

        /* Code Blocks */
        .code-block {
            background: #2d2d2d;
            color: #f8f8f2;
            padding: 15px;
            border-radius: 5px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
            overflow-x: auto;
        }

        /* Footer Styling */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin-top: 40px;
        }

        footer p {
            margin: 10px 0;
        }

        /* Button Styling */
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin: 5px;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #2980b9;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2em;
            }

            .sub-steps, .hosting-options {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 769px) {
            .sub-steps, .hosting-options {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

          /* Down Arrow Styling */
        .arrow-btn {
            position: absolute;
            right: 15px;
            font-size: 1em;
            color: inherit; /* Inherits color from summary */
            transition: transform 0.3s ease;
        }

        details[open] summary .arrow-btn {
            transform: rotate(180deg); /* Rotate arrow when open */
        }

          #icon_blink {
      animation: blinker 1s linear infinite;
      color: red;
      font-size: 24px;
      font-weight: bold;
    }

    @keyframes blinker {
      50% {
        opacity: 0;
      }
    }

    

      #popupOverlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: none; /* hidden by default */
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Popup box */
    #popupBox {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      animation: fadeIn 0.4s ease;
    }

    #popupBox h2 {
      margin-top: 0;
      color: #333;
    }

    #popupBox p {
      color: #555;
    }

    .popup-btn {
      margin: 10px 5px 0;
      padding: 10px 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 15px;
    }

    .btn-visit {
      background: #007bff;
      color: #fff;
    }

    .btn-close {
      background: #ccc;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: scale(0.9);}
      to {opacity: 1; transform: scale(1);}
    }