/* Sample CPA - Static Site Styles */

/* CSS Variables - Dark Theme */
:root {
  --background: hsl(0, 0%, 4%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(0, 0%, 7%);
  --card-foreground: hsl(0, 0%, 98%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(0, 0%, 65%);
  --border: hsl(0, 0%, 20%);
  --primary: hsl(330, 100%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --pink: hsl(330, 100%, 60%);
  --cyan: hsl(180, 100%, 50%);
  --yellow: hsl(45, 100%, 60%);
  --purple: hsl(280, 100%, 65%);
  --radius: 0.75rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

/* Gradient Border Card */
.gradient-border {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--cyan));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Glow Effects */
.glow-pink {
  box-shadow: 0 0 40px -10px hsla(330, 100%, 60%, 0.5);
}

.glow-cyan {
  box-shadow: 0 0 40px -10px hsla(180, 100%, 50%, 0.5);
}

.glow-yellow {
  box-shadow: 0 0 40px -10px hsla(45, 100%, 60%, 0.5);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 8s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.btn-ghost {
  background: transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.btn-ghost:hover {
  background: var(--muted);
}

/* Card */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
  border-color: var(--primary);
}

/* Sections */
section {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: hsla(330, 100%, 60%, 0.1);
  border: 1px solid hsla(330, 100%, 60%, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero .tagline {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

/* Floating Elements Container */
.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Donut Containers */
.donut-left, .donut-right {
  position: absolute;
  top: 50%;
  transition: transform 0.2s ease-out;
}

.donut-left {
  left: 0;
}

.donut-right {
  right: 0;
}

.donut-top-left {
  position: absolute;
  top: 12%;
  left: 15%;
  transition: transform 0.2s ease-out;
}

.donut-top-right {
  position: absolute;
  top: 15%;
  right: 12%;
  transition: transform 0.2s ease-out;
}

.donut-bottom-left {
  position: absolute;
  bottom: 18%;
  left: 10%;
  transition: transform 0.2s ease-out;
}

.donut-bottom-right {
  position: absolute;
  bottom: 12%;
  right: 15%;
  transition: transform 0.2s ease-out;
}

/* Mobile donuts */
.mobile-donuts {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-donuts {
    display: none;
  }
  .desktop-donuts {
    display: block;
  }
}

.desktop-donuts {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-donuts {
    display: block;
  }
}

@media (min-width: 1280px) {
  .corner-donuts {
    display: block;
  }
}

.corner-donuts {
  display: none;
}

/* Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  transition: transform 0.3s ease-out;
}

.glow-orb-pink {
  width: 18rem;
  height: 18rem;
  background: hsla(330, 100%, 60%, 0.2);
  top: 25%;
  left: 25%;
}

.glow-orb-cyan {
  width: 24rem;
  height: 24rem;
  background: hsla(180, 100%, 50%, 0.15);
  bottom: 25%;
  right: 25%;
}

.glow-orb-yellow {
  width: 500px;
  height: 500px;
  background: hsla(45, 100%, 60%, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Sprinkles */
.sprinkle {
  position: absolute;
  width: 6px;
  height: 18px;
  border-radius: 3px;
  opacity: 0.8;
  transition: transform 0.1s ease-out;
}

.sprinkle.pink { background: var(--pink); }
.sprinkle.cyan { background: var(--cyan); }
.sprinkle.yellow { background: var(--yellow); }
.sprinkle.purple { background: var(--purple); }

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-2-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-2-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Verticals Section */
.vertical-card {
  text-align: center;
  padding: 2rem;
}

.vertical-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.vertical-icon.pink {
  background: hsla(330, 100%, 60%, 0.1);
  color: var(--pink);
}

.vertical-icon.cyan {
  background: hsla(180, 100%, 50%, 0.1);
  color: var(--cyan);
}

.vertical-icon.yellow {
  background: hsla(45, 100%, 60%, 0.1);
  color: var(--yellow);
}

.vertical-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.vertical-card p {
  color: var(--muted-foreground);
}

/* Stats Section */
.stat-card {
  text-align: center;
  padding: 1.5rem 2rem;
  background: hsla(0, 0%, 7%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: hsla(330, 100%, 60%, 0.3);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-value.pink { color: var(--pink); }
.stat-value.cyan { color: var(--cyan); }
.stat-value.yellow { color: var(--yellow); }
.stat-value.purple { color: var(--purple); }

.stat-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  opacity: 0.6;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

/* GEO Section */
.geo-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.geo-card:hover {
  transform: translateY(-4px);
}

.geo-card.pink {
  background: linear-gradient(to bottom, hsla(330, 100%, 60%, 0.2), hsla(330, 100%, 60%, 0.05));
  border: 1px solid hsla(330, 100%, 60%, 0.3);
}

.geo-card.cyan {
  background: linear-gradient(to bottom, hsla(180, 100%, 50%, 0.2), hsla(180, 100%, 50%, 0.05));
  border: 1px solid hsla(180, 100%, 50%, 0.3);
}

.geo-card.yellow {
  background: linear-gradient(to bottom, hsla(45, 100%, 60%, 0.2), hsla(45, 100%, 60%, 0.05));
  border: 1px solid hsla(45, 100%, 60%, 0.3);
}

.geo-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.geo-header .emoji {
  font-size: 1.875rem;
}

.geo-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.geo-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.geo-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.geo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem;
  background: hsla(0, 0%, 7%, 0.5);
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}

.geo-item:hover {
  background: var(--card);
}

.geo-item .code {
  font-weight: 600;
}

.geo-item .name {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.flag-svg {
  width: 2.5rem;
  height: 1.75rem;
  border-radius: 0.125rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* GEO Bottom Stats */
.geo-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .geo-stats {
    gap: 4rem;
  }
}

.geo-stat {
  text-align: center;
}

.geo-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.geo-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Advantages Section */
.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: hsla(0, 0%, 7%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 0%, 20%, 0.5);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  border-color: hsla(330, 100%, 60%, 0.3);
  background: var(--card);
}

.advantage-icon {
  padding: 0.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.advantage-icon.pink {
  background: hsla(330, 100%, 60%, 0.1);
  color: var(--pink);
}

.advantage-icon.cyan {
  background: hsla(180, 100%, 50%, 0.1);
  color: var(--cyan);
}

.advantage-icon.yellow {
  background: hsla(45, 100%, 60%, 0.1);
  color: var(--yellow);
}

.advantage-icon.purple {
  background: hsla(280, 100%, 65%, 0.1);
  color: var(--purple);
}

.advantage-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.advantage-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* CTA Section */
.cta-section {
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
  }
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-handle {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
}

/* Footer */
footer {
  padding: 3rem 1rem;
  border-top: 1px solid hsla(0, 0%, 20%, 0.5);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-telegram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-telegram:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 20%, 0.3);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-bottom .disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.legal-page section {
  padding: 0;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.legal-page p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page strong {
  color: var(--foreground);
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
}

.legal-page ul li {
  margin-bottom: 0.5rem;
}

.legal-page a {
  color: var(--primary);
}

.legal-page a:hover {
  text-decoration: underline;
}

/* Background Gradient Overlays */
.bg-gradient-section {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Icon sizes in inline SVG */
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }
