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

:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8960f;
  --dark: #0a0e17;
  --dark-2: #111827;
  --dark-3: #1a2332;
  --dark-card: #0f1724;
  --text: #e2e8f0;
  --text-muted: #8899aa;
  --green: #00c853;
  --red: #ff1744;
  --blue: #2196f3;
  --purple: #7c3aed;
  --orange: #ff9800;
  --teal: #00bcd4;
  --pink: #e91e63;
  --colombia-blue: #003893;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo:hover {
  color: var(--gold);
}

.logo .flag {
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 820px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-3);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.8rem;
    border-left: 1px solid rgba(212, 175, 55, 0.12);
    transition: right 0.35s ease;
    align-items: flex-start;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.4rem 0;
  }

  .nav-links .nav-cta {
    margin-top: 0.5rem;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 110px 0 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.hero-stat h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.chart-container {
  width: 100%;
  max-width: 460px;
  position: relative;
}

.chart-card {
  background: rgba(15, 23, 36, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  padding: 1.6rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.chart-header h2 {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}

.chart-change {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.5s;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 150px;
  margin-bottom: 0.6rem;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height 0.6s ease, background 0.5s;
  min-height: 6px;
}

.chart-bar.up {
  background: linear-gradient(to top, var(--green), rgba(0, 200, 83, 0.25));
}

.chart-bar.down {
  background: linear-gradient(to top, var(--red), rgba(255, 23, 68, 0.25));
}

.chart-footer {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.floating-card {
  position: absolute;
  background: rgba(15, 23, 36, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 0.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
  top: -15px;
  right: -25px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: -5px;
  left: -35px;
  animation-delay: 2s;
}

.floating-card .label {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.floating-card .value {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--dark-2);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  padding: 0.6rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.ticker-item .sym {
  color: var(--text);
}

.ticker-item .price {
  color: var(--text-muted);
  font-weight: 400;
}

.ticker-item .change.positive {
  color: var(--green);
}

.ticker-item .change.negative {
  color: var(--red);
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== SECTION ===== */
.section {
  padding: 80px 0;
}

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

.section-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-feature .check {
  color: var(--green);
  font-weight: 700;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.stat-box {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 14px;
  padding: 1.3rem;
  text-align: center;
}

.stat-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0;
}

.stat-box p {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.category-card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 18px;
  padding: 1.6rem;
  transition: all 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.category-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.category-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  flex: 1;
}

.category-link {
  font-weight: 600;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s;
}

.category-link:hover {
  gap: 0.6rem;
}

.icon-inversiones {
  background: rgba(212, 175, 55, 0.15);
}

.icon-etf {
  background: rgba(124, 58, 237, 0.15);
}

.icon-acciones {
  background: rgba(0, 200, 83, 0.15);
}

.icon-forex {
  background: rgba(33, 150, 243, 0.15);
}

.icon-binarias {
  background: rgba(255, 23, 68, 0.15);
}

.icon-indices {
  background: rgba(255, 152, 0, 0.15);
}

.icon-materias {
  background: rgba(139, 195, 74, 0.15);
}

.icon-cripto {
  background: rgba(255, 193, 7, 0.15);
}

.icon-ahorro {
  background: rgba(0, 188, 212, 0.15);
}

.icon-ingresos {
  background: rgba(233, 30, 99, 0.15);
}

/* ===== BLOG POSTS ===== */
.featured-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.featured-post.main {
  grid-column: 1 / -1;
}

.post-card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s;
}

.post-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.post-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.featured-post.main .post-card-img {
  height: 320px;
}

.post-card-body {
  padding: 1.3rem 1.5rem 1.5rem;
}

.post-category {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.post-category.etf {
  background: rgba(124, 58, 237, 0.15);
  color: var(--purple);
}

.post-category.forex {
  background: rgba(33, 150, 243, 0.15);
  color: var(--blue);
}

.post-category.cripto {
  background: rgba(255, 193, 7, 0.15);
  color: var(--orange);
}

.post-category.ahorro {
  background: rgba(0, 188, 212, 0.15);
  color: var(--teal);
}

.post-category.ingresos {
  background: rgba(233, 30, 99, 0.15);
  color: var(--pink);
}

.post-category.colombia {
  background: rgba(0, 56, 147, 0.15);
  color: var(--colombia-blue);
}

.post-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.post-card-body h3 a {
  color: var(--text);
}

.post-card-body h3 a:hover {
  color: var(--gold);
}

.post-card-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.view-all {
  text-align: center;
  margin-top: 2rem;
}

/* ===== PLATFORMS ===== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.platform-card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 14px;
  padding: 1.3rem;
  text-align: center;
  transition: all 0.3s;
}

.platform-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.platform-card .emoji {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.platform-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.platform-card p {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.platform-tag {
  display: inline-block;
  padding: 0.12rem 0.55rem;
  border-radius: 50px;
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(0, 200, 83, 0.15);
  color: var(--green);
}

/* ===== COLOMBIA ===== */
.colombia-section {
  background: linear-gradient(135deg, rgba(0, 56, 147, 0.04), rgba(206, 17, 38, 0.02));
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.colombia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.co-card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.co-card:hover {
  border-color: rgba(0, 56, 147, 0.25);
  transform: translateY(-3px);
}

.co-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.co-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.co-card .tag {
  display: inline-block;
  padding: 0.12rem 0.55rem;
  background: rgba(0, 56, 147, 0.1);
  color: var(--colombia-blue);
  border-radius: 50px;
  font-size: 0.67rem;
  font-weight: 600;
}

/* ===== EDUCATION ===== */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.edu-card {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 18px;
  padding: 1.6rem;
  transition: all 0.4s;
}

.edu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.edu-card .badge {
  display: inline-block;
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.badge-beginner {
  background: rgba(0, 200, 83, 0.15);
  color: var(--green);
}

.badge-intermediate {
  background: rgba(255, 152, 0, 0.15);
  color: var(--orange);
}

.badge-advanced {
  background: rgba(255, 23, 68, 0.15);
  color: var(--red);
}

.edu-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.edu-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.edu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== SOCIAL ===== */
.social-section {
  text-align: center;
  background: var(--dark-2);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  max-width: 650px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.3rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  text-decoration: none;
  background: var(--dark-card);
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-card .icon {
  font-size: 1.8rem;
  display: block;
}

.social-card h4 {
  font-size: 0.85rem;
  color: var(--text);
}

.social-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

.social-card.youtube {
  border-color: rgba(255, 0, 0, 0.15);
}

.social-card.youtube:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.05);
}

.social-card.instagram {
  border-color: rgba(228, 64, 95, 0.15);
}

.social-card.instagram:hover {
  border-color: #e4405f;
  background: rgba(228, 64, 95, 0.05);
}

.social-card.twitter {
  border-color: rgba(29, 161, 242, 0.15);
}

.social-card.twitter:hover {
  border-color: #1da1f2;
  background: rgba(29, 161, 242, 0.05);
}

.social-card.tiktok {
  border-color: rgba(255, 255, 255, 0.08);
}

.social-card.tiktok:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

/* ===== FAQ ===== */
.faq-grid {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: 14px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.1rem 1.3rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .arrow {
  color: var(--gold);
  transition: transform 0.3s;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.3rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.3rem 1rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  text-align: center;
  padding: 70px 0;
  background: var(--dark-2);
}

.newsletter-content {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.newsletter-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: 0.8rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: var(--dark-card);
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form button {
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 0.85rem;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* ===== DISCLAIMER ===== */
.disclaimer-bar {
  background: rgba(255, 23, 68, 0.03);
  border-top: 1px solid rgba(255, 23, 68, 0.06);
  padding: 0.5rem 0;
  text-align: center;
}

.disclaimer-bar p {
  font-size: 0.68rem;
  color: var(--text-muted);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-3);
  padding: 45px 0 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.06);
}

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

.footer-brand .logo {
  margin-bottom: 0.6rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.82rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer h4 {
  color: var(--text);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.4rem;
}

.footer ul li a {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.6rem;
}

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

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
}

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

/* ===== COOKIES ===== */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-3);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 0.8rem 1.5rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.cookies-banner.show {
  display: block;
}

.cookies-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookies-text {
  color: var(--text-muted);
  font-size: 0.8rem;
  flex: 1;
  min-width: 250px;
}

.cookies-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookies-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-cookies {
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.78rem;
  transition: all 0.3s;
}

.btn-cookies.accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}

.btn-cookies.accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-cookies.decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-cookies.decline:hover {
  border-color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 22px;
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.modal-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

/* ===== BLOG POST ===== */
.blog-post {
  padding: 120px 0 60px;
}

.blog-post .container {
  max-width: 800px;
}

.blog-post-header {
  margin-bottom: 2rem;
}

.breadcrumbs {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs .sep {
  margin: 0 0.4rem;
}

.blog-post-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.blog-post-header .post-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding-top: 0;
  border: none;
}

.blog-post-header .post-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-post-content {
  line-height: 1.8;
}

.blog-post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.8rem;
  color: var(--gold);
}

.blog-post-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.6rem;
}

.blog-post-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.blog-post-content ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}

.blog-post-content ul li {
  padding: 0.3rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.blog-post-content ul li::before {
  content: '\25B8';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.2rem;
  margin: 1.2rem 0;
  background: rgba(212, 175, 55, 0.04);
  border-radius: 0 12px 12px 0;
}

.blog-post-content blockquote p {
  font-style: italic;
  font-size: 0.95rem;
  margin: 0;
  color: var(--text);
}

.blog-post-content img {
  border-radius: 16px;
  margin: 1.5rem 0;
  width: 100%;
}

.blog-post-content .highlight-box {
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  margin: 1.2rem 0;
  border-left: 4px solid var(--gold);
}

.blog-post-content .highlight-box h4 {
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.blog-post-content .highlight-box p {
  margin: 0;
  font-size: 0.92rem;
}

.blog-post-content .warning-box {
  background: rgba(255, 23, 68, 0.06);
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  margin: 1.2rem 0;
  border-left: 4px solid var(--red);
}

.blog-post-content .warning-box h4 {
  color: var(--red);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.blog-post-content .warning-box p {
  margin: 0;
  font-size: 0.92rem;
}

.blog-post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.85rem;
}

.blog-post-content th,
.blog-post-content td {
  padding: 0.7rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-post-content th {
  color: var(--gold);
  font-weight: 700;
  background: rgba(212, 175, 55, 0.04);
}

.blog-post-content td {
  color: var(--text-muted);
}

.blog-post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-post-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-post-nav a:hover {
  color: var(--gold);
}

/* ===== LEGAL ===== */
.legal-page {
  padding: 110px 0 50px;
}

.legal-page .container {
  max-width: 780px;
}

.legal-page h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

.legal-page .date {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  display: block;
}

.legal-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1.8rem 0 0.8rem;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.3rem 0 0.5rem;
  color: var(--gold);
}

.legal-page p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.legal-page ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}

.legal-page ul li {
  padding: 0.3rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.legal-page ul li::before {
  content: '\25B8';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCHEMA MARKUP HIDDEN ===== */
.schema-hidden {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content .subtitle {
    margin: 0 auto 1.5rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-features {
    justify-content: center;
  }
  .about-visual {
    max-width: 380px;
    margin: 0 auto;
  }
  .featured-posts {
    grid-template-columns: 1fr;
  }
  .featured-post.main .post-card-img {
    height: 240px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .about-visual {
    grid-template-columns: 1fr 1fr;
  }
  .post-card-img {
    height: 180px;
  }
  .featured-post.main .post-card-img {
    height: 200px;
  }
  .cookies-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .floating-card {
    display: none;
  }
  .blog-post-header h1 {
    font-size: 1.6rem;
  }
  .blog-post-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 50px 0;
  }
  .hero {
    padding: 95px 0 50px;
    min-height: auto;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-form input {
    min-width: 100%;
  }
  .post-card-body {
    padding: 1rem 1.2rem 1.2rem;
  }
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
