
          body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #121212;
            color: #f0f0f0;
            line-height: 1.6;
          }

          .top-header {
            background-color: #1e1e1e;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 50px;
            border-bottom: 2px solid #e6c780;
          }

          .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            color: #e6c780;
            font-weight: bold;
            text-transform: uppercase;
          }

          .logo img {
            height: 40px;
            margin-right: 10px;
          }

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

          nav a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
          }

          nav a:hover {
            color: #e6c780;
          }

          .header h1 {
            text-align: center;
            color: #e6c780;
            margin: 30px 20px;
            font-size: 2.5rem;
          }

          .entry-content {
            max-width: 900px;
            margin: auto;
            padding: 0 20px 60px;
          }

          h2 {
            color: #e6c780;
            margin-top: 30px;
          }

          p {
            margin-bottom: 15px;
          }

          img.aligncenter {
            display: block;
            margin: 20px auto;
            max-width: 100%;
            border-radius: 8px;
          }

          ul {
            margin-left: 20px;
          }

          li {
            margin-bottom: 10px;
          }

          .watch-button {
            display: block;
            margin: 40px auto;
            padding: 15px 30px;
            background-color: #e6c780;
            color: #000;
            font-size: 1.2rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease;
          }

          .watch-button:hover {
            background-color: #bf7d00;
          }

          footer {
            background-color: #1e1e1e;
            color: #aaa;
            text-align: center;
            padding: 20px 30px;
            font-size: 0.9rem;
            border-top: 2px solid #e6c780;
          }

          .footer-links {
            margin-top: 10px;
          }

          .footer-links a {
            color: #e6c780;
            text-decoration: none;
            margin: 0 10px;
          }

          .footer-links a:hover {
            text-decoration: underline;
          }

          h3 {
              color: #b3c1ec;
          }

          /* Mobile responsiveness */
          @media only screen and (max-width: 700px){
              nav {
                  display: none;
              }
              .logo {
                  text-align: center;
                  width: 100%;
              }
              .logo p {
                  width: 100%;
              }
              .header h1 {
                  font-size: 25px;
              }
          }
        