   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #0d0d0f; /* Pure premium dark */
            color: #e6e6e6;
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* HEADER */
        header {
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #0d0d0f;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav ul {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-btn {
            padding: 8px 18px;
            border: 1px solid #a88332; /* gold accent */
            color: #a88332;
            border-radius: 6px;
            transition: 0.2s ease;
        }

        .nav-btn:hover {
            background: #a88332;
            color: #0d0d0f;
        }

        /* MOBILE MENU */
        #hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 20px;
            background: #141416;
            padding: 20px;
            position: absolute;
            right: 40px;
            top: 70px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
        }

        #more-btn {
            cursor: pointer;
            color: #a88332;
        }

        /* HERO */
        .hero {
            height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
            background: linear-gradient(to bottom, #1a1a1c, #0d0d0f);
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 20px;
            opacity: 0.8;
            margin-bottom: 40px;
        }

        .hero-btn {
            padding: 12px 30px;
            border: 1px solid #a88332;
            border-radius: 8px;
            color: #a88332;
            font-size: 18px;
            transition: 0.2s ease;
        }

        .hero-btn:hover {
            background: #a88332;
            color: #0d0d0f;
        }

        /* FEATURES */
        .features {
            padding: 60px 40px;
            max-width: 900px;
            margin: auto;
        }

        .features h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 30px;
            color: #a88332;
        }

        .features ul {
            list-style: none;
        }

        .features li {
            padding: 20px;
            margin-bottom: 15px;
            background: #141416;
            border-radius: 10px;
            cursor: pointer;
            border: 1px solid rgba(255,255,255,0.06);
            transition: 0.2s ease;
        }

        .features li:hover {
            border-color: #a88332;
        }

        /* TESTIMONIAL */
        .testimonials {
            padding: 60px 40px;
            max-width: 900px;
            margin: auto;
        }

        blockquote {
            background: #141416;
            padding: 30px;
            border-left: 4px solid #a88332;
            border-radius: 6px;
        }

        cite {
            display: block;
            margin-top: 15px;
            opacity: 0.7;
        }

        /* COMMENTS */
        .comments {
            padding: 60px 40px;
            max-width: 900px;
            margin: auto;
        }

        .comments input, .comments textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: #0f0f11;
            border: 1px solid rgba(255,255,255,0.08);
            color: white;
            border-radius: 6px;
        }

        .submit-btn {
            padding: 12px 25px;
            background: #a88332;
            color: #0d0d0f;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s ease;
            font-weight: 600;
        }

        .submit-btn:hover {
            opacity: 0.8;
        }

        /* FOOTER */
        footer {
            padding: 25px;
            text-align: center;
            background: #0d0d0f;
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 40px;
            opacity: 0.7;
        }

        footer a {
            color: #a88332;
        }