﻿    
        :root {
            --bg-dark: #050505;
            --bg-card: #101018;
            --neon: #00eaff;
            --neon-alt: #ff00ff;
            --text-main: #ffffff;
            --text-muted: #b3b3b3;
            --danger: #ff4b81;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }
        



body {


      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:#0D101F;
      color:#f5f5f5;
      margin:0;
      padding:0px 16px;
    }
    .faq-wrapper {
      max-width: 1200px;
      padding: 50px 50px 80px;
      margin:0;
      margin-left: 300px;
      margin-top: 20px;
    }
    
     
    
    h1 {
      font-size:2.2rem;
      margin-bottom:0.5rem;
      letter-spacing:0.04em;
      /* text-transform:uppercase; */
      text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
    }
    
    h2 {
      margin-top:3rem;
      margin-bottom:1rem;
      font-size:1.4rem;
      letter-spacing:0.05em;
      color:#22d3ee;
      text-transform:uppercase;
      text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;

    }
    
    .subtitle {
      color:#9ca3af;
      padding: 30px 0px 30px;
      font-size: 1.2rem;
      margin-bottom:2rem;
    }
    
    details {
      background:rgba(15,23,42,0.9);
      border:3px solid rgba(148,163,184,0.4);
      border-radius:10px;
      margin-bottom:12px;
      padding:14px 16px;
      transition:border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    }
        
    details[open] {
      border-color:#22d3ee;
      box-shadow:0 0 18px rgba(34,211,238,0.35);
      transform:translateY(-1px);
    }
        
    summary {
      cursor:pointer;
      list-style:none;
      font-weight:600;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
    }
   
    summary::-webkit-details-marker {
      display:none;
    }
    
    .q-label {
      font-size:1.65rem;
      
      letter-spacing:0.16em;
      color:#22d3ee;
      margin-right:6px;
    }
            
    .answer {
      margin-top:10px;
      color:#e5e7eb;
      line-height:1.6;
      font-size:1.3rem;
    }
    
    .tag {
      font-size:0.7rem;
      text-transform:uppercase;
      letter-spacing:0.16em;
      padding:2px 8px;
      border-radius:999px;
      border:1px solid rgba(148,163,184,0.6);
      color:#9ca3af;
      flex-shrink:0;
    }

    /* Arrow base style   content: "\25B7";  */ 
details summary::after {
  
  content: "\25B7"; 
  font-size: 1.9rem;
  color: #22d3ee;
  transition: transform 0.25s ease, color 0.25s ease;
  margin-left: 10px;
}


/* Rotate arrow when open */
  details[open] summary::after {
  transform: rotate(90deg);
  color: #38e8ff;
}


  .section {
    margin-top: 2.5rem;
    border: 4px solid rgba(148,163,184,0.35);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    background: rgba(10,15,25,0.7);
  }


  .section summary {
    padding: 16px 20px;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    background: rgba(15,23,42,0.9);
    color: #22d3ee;
    letter-spacing: 0.05em;
    border-bottom: 3px solid rgba(148,163,184,0.25);
  }


  .section summary::-webkit-details-marker {
    display: none;
  }


/* Larger arrow for section headers */
.section > summary::after {
  font-size: 2.9rem;
  margin-left: 14px;
}


details summary:hover::after {
  color: #67f3ff;
  text-shadow: 0 0 6px rgba(34,211,238,0.6);
}




/* Smooth slide-down animation */
details .section-content,
details .answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease;
}

/* When open, expand smoothly */
details[open] .section-content,
details[open] .answer {
  max-height: 9800px; /* large enough to fit content */
  opacity: 1;
}

.section[open] {
  border-color: #22d3ee;
  box-shadow: 0px 0 22px rgba(34, 211, 238, 0.45);
}

/* Glow for inner FAQ items */

  .section-content {
    padding: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

.section-content > details {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


.section-content > details[open] {
  border-color: #38e8ff;
  box-shadow: 0 0 14px rgba(56, 232, 255, 0.35);
}

}




.iframe_1 {
  margin-left: 10px;
  padding: 0px;
  background: #0D101F;
  font-size: 18px;
  color: #ffffff;
  font-family: Tahoma, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  
  
}

        /* HERO */
        .hero {
            background: #0D101F;
            padding: 50px 0px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -150px;
            left: 780px;
            transform: translateX(-50%);
            width: 650px;
            height: 650px;
            background: radial-gradient(circle, rgba(0,255,255,0.25) 0%, rgba(0,0,0,0) 70%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin-left: 300px;
            margin-top: 20px;
        }

        .hero h1 {
            color: #ffffff;
            font-size: 2.5rem;
            margin-bottom: 60px;
            text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
        }
        
        
        .hero h3 {
            color: #ffffff;
            font-size: 1.3rem;
            margin-bottom: 0px;
            text-shadow: 0 0 10px #00ea99, 0 0 20px #00ea99;
        }

        .hero p {
            color: #cccccc;
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 999px;
            border: 2px solid rgba(0, 234, 255, 0.4);
            color: var(--neon);
            font-size: 0.8rem;
            /* text-transform: uppercase; */
            letter-spacing: 0.12em;
            margin-bottom: 46px;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--neon);
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 6px;
            font-weight: bold;
            text-decoration: none;
            box-shadow: 0 0 15px var(--neon), 0 0 30px var(--neon);
            transition: 0.2s ease-in-out;
        }

        .btn-primary:hover {
            box-shadow: 0 0 25px var(--neon), 0 0 50px var(--neon);
            transform: translateY(-3px);
        }

        .btn-secondary {
            border: 2px solid var(--neon);
            color: var(--neon);
            padding: 14px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.2s ease-in-out;
            background: transparent;
        }

        .btn-secondary:hover {
            box-shadow: 0 0 20px var(--neon);
            transform: translateY(-3px);
        }

        main {
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 20px 80px;
        }

        section {
        	  max-width: 1600px;
            padding: 0px 200px 80px;
            
            
        }

        section h2 {
            font-size: 1.8rem;
            margin-bottom: 18px;
            text-shadow: 0 0 10px rgba(0, 234, 255, 0.4);
        }

        section p.section-intro {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 24px;
        }


   /* FEATURED PRODUCT */
        .featured-card {
            background: radial-gradient(circle at top left, rgba(0,234,255,0.15), transparent 55%),
                        radial-gradient(circle at bottom right, rgba(255,0,255,0.18), transparent 55%),
                        var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 2px solid rgba(0, 234, 255, 0.35);
            box-shadow: 0 0 25px rgba(0, 234, 255, 0.25);
            display: grid;
            grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
            gap: 24px;
        }

        .featured-tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(0, 234, 255, 0.12);
            color: var(--neon);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 10px;
        }

        .featured-title {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        .featured-rating {
            font-size: 0.95rem;
            color: #ffd966;
            margin-bottom: 10px;
        }

        .featured-rating span {
            color: var(--text-muted);
            margin-left: 6px;
        }

        .featured-desc {
            color: var(--text-muted);
            margin-bottom: 14px;
        }

        .featured-benefits {
            list-style: none;
            margin-bottom: 18px;
        }

        .featured-benefits li {
            margin-bottom: 6px;
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .featured-benefits li::before {
            content: "▹";
            color: var(--neon);
            margin-right: 6px;
        }

        .featured-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }

        .featured-note {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .featured-image {
            border-radius: 12px;
            border: 1px solid rgba(0, 234, 255, 0.3);
            background: linear-gradient(135deg, #050510, #151530);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px;
            position: relative;
            overflow: hidden;
        }

        .featured-image::before {
            content: "";
            position: absolute;
            inset: -40%;
            background: conic-gradient(from 180deg, rgba(0,234,255,0.2), transparent, rgba(255,0,255,0.2), transparent);
            opacity: 0.6;
            filter: blur(18px);
        }

        .featured-image-inner {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .featured-image-inner h3 {
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .featured-image-inner p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* TOP 10 CARDS */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .tool-card {
            background: rgba(5, 5, 20, 0.95);
            border-radius: 12px;
            padding: 18px;
            border: 1px solid rgba(0, 234, 255, 0.18);
            position: relative;
            overflow: hidden;
        }

        .tool-ribbon {
            position: absolute;
            top: 12px;
            right: -40px;
            background: linear-gradient(90deg, var(--neon-alt), var(--neon));
            color: #000;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 4px 40px;
            transform: rotate(35deg);
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
        }

        .tool-name {
            font-weight: 900;
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .tool-tagline {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .tool-rating {
            font-size: 0.9rem;
            color: #ffd966;
            margin-bottom: 8px;
        }

        .tool-rating span {
            color: var(--text-muted);
            margin-left: 4px;
        }

        .tool-features {
            list-style: none;
            margin-bottom: 10px;
        }

        .tool-features li {
            font-size: 0.85rem;
            color: var(--text-main);
            margin-bottom: 4px;
        }

        .tool-features li::before {
            content: "•";
            color: var(--neon);
            margin-right: 6px;
        }

        .tool-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            margin-top: 6px;
        }

        .tool-price {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .tool-price strong {
            color: var(--neon);
        }

        .btn-small {
            font-size: 0.85rem;
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid var(--neon);
            color: var(--neon);
            text-decoration: none;
            transition: 0.2s;
        }

        .btn-small:hover {
            background: var(--neon);
            color: #000;
            box-shadow: 0 0 15px var(--neon);
        }

        /* COMPARISON TABLE */
        .table-wrapper {
            overflow-x: auto;
            border-radius: 12px;
            border: 1px solid rgba(0, 234, 255, 0.25);
            background: rgba(5, 5, 20, 0.95);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 650px;
        }

        thead {
            background: linear-gradient(90deg, rgba(0,234,255,0.25), rgba(255,0,255,0.25));
        }

        th, td {
            padding: 10px 12px;
            font-size: 0.9rem;
            text-align: left;
        }

        th {
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.75rem;
        }

        tbody tr:nth-child(even) {
            background: rgba(15, 15, 35, 0.9);
        }

        tbody tr:nth-child(odd) {
            background: rgba(5, 5, 20, 0.9);
        }

        tbody tr:hover {
            background: rgba(0, 234, 255, 0.08);
        }

        .table-cta a {
            font-size: 0.8rem;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid var(--neon);
            text-decoration: none;
        }

       /* FAQ */
        .faq-list {
            display: grid;
            gap: 14px;
        }

        .faq-item {
            background: rgba(5, 5, 20, 0.95);
            border-radius: 10px;
            padding: 14px 16px;
            border: 1px solid rgba(0, 234, 255, 0.18);
        }

        .faq-q {
            font-size: 1.3rem;
            margin-bottom: 6px;
        }

        .faq-a {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        /* FOOTER */
        footer {
            border-top: 2px solid rgba(0, 234, 255, 0.25);
            padding: 24px 20px 40px;
            background: #0D101F;
        }

        .footer-inner {
            max-width: 1830px;
            padding: 0px 340px 80px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: grid;
            gap: 10px;
        }

        .footer-inner1 {
            max-width: 1590px;
            padding: 0px 180px 80px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: grid;
            gap: 10px;
        }


        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-links a:hover {
            color: var(--neon);
        }

        .disclosure {
            font-size: 16px;
            color: var(--text-muted);
        }

        @media (max-width: 800px) {
            .featured-card {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero {
                padding-top: 90px;
            }
        }


  /* Style for the PAYPAL link */
        .custom-paypal-link {
            font-family: Arial, sans-serif; /* Font type */
            font-size: 18px;               /* Font size */
            font-weight: bold;             /* Font weight */
            color: #39ff14;                 /* Link color */
            text-decoration: none;          /* Remove underline */
        }

        /* Change color when hovered PAYPAL link */
        .custom-paypal-link:hover {
            color: #ff00ff;                 /* Hover color */
            text-decoration: underline;     /* Underline on hover */
        }


}



/* COLOURS I LIKE */

/* 

#39ff14  - bright green
 
#ff00ff  - bright purple

#FCFF47  - bright yellow

#9736FF  - purple

#00e5ff - teal used in main menus

#FF5EE7 - purple used in main left menu for hover

#B9F5FF - border colour in main menus

#47F9FF - teal colour used in main menus   removed -- opacity: 0.8

*/