<?php
require_once 'includes/header.php';

$trust_items = [
    ['icon' => '🛡️', 'text' => 'UKGC Licensed Only'],
    ['icon' => '🔍', 'text' => 'Expert-Reviewed'],
    ['icon' => '⚡', 'text' => 'Same-Day Withdrawals'],
    ['icon' => '🔒', 'text' => '256-bit SSL Secured'],
    ['icon' => '🎰', 'text' => '3,000+ Games'],
];

$steps = [
    [
        'num'  => '01',
        'icon' => '🔎',
        'title'=> 'LICENCE CHECK',
        'text' => 'We verify every casino holds a valid, current UK Gambling Commission licence before it ever appears on our site.',
    ],
    [
        'num'  => '02',
        'icon' => '🎮',
        'title'=> 'HANDS-ON PLAY',
        'text' => 'Our reviewers register, deposit and play at each platform — testing games, speed, mobile performance and cashout times.',
    ],
    [
        'num'  => '03',
        'icon' => '📊',
        'title'=> 'INDEPENDENT SCORING',
        'text' => 'Each casino receives a transparent score from 1–10 based on 22 criteria. No operator can pay to improve their rating.',
    ],
];

$gallery_items = [
    [
        'img'   => 'https://images.unsplash.com/photo-1605870445919-838d190e8e1b?w=800&h=500&q=80&fit=crop',
        'alt'   => 'Casino slot machines',
        'title' => 'Slot Machines',
        'desc'  => 'Thousands of titles from top studios',
        'big'   => true,
    ],
    [
        'img'   => 'https://images.unsplash.com/photo-1642617936042-48ef4d0f7b9a?w=500&h=220&q=80&fit=crop',
        'alt'   => 'Player at slots',
        'title' => 'Live Experience',
        'desc'  => 'Real-time thrills, any device',
        'big'   => false,
    ],
    [
        'img'   => 'https://images.unsplash.com/photo-1518893063132-36e46dbe2428?w=500&h=220&q=80&fit=crop',
        'alt'   => 'Casino atmosphere',
        'title' => 'Premium Atmosphere',
        'desc'  => 'Top-tier graphics & sound',
        'big'   => false,
    ],
    [
        'img'   => 'https://images.unsplash.com/photo-1551782450-17144efb9c50?w=500&h=220&q=80&fit=crop',
        'alt'   => 'Mobile gaming',
        'title' => 'Play Anywhere',
        'desc'  => 'Optimised for mobile & tablet',
        'big'   => false,
    ],
    [
        'img'   => 'https://images.unsplash.com/photo-1612178537253-bccd437b730e?w=500&h=220&q=80&fit=crop',
        'alt'   => 'Big win',
        'title' => 'Big Jackpots',
        'desc'  => 'Progressive prizes every day',
        'big'   => false,
    ],
];

$reviews = [
    [
        'avatar' => 'https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?w=80&h=80&q=80&fit=crop&crop=face',
        'name'   => 'Oliver K.',
        'text'   => 'Found PlayOjo through UKCasa.pro and the no-wagering bonus was genuinely life-changing. Withdrew £380 the next morning, no hassle.',
    ],
    [
        'avatar' => 'https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=80&h=80&q=80&fit=crop&crop=face',
        'name'   => 'Charlotte B.',
        'text'   => 'The ratings here actually reflect reality. I\'ve tried two casinos from UKCasa.pro and both delivered exactly what was promised.',
    ],
    [
        'avatar' => 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=80&h=80&q=80&fit=crop&crop=face',
        'name'   => 'Harry M.',
        'text'   => 'Transparent, honest and genuinely useful. I trust UKCasa.pro more than any other comparison site I\'ve used.',
    ],
];

$numbers = [
    ['icon' => '⭐', 'value' => '9.9/10', 'label' => 'PlayOjo Score'],
    ['icon' => '👥', 'value' => '15 000+','label' => 'Happy Players'],
    ['icon' => '✅', 'value' => '100%',    'label' => 'UKGC Licensed'],
];

$star_svg = '<svg class="star" viewBox="0 0 24 24"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>';
?>

<!-- ==================== HERO ==================== -->
<section class="hero">
  <div class="hero-bg"></div>
  <div class="hero-overlay"></div>
  <div class="hero-glow"></div>
  <div class="hero-left">
    <div class="hero-eyebrow">
      <div class="hero-line"></div>
      <span>UK Casino Experts Since 2021</span>
    </div>
    <h1>THE BEST<br><span class="gold">UK CASINOS</span><br><span class="em">RANKED.</span></h1>
    <p class="hero-desc">UKCasa.pro independently tests and ranks every UKGC-licensed casino so you never have to gamble on where to play.</p>
    <div class="hero-btns">
      <a href="#casino" class="btn-gold">
        <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polygon points="5 3 19 12 5 21 5 3"/></svg>
        View Top Casino
      </a>
      <a href="#how-we-rate" class="btn-outline">How We Rate</a>
    </div>
    <div class="hero-badge">
      <div class="hero-badge-dot"></div>
      <div>
        <div class="hero-badge-text">PlayOjo — #1 Pick</div>
        <div class="hero-badge-sub">Rated 9.9 / 10 — <?= date('Y') ?></div>
      </div>
    </div>
  </div>
</section>

<!-- ==================== TRUST STRIP ==================== -->
<div class="trust-strip">
  <div class="container">
    <div class="trust-items">
      <?php foreach ($trust_items as $t): ?>
        <div class="trust-item">
          <span class="trust-item-icon"><?= $t['icon'] ?></span>
          <span><?= htmlspecialchars($t['text']) ?></span>
        </div>
      <?php endforeach; ?>
    </div>
  </div>
</div>

<!-- ==================== CASINO CARD ==================== -->
<section class="casino-section" id="casino">
  <div class="container">
    <div class="sec-header">
      <div class="sec-eyebrow">Editor's Choice</div>
      <h2 class="sec-title">OUR #1 CASINO FOR UK PLAYERS</h2>
      <p class="sec-sub">Independently reviewed, UKGC regulated, and rated top by over 15,000 players.</p>
    </div>

    <div class="casino-wrapper">
      <div class="casino-top">
        <!-- Logo -->
        <div class="casino-logo-box">
          <img src="assets/playojo-logo.jpg" alt="PlayOjo Casino">
        </div>

        <!-- Offer info -->
        <div class="casino-info">
          <span class="casino-label">Exclusive Offer — New Players</span>
          <div class="casino-bonus-main">100% BONUS UP TO £250</div>
          <div class="casino-bonus-sub">+ 250 Free Spins with Zero Wagering Requirements</div>
        </div>

        <!-- Score -->
        <div class="casino-meta">
          <div class="casino-score">9.9</div>
          <div class="casino-score-label">/ 10.0</div>
          <div class="casino-votes">(15 000 votes)</div>
        </div>

        <!-- Payments -->
        <div class="casino-pay-wrap">
          <img src="assets/payment-methods.png" alt="Payment methods">
          <div class="casino-pay-more">+6 more methods</div>
        </div>

        <!-- CTA -->
        <div class="casino-cta-wrap">
          <a href="https://www.playojo.com/" target="_blank" rel="noopener noreferrer">
            PLAY NOW
            <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>
          </a>
        </div>
      </div>

      <!-- Feature row -->
      <div class="casino-features">
        <div class="casino-feat">
          <div class="feat-icon">🎰</div>
          <div><div class="feat-title">3,000+ Games</div><div class="feat-desc">Slots, jackpots, live tables and more.</div></div>
        </div>
        <div class="casino-feat">
          <div class="feat-icon">⚡</div>
          <div><div class="feat-title">Same-Day Payouts</div><div class="feat-desc">Withdraw to your bank the same day.</div></div>
        </div>
        <div class="casino-feat">
          <div class="feat-icon">🛡️</div>
          <div><div class="feat-title">UKGC Certified</div><div class="feat-desc">Fully licensed and regulated in the UK.</div></div>
        </div>
        <div class="casino-feat">
          <div class="feat-icon">🎁</div>
          <div><div class="feat-title">0x Wagering</div><div class="feat-desc">Keep every penny you win from your bonus.</div></div>
        </div>
      </div>
    </div>
  </div>
</section>

<!-- ==================== HOW WE RATE ==================== -->
<section class="how-section" id="how-we-rate">
  <div class="container">
    <div class="sec-header">
      <div class="sec-eyebrow">Transparency</div>
      <h2 class="sec-title">HOW WE RATE CASINOS</h2>
      <p class="sec-sub">Three rigorous steps stand between a casino and a listing on UKCasa.pro.</p>
    </div>

    <div class="steps-row">
      <?php foreach ($steps as $step): ?>
        <div class="step">
          <div class="step-num"><?= $step['num'] ?></div>
          <div class="step-icon"><?= $step['icon'] ?></div>
          <h3><?= $step['title'] ?></h3>
          <p><?= htmlspecialchars($step['text']) ?></p>
        </div>
      <?php endforeach; ?>
    </div>
  </div>
</section>

<!-- ==================== GALLERY ==================== -->
<section class="gallery-section" id="features">
  <div class="container">
    <div class="sec-header">
      <div class="sec-eyebrow">The Experience</div>
      <h2 class="sec-title">WORLD-CLASS GAMING</h2>
      <p class="sec-sub">From classic fruit machines to immersive live studios — our top pick has it all.</p>
    </div>

    <div class="gallery-grid">
      <?php foreach ($gallery_items as $item): ?>
        <div class="gallery-item<?= $item['big'] ? ' big' : '' ?>">
          <img src="<?= $item['img'] ?>" alt="<?= htmlspecialchars($item['alt']) ?>">
          <div class="gallery-caption">
            <h4><?= htmlspecialchars($item['title']) ?></h4>
            <p><?= htmlspecialchars($item['desc']) ?></p>
          </div>
        </div>
      <?php endforeach; ?>
    </div>

    <div class="gallery-cta">
      <p>Ready to experience it yourself?</p>
      <a href="https://www.playojo.com/" target="_blank" rel="noopener noreferrer" class="btn-gold">
        Claim Bonus at PlayOjo
        <svg width="13" height="13" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>
      </a>
    </div>
  </div>
</section>

<!-- ==================== REVIEWS ==================== -->
<section class="reviews-section" id="reviews">
  <div class="container">
    <div class="sec-header">
      <div class="sec-eyebrow">Player Feedback</div>
      <h2 class="sec-title">WHAT UK PLAYERS SAY</h2>
      <p class="sec-sub">Genuine feedback from players who discovered PlayOjo through UKCasa.pro.</p>
    </div>

    <div class="reviews-layout">
      <div class="reviews-list">
        <?php foreach ($reviews as $r): ?>
          <div class="review-card">
            <div class="review-q">"</div>
            <div class="review-top">
              <img class="review-avatar" src="<?= $r['avatar'] ?>" alt="<?= htmlspecialchars($r['name']) ?>">
              <div>
                <div class="review-name"><?= htmlspecialchars($r['name']) ?></div>
                <div class="review-stars"><?= str_repeat($star_svg, 5) ?></div>
              </div>
            </div>
            <p class="review-text"><?= htmlspecialchars($r['text']) ?></p>
          </div>
        <?php endforeach; ?>
      </div>

      <div class="reviews-numbers">
        <?php foreach ($numbers as $n): ?>
          <div class="num-card">
            <div class="num-icon"><?= $n['icon'] ?></div>
            <div>
              <div class="num-value"><?= $n['value'] ?></div>
              <div class="num-label"><?= htmlspecialchars($n['label']) ?></div>
            </div>
          </div>
        <?php endforeach; ?>

        <!-- mini CTA -->
        <div style="margin-top:8px">
          <a href="https://www.playojo.com/" target="_blank" rel="noopener noreferrer" class="btn-gold" style="width:100%;justify-content:center;display:flex;gap:8px">
            Play at PlayOjo →
          </a>
        </div>
      </div>
    </div>
  </div>
</section>

<!-- ==================== PRIVACY POLICY ==================== -->
<section class="legal-section" id="privacy">
  <div class="container">
    <div class="legal-header">
      <span class="section-label">Legal Information</span>
      <h2 class="sec-title">Privacy Policy</h2>
      <p class="sec-sub">Last updated: <?= date('d/m/Y') ?></p>
    </div>
    <div class="legal-content">
      <h3>1. Data Collection</h3>
      <p>UKCasa.pro, operated by Westgate Media Ltd, collects only the data necessary for the proper functioning of our services. This may include browsing data (IP address, browser type, pages visited) through cookies and analytics tools. No personally identifiable information is collected without your explicit consent.</p>

      <h3>2. Use of Data</h3>
      <p>The data collected is used for the following purposes: improving user experience on our platform, producing anonymous traffic statistics, ensuring the security and performance of the site, and personalising displayed content.</p>

      <h3>3. Data Sharing</h3>
      <p>UKCasa.pro does not sell, exchange or transfer your personal data to third parties without your consent, except where required by law. Analytics partners process data in an anonymised manner in accordance with their own privacy policies.</p>

      <h3>4. Your Rights</h3>
      <p>Under the UK Data Protection Act 2018 and the UK GDPR, you have the right to access, rectify, delete and port your data. To exercise these rights, contact us at: <strong>hello@ukcasa.pro</strong>.</p>

      <h3>5. Security</h3>
      <p>We implement appropriate technical and organisational security measures to protect your data against unauthorised access, alteration, disclosure or destruction.</p>

      <h3>6. Changes to This Policy</h3>
      <p>UKCasa.pro reserves the right to update this Privacy Policy at any time. Changes take effect upon publication on the site.</p>
    </div>
  </div>
</section>

<!-- ==================== COOKIE POLICY ==================== -->
<section class="legal-section" id="cookie">
  <div class="container">
    <div class="legal-header">
      <span class="section-label">Legal Information</span>
      <h2 class="sec-title">Cookie Policy</h2>
      <p class="sec-sub">Last updated: <?= date('d/m/Y') ?></p>
    </div>
    <div class="legal-content">
      <h3>1. What Are Cookies</h3>
      <p>Cookies are small text files stored on your device when you visit a website. They help the website recognise your device and remember certain information about your visit.</p>

      <h3>2. How We Use Cookies</h3>
      <p>UKCasa.pro uses the following types of cookies:</p>
      <p><strong>Essential cookies:</strong> Required for the site to function properly. These cannot be disabled.</p>
      <p><strong>Analytics cookies:</strong> Help us understand how visitors interact with our site by collecting anonymous usage data.</p>
      <p><strong>Preference cookies:</strong> Remember your settings and preferences to enhance your experience on future visits.</p>

      <h3>3. Managing Cookies</h3>
      <p>You can control and manage cookies through your browser settings. Please note that disabling certain cookies may affect the functionality of the site.</p>

      <h3>4. Third-Party Cookies</h3>
      <p>Some cookies are placed by third-party services that appear on our pages, such as analytics providers. We do not control these cookies and recommend reviewing the relevant third party's cookie policy.</p>
    </div>
  </div>
</section>

<!-- ==================== TERMS & CONDITIONS ==================== -->
<section class="legal-section" id="terms">
  <div class="container">
    <div class="legal-header">
      <span class="section-label">Legal Information</span>
      <h2 class="sec-title">Terms &amp; Conditions</h2>
      <p class="sec-sub">Last updated: <?= date('d/m/Y') ?></p>
    </div>
    <div class="legal-content">
      <h3>1. Purpose</h3>
      <p>These terms and conditions govern access to and use of the UKCasa.pro website, operated by Westgate Media Ltd. By accessing the site, you agree to be bound by these terms.</p>

      <h3>2. Nature of the Service</h3>
      <p>UKCasa.pro is an independent comparison and information platform. We provide reviews of online casinos operating legally in the United Kingdom. UKCasa.pro does not offer gambling services and is not a licensed gambling operator.</p>

      <h3>3. Age Restriction</h3>
      <p>Access to this site is restricted to individuals aged 18 and over. By using this site, you confirm that you meet this age requirement.</p>

      <h3>4. Disclaimer</h3>
      <p>The information presented on UKCasa.pro is provided for informational purposes only. While we strive to keep our content accurate and up to date, we make no guarantees regarding its completeness or accuracy. UKCasa.pro shall not be held liable for any decisions made based on information published on this site.</p>

      <h3>5. External Links</h3>
      <p>UKCasa.pro contains links to third-party websites (casino operators). These links are provided for informational purposes and UKCasa.pro is not responsible for the content, policies or practices of these external sites.</p>

      <h3>6. Intellectual Property</h3>
      <p>All content on the site (text, images, logos, graphics) is protected by intellectual property law. Any unauthorised reproduction, distribution or use is strictly prohibited.</p>

      <h3>7. Responsible Gambling</h3>
      <p>UKCasa.pro promotes responsible gambling. Gambling carries risks of addiction. If you or someone you know needs help, please contact <strong>GamCare on 0808 8020 133</strong> (free, 24/7) or visit <a href="https://www.gambleaware.org/">GambleAware.org</a>.</p>

      <h3>8. Amendments</h3>
      <p>UKCasa.pro reserves the right to modify these terms at any time. Changes take effect upon publication. Continued use of the site after modification constitutes acceptance of the new terms.</p>
    </div>
  </div>
</section>

<?php require_once 'includes/footer.php'; ?>
