
        :root { --primary-gold: #d4af37; --secondary-red: #8a1c1c; --bg-dark: #121212; --bg-card: #1e1e1e; --text-light: #e0e0e0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }
        
        header nav { background-color: rgba(0, 0, 0, 0.95); padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 2px solid var(--primary-gold); box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .container { width: 90%; margin: auto; max-width: 1200px; }
        .nav-content { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 26px; font-weight: bold; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 1px; text-decoration: none;}
        .nav-links { display: flex; align-items: center; }
        .nav-links a { color: #fff; text-decoration: none; margin-left: 20px; font-weight: 500; cursor: pointer; transition: color 0.3s; font-size: 0.95rem; }
        .nav-links a:hover { color: var(--primary-gold); }

        section { padding: 100px 0 60px; border-bottom: 1px solid #222; }
        h1, h2 { color: var(--primary-gold); text-transform: uppercase; margin-bottom: 30px; text-align: center; }
        h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--secondary-red); margin: 15px auto 0; }
        
        /* Policy Text Styles */
        .policy-text { background: var(--bg-card); padding: 40px; border-radius: 5px; border: 1px solid #333; margin-bottom: 50px; }
        .policy-text h3 { color: #fff; border-bottom: 1px solid #444; padding-bottom: 10px; margin-top: 30px; }
        .policy-text p { margin-bottom: 15px; color: #ccc; text-align: justify; }

        /* Support Packages */
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
        .card { background: var(--bg-card); padding: 35px; border-radius: 5px; border: 1px solid #333; text-align: center; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
        .card:hover { border-color: var(--primary-gold); transform: translateY(-5px); }
        .card h3 { color: var(--primary-gold); font-size: 1.5rem; margin-top: 0; }
        .card .price { font-size: 1.2rem; font-weight: bold; color: #fff; margin: 10px 0; display: block; }
        .card .duration { color: var(--secondary-red); font-weight: bold; font-size: 1.1rem; }

        /* Payment Warning Section */
        .payment-warning { background: #2a0a0a; border: 2px solid var(--secondary-red); padding: 30px; border-radius: 8px; text-align: center; margin: 40px 0; }
        .payment-warning h3 { color: #ff4d4d; font-size: 1.8rem; margin-top: 0; text-transform: uppercase; }
        .payment-warning p { color: #fff; font-size: 1.1rem; }
        .example-image { max-width: 100%; height: auto; border: 3px solid #fff; margin-top: 20px; box-shadow: 0 0 15px rgba(0,0,0,0.7); }
        
        /* Alternative Payment Notice */
        .alt-notice {
            background: rgba(212, 175, 55, 0.1); 
            border: 1px solid var(--primary-gold); 
            padding: 20px; 
            border-radius: 5px; 
            text-align: center; 
            margin-bottom: 40px; 
            max-width: 800px;
            margin-left: auto; 
            margin-right: auto;
        }
        .alt-notice p { color: #fff; font-size: 1.1rem; margin: 0; }
        .alt-notice a { color: var(--primary-gold); font-weight: bold; text-decoration: underline; }

        .script-container { text-align: center; margin: 40px 0; padding: 20px; background: #1a1a1a; border-radius: 5px; }

        footer { text-align:center; padding: 40px; color: #777; background: #080808; border-top: 1px solid #222; }
        .footer-links a { color: #aaa; text-decoration: none; margin: 0 10px; font-size: 0.9rem; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary-gold); }
    </style>
</head>
<body>