:root {
  /* Neo-Brutalism Colors */
  --bg-primary: #f8f9fa; /* Light background */
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  
  --accent-cyan: #00e5ff;
  --accent-magenta: #ff4785;
  --accent-yellow: #ffeb3b;
  --accent-green: #00e676;
  
  --text-primary: #1a1a1a;
  --text-secondary: #333333;
  --border-color: #000000;

  /* Layout */
  --container-width: 1200px;
  --radius-lg: 0px; /* Sharp corners for brutalism */
  --radius-sm: 0px;
  --transition: all 0.2s ease-in-out;
  
  /* Brutalist Shadows */
  --shadow-sm: 4px 4px 0px var(--border-color);
  --shadow-md: 6px 6px 0px var(--border-color);
  --shadow-lg: 10px 10px 0px var(--border-color);
  --border-width: 3px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  /* Fun brutalist background pattern */
  background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
  background-size: 20px 20px;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

a:hover {
  background-color: var(--accent-yellow);
  border-bottom: 2px solid var(--border-color);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 4px 4px 0px var(--accent-yellow);
  -webkit-text-stroke: 1px var(--border-color);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  padding: 10px 20px;
  background: var(--accent-magenta);
  border: var(--border-width) solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  color: #fff;
}
.container > h2 {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

/* Map existing "neon" classes to neo-brutalism seamlessly */
.neon-text-cyan {
  text-shadow: 4px 4px 0px var(--accent-cyan);
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}
.neon-text-magenta {
  text-shadow: 4px 4px 0px var(--accent-magenta);
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
}

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: var(--border-width) solid var(--border-color);
  background: #fff;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative;
  overflow: visible;
  clip-path: none; /* Removing anime clipped corner */
}

.btn-primary {
  background: var(--accent-yellow);
}

.btn-primary:hover, .btn-outline:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--border-color);
  background: var(--accent-magenta);
  color: #fff !important;
}
.btn:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0px var(--border-color);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: var(--border-width) solid var(--border-color);
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 1px;
  background: var(--accent-cyan);
  padding: 5px 15px;
  border: var(--border-width) solid var(--border-color);
  box-shadow: 3px 3px 0px var(--border-color);
}

.logo span {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.1rem;
  border: var(--border-width) solid transparent;
  padding: 5px 10px;
}

.nav-links a:hover {
  background: var(--accent-yellow);
  border: var(--border-width) solid var(--border-color);
  box-shadow: 3px 3px 0px var(--border-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  background-color: var(--bg-primary);
}

.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  background: #fff;
  padding: 60px;
  border: var(--border-width) solid var(--border-color);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.hero-visuals {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  position: absolute;
  background: #fff;
  border: var(--border-width) solid var(--border-color);
  padding: 20px 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  animation: float 6s ease-in-out infinite;
  z-index: 10;
}

.floating-card .emoji {
  font-size: 2rem;
}

.card-1 {
  top: 10%;
  left: 0;
  animation-delay: 0s;
  background: var(--accent-yellow);
}

.card-2 {
  top: 45%;
  right: -20px;
  animation-delay: 1.5s;
  background: var(--accent-cyan);
}

.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 3s;
  background: var(--accent-magenta);
  color: #fff;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.card {
  background: #fff;
  border: var(--border-width) solid var(--border-color);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.card::before {
  display: none; /* Hide anime style before element */
}

.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  background: var(--accent-cyan);
  border: var(--border-width) solid var(--border-color);
  box-shadow: 4px 4px 0px var(--border-color);
  padding: 10px;
  -webkit-text-fill-color: initial;
  color: var(--text-primary);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  background: var(--accent-yellow);
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid var(--border-color);
}

.card p {
  color: var(--text-primary);
  font-weight: 600;
}

/* Pricing Section */
.pricing-card {
  text-align: center;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.pricing-card h3 {
    background: #fff;
    border: none;
    padding: 0;
}

.pricing-card.popular {
  background: var(--accent-cyan);
  transform: scale(1.05);
}

.pricing-card.popular h3 {
  background: transparent;
}

.pricing-card.popular::before {
  display: none;
}

.pricing-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  background: var(--accent-magenta);
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 900;
  border: var(--border-width) solid var(--border-color);
  box-shadow: 4px 4px 0px var(--border-color);
  transform: rotate(10deg);
  text-transform: uppercase;
}

.price {
  font-size: 4rem;
  font-weight: 900;
  margin: 20px 0;
  color: var(--text-primary);
  border-bottom: var(--border-width) dashed var(--border-color);
  padding-bottom: 20px;
}

.price span {
  font-size: 1.5rem;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: bold;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--border-color);
  padding: 10px;
  box-shadow: 2px 2px 0px var(--border-color);
}

.pricing-features li::before {
  content: '➤';
  color: var(--border-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.pricing-card .btn {
  width: 100%;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: var(--border-width) solid var(--border-color);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
  background: var(--accent-yellow);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed transparent;
}

.faq-question span {
  background: var(--border-color);
  color: #fff !important;
  padding: 2px 10px;
  border-radius: 50%;
}

.faq-item:hover .faq-question {
  border-bottom: 2px dashed var(--border-color);
}

.faq-answer {
  padding: 0 25px 20px;
  color: var(--text-primary);
  font-weight: 600;
  display: none;
  margin-top: 15px;
}

.faq-item:hover .faq-answer {
  display: block;
}

/* Footer */
footer {
  background: var(--accent-green);
  padding: 60px 0 30px;
  border-top: var(--border-width) solid var(--border-color);
  margin-top: 50px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-primary);
  font-weight: 900;
  font-size: 1.1rem;
  background: #fff;
  border: 2px solid var(--border-color);
  padding: 10px 20px;
  box-shadow: 3px 3px 0px var(--border-color);
}

.footer-links a:hover {
  background: var(--accent-magenta);
  color: #fff;
}

.copyright {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 900;
  margin-top: 30px;
  background: #fff;
  padding: 10px 20px;
  border: 2px solid var(--border-color);
}

/* Content Pages (About, Terms, Privacy) */
.page-header {
  padding: 150px 0 50px;
  text-align: center;
  background: var(--accent-cyan);
  border-bottom: var(--border-width) solid var(--border-color);
}

.page-header h1 {
    text-shadow: 4px 4px 0px var(--accent-magenta);
}

.content-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 60px;
  background: #fff;
  border: var(--border-width) solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.content-section h2 {
  text-align: left;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  background: var(--accent-yellow);
  color: var(--text-primary);
}

.content-section p, .content-section ul {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.content-section ul {
  padding-left: 0;
  list-style: none;
}

.content-section li {
  margin-bottom: 1rem;
  background: #f0f0f0;
  border: 2px solid var(--border-color);
  padding: 15px;
  box-shadow: 2px 2px 0px var(--border-color);
}

/* Sitemap specific */
.sitemap-list {
  list-style: none;
  padding: 0;
}

.sitemap-list li {
  margin-bottom: 1rem;
  background: #fff;
}

.sitemap-list a {
  font-size: 1.3rem;
  color: var(--text-primary);
  display: block;
  width: 100%;
}

.sitemap-list a::before {
  content: '⬛';
  margin-right: 10px;
  font-size: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    padding: 40px 20px;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-visuals {
    height: 300px;
  }
  
  .floating-card {
    font-size: 1rem;
    padding: 15px 20px;
  }
  
  .card-1 { left: 5%; top: 0; }
  .card-2 { right: 5%; top: 40%; }
  .card-3 { left: 15%; bottom: 0; }
  
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
  }
  
  .navbar .container {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding-top: 140px;
  }

  .hero-content {
    padding: 30px 15px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .grid-3 {
    gap: 25px;
  }

  .card, .pricing-card {
    padding: 30px 20px;
  }

  .pricing-card.popular {
    transform: none;
  }
  
  .price {
    font-size: 3rem;
  }
  
  .content-section {
    padding: 30px 15px;
    margin: 20px 10px;
  }
  
  .friend-links {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 15px;
  }
  
  .friend-links a {
    text-align: center;
    margin: 5px 0;
  }
}
