/* ── 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; } }
Last updated: May 2026 • Effective immediately
By accessing or using any service provided by PACI live TV streaming Ltd. (“Company”, “we”, “us”, or “our”), you confirm that you have read, understood, and agree to be bound by these Terms and Conditions (“Terms”).
If you do not agree with any part of these Terms, you must not access or use our services. Use of the service constitutes full acceptance of all terms outlined here.
PACI live TV streaming provides an Internet Protocol Television (live TV streaming) streaming service including live TV channels, video-on-demand (VOD) content, and related media services delivered over the internet.
You are solely responsible for maintaining the confidentiality of your account credentials. Notify us immediately of any unauthorised access at support@watchlivetvnow.com.
You agree not to:
All subscriptions are billed in advance for the selected period. Payments are processed securely and are non-refundable once service access has been granted, except as required by law.
We reserve the right to modify pricing with reasonable advance notice. Continued use after a price change constitutes acceptance.
All content streamed through our platform — including live channels, movies, and series — is owned by their respective copyright holders. PACI live TV streaming does not claim ownership of third-party content.
Our website, platform design, branding, and software are the intellectual property of PACI live TV streaming Ltd. and may not be reproduced, copied, or distributed without written permission.
To the fullest extent permitted by applicable law, PACI live TV streaming shall not be liable for any indirect, incidental, special, consequential, or punitive damages, including but not limited to loss of data, revenue, or service interruptions.
Our total aggregate liability shall not exceed the amount paid by you in the three (3) months preceding the event giving rise to any claim.
We reserve the right to suspend or terminate your account at any time, without prior notice, for conduct that violates these Terms, is fraudulent, abusive, or otherwise harmful to the service or other users.
Upon termination, your right to access the service ceases immediately. Any remaining subscription period is forfeited and non-refundable unless otherwise required by law.
The service is provided on an “as is” and “as available” basis. We make no warranties, express or implied, regarding availability, reliability, accuracy, or fitness for a particular purpose. Service interruptions due to maintenance, technical faults, or third-party issues do not constitute a breach of these Terms.
These Terms are governed by the laws of England and Wales. Any disputes shall be subject to the exclusive jurisdiction of the courts of England and Wales. If any provision is found unenforceable, the remaining provisions continue in full force.
For any questions regarding these Terms, please contact us at:
Email: support@watchlivetvnow.com
WhatsApp: +44 7537 105407