/* ── reset ── */ .pgx, .pgx * { box-sizing: border-box; margin: 0; padding: 0; } .pgx a { color: #F08321; text-decoration: none; } .pgx a:hover { text-decoration: underline; }/* full-width breakout from WP content column */ .pgx-fw { width: 100vw; position: relative; left: 50%; transform: translateX(-50%); }/* ── hero ── */ .pgx-hero { background: linear-gradient(145deg, #1a1a08 0%, #0d0d00 100%); padding: 72px 24px 56px; text-align: center; } .pgx-hero-badge { font-family: ‘JetBrains Mono’, monospace; font-size: 9px; letter-spacing: 3px; color: rgba(240,131,33,.45); text-transform: uppercase; margin-bottom: 14px; display: block; } .pgx-hero-title { font-family: ‘Germania One’, display; font-size: clamp(26px, 5vw, 46px); color: #F08321; letter-spacing: 4px; text-transform: uppercase; text-shadow: 0 0 28px rgba(240,131,33,.3); margin-bottom: 14px; line-height: 1.1; } .pgx-hero-sub { font-family: ‘JetBrains Mono’, monospace; font-size: 10px; letter-spacing: 2px; color: rgba(240,131,33,.38); text-transform: uppercase; } /* decorative LED dots in hero */ .pgx-leds { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; } .pgx-led { width: 7px; height: 7px; border-radius: 50%; } .pgx-led.r { background: #DC2626; box-shadow: 0 0 6px #DC2626; animation: ledR 1s step-start infinite; } .pgx-led.a { background: #F08321; box-shadow: 0 0 6px #F08321; animation: ledA 2s ease-in-out infinite; } .pgx-led.g { background: #16A34A; box-shadow: 0 0 6px #16A34A; animation: ledG 1.4s ease-in-out infinite; } @keyframes ledR { 0%,49%{opacity:1}50%,100%{opacity:.15} } @keyframes ledA { 0%,100%{opacity:1}50%{opacity:.3} } @keyframes ledG { 0%,100%{opacity:1}50%{opacity:.25} }/* ── body container ── */ .pgx-body { max-width: 880px; margin: 0 auto; padding: 52px 24px 72px; background: #f5f3ec; }/* ── section ── */ .pgx-sec { margin-bottom: 44px; } .pgx-sec:last-child { margin-bottom: 0; } .pgx-sec-title { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #5a5030; padding-left: 14px; border-left: 3px solid #F08321; margin-bottom: 18px; font-family: ‘JetBrains Mono’, monospace; }/* ── card ── */ .pgx-card { background: #ffffff; border-radius: 10px; padding: 24px 28px; border: 1px solid #e8e4d8; box-shadow: 0 2px 14px rgba(0,0,0,.05); margin-bottom: 12px; } .pgx-card p { font-size: 14px; color: #444; line-height: 1.8; margin-bottom: 14px; } .pgx-card p:last-child { margin-bottom: 0; } .pgx-card h4 { font-size: 13px; font-weight: 600; color: #2a2010; margin-bottom: 8px; margin-top: 16px; } .pgx-card h4:first-child { margin-top: 0; } .pgx-card ul, .pgx-card ol { padding-left: 22px; margin: 8px 0 14px; } .pgx-card li { font-size: 14px; color: #444; line-height: 1.75; margin-bottom: 6px; } .pgx-card strong { color: #2a2010; font-weight: 600; }/* dark info card */ .pgx-card-dark { background: linear-gradient(145deg, #1e1c08, #0d0d00); border: 1px solid rgba(240,131,33,.12); border-radius: 10px; padding: 24px 28px; margin-bottom: 12px; } .pgx-card-dark p, .pgx-card-dark li { font-family: ‘JetBrains Mono’, monospace; font-size: 12px; color: rgba(240,131,33,.65); line-height: 1.75; } .pgx-card-dark .pgx-lcd-val { font-size: 20px; font-weight: 700; color: #F08321; text-shadow: 0 0 10px rgba(240,131,33,.4); }/* grid helpers */ .pgx-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } .pgx-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; } @media(max-width:600px) { .pgx-2col, .pgx-3col { grid-template-columns: 1fr; } }/* icon card */ .pgx-icon-card { background: #fff; border: 1px solid #e8e4d8; border-radius: 10px; padding: 24px 20px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.05); transition: transform .2s, box-shadow .2s; } .pgx-icon-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.09); } .pgx-icon-card i { font-size: 28px; color: #F08321; margin-bottom: 12px; display: block; } .pgx-icon-card h4 { font-size: 12px; font-weight: 700; color: #2a2010; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; font-family: ‘JetBrains Mono’, monospace; } .pgx-icon-card p { font-size: 13px; color: #666; line-height: 1.65; }/* stat card */ .pgx-stat { background: linear-gradient(145deg, #1e1c08, #0d0d00); border: 1px solid rgba(240,131,33,.12); border-radius: 10px; padding: 24px 20px; text-align: center; } .pgx-stat-num { font-family: ‘Germania One’, display; font-size: 32px; color: #F08321; text-shadow: 0 0 14px rgba(240,131,33,.4); margin-bottom: 6px; } .pgx-stat-label { font-family: ‘JetBrains Mono’, monospace; font-size: 9px; letter-spacing: 2px; color: rgba(240,131,33,.5); text-transform: uppercase; }/* team card */ .pgx-team-card { background: #fff; border: 1px solid #e8e4d8; border-radius: 12px; padding: 28px 20px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,.05); } .pgx-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: ‘JetBrains Mono’, monospace; font-size: 22px; font-weight: 700; color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.2); } .pgx-team-name { font-size: 14px; font-weight: 700; color: #2a2010; margin-bottom: 4px; } .pgx-team-role { font-family: ‘JetBrains Mono’, monospace; font-size: 9px; letter-spacing: 1.5px; color: #F08321; text-transform: uppercase; margin-bottom: 10px; display: block; } .pgx-team-bio { font-size: 13px; color: #666; line-height: 1.6; }/* contact form */ .pgx-form { display: flex; flex-direction: column; gap: 14px; } .pgx-field label { display: block; font-family: ‘JetBrains Mono’, monospace; font-size: 9px; letter-spacing: 2px; color: #5a5030; text-transform: uppercase; margin-bottom: 6px; } .pgx-field input, .pgx-field textarea, .pgx-field select { width: 100%; background: #f9f7f2; border: 1px solid #d8d4c8; border-radius: 8px; padding: 11px 14px; font-family: ‘Roboto’, sans-serif; font-size: 14px; color: #1a1a10; outline: none; transition: border-color .2s, box-shadow .2s; } .pgx-field input:focus, .pgx-field textarea:focus, .pgx-field select:focus { border-color: #F08321; box-shadow: 0 0 0 3px rgba(240,131,33,.1); } .pgx-field textarea { resize: vertical; min-height: 120px; } .pgx-form-btn { background: linear-gradient(145deg, #22a24a, #16A34A); border: none; border-radius: 8px; padding: 13px 28px; cursor: pointer; font-family: ‘JetBrains Mono’, monospace; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: #fff; text-transform: uppercase; box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 4px 16px rgba(22,163,74,.3); transition: transform .12s, box-shadow .12s; } .pgx-form-btn:hover { transform: translateY(-2px); } .pgx-form-btn i { margin-right: 8px; }/* ── page footer nav ── */ .pgx-footnav { background: linear-gradient(145deg, #1a1a08, #0d0d00); padding: 28px 24px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 20px; } .pgx-footnav a { font-family: ‘JetBrains Mono’, monospace; font-size: 9px; letter-spacing: 1.5px; color: rgba(240,131,33,.5); text-decoration: none; text-transform: uppercase; transition: color .2s; } .pgx-footnav a:hover { color: #F08321; text-decoration: none; } .pgx-footnav-sep { width: 1px; height: 10px; background: rgba(240,131,33,.15); } .pgx-footnav-copy { font-family: ‘JetBrains Mono’, monospace; font-size: 8px; letter-spacing: 1px; color: rgba(240,131,33,.25); text-transform: uppercase; } /* ── responsive ── */ @media(max-width:640px) { .pgx-body { padding: 36px 16px 56px; } .pgx-hero { padding: 52px 16px 40px; } .pgx-card { padding: 18px 16px; } }

Legal Document

Privacy Policy

Last updated: May 2026  •  GDPR Compliant

 
 
 

1. Introduction

PACI live TV streaming Ltd. (“we”, “us”, or “our”) is committed to protecting your personal data and respecting your privacy. This Privacy Policy explains what data we collect, how we use it, and your rights under the UK GDPR and applicable data protection law.

By using our service, you agree to the collection and use of information in accordance with this policy.

2. Data We Collect

Information You Provide

  • Name and contact details (email address, phone number)
  • Payment information (processed securely via third-party providers — we do not store card details)
  • Account credentials (username; passwords are stored in hashed form only)
  • Communications and support enquiries sent to us

Information Collected Automatically

  • IP address and approximate geographic location
  • Device type, operating system, and browser information
  • Service usage data (channels watched, connection timestamps)
  • Log files and error reports for service improvement

3. How We Use Your Data

We use collected data for the following lawful purposes:

  • Service delivery: To provide, maintain, and improve our streaming service
  • Account management: To create and manage your subscription account
  • Billing: To process payments and send invoices
  • Customer support: To respond to enquiries and resolve issues
  • Security: To detect fraud, abuse, and unauthorised access
  • Legal compliance: To meet our legal obligations

We do not sell or rent your personal data to any third parties for marketing purposes.

4. Cookies & Tracking

Our website uses cookies and similar tracking technologies to enhance user experience and analyse site traffic.

Types of Cookies We Use

  • Essential cookies: Required for the site to function (login sessions, preferences)
  • Analytics cookies: Help us understand how visitors interact with the site (e.g., Google Analytics)
  • Functional cookies: Remember your settings and preferences

You can control cookie settings through your browser. Disabling certain cookies may affect site functionality. By continuing to use the site, you consent to our use of cookies.

5. Third-Party Services

We may use trusted third-party services to operate our business. These parties have access to your data only to perform tasks on our behalf and are obligated not to disclose or use it for other purposes.

  • Payment processors: Secure handling of transactions
  • Hosting providers: Server infrastructure and data storage
  • Analytics tools: Aggregated usage statistics (anonymised)
  • Support platforms: WhatsApp Business for customer communications

Third-party services have their own privacy policies, and we encourage you to review them.

6. Data Retention

We retain your personal data for as long as necessary to fulfil the purposes outlined in this policy, or as required by law. Specifically:

  • Account data: Retained for the duration of your subscription plus 2 years
  • Billing records: Retained for 7 years as required by UK financial law
  • Support communications: Retained for 2 years after resolution

You may request deletion of your data at any time (subject to legal retention obligations).

7. Your Rights (GDPR)

Under UK GDPR, you have the following rights regarding your personal data:

  • Right of access: Request a copy of the data we hold about you
  • Right to rectification: Request correction of inaccurate data
  • Right to erasure: Request deletion of your data (“right to be forgotten”)
  • Right to restriction: Request we limit processing of your data
  • Right to portability: Receive your data in a portable format
  • Right to object: Object to processing based on legitimate interests
  • Right to withdraw consent: Withdraw consent at any time where processing is consent-based

To exercise any of these rights, contact us at support@watchlivetvnow.com. We will respond within 30 days.

8. Data Security

We implement appropriate technical and organisational measures to protect your personal data against unauthorised access, loss, destruction, or alteration, including:

  • SSL/TLS encryption for all data in transit
  • Encrypted storage of sensitive account information
  • Access controls limiting data access to authorised personnel only
  • Regular security reviews and vulnerability assessments

Despite these measures, no internet transmission is 100% secure. In the event of a data breach, we will notify affected users in accordance with applicable law.

9. Children’s Privacy

Our services are not directed at persons under the age of 18. We do not knowingly collect personal information from children. If you become aware that a child has provided us with personal data, please contact us immediately and we will take steps to remove such information.

10. Contact & Complaints

For any privacy-related enquiries or to exercise your rights, please contact:
Email: support@watchlivetvnow.com
WhatsApp: +44 7537 105407

If you are unsatisfied with our response, you have the right to lodge a complaint with the Information Commissioner’s Office (ICO) at ico.org.uk.

Home
 
About Us
 
Terms
 
Privacy Policy
 
Contact Us
 
© 2026 WatchLiveTV Now Ltd.