.elementor-248 .elementor-element.elementor-element-2307ddd{--display:flex;--margin-top:080px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}body.elementor-page-248:not(.elementor-motion-effects-element-type-background), body.elementor-page-248 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#111814;}/* Start custom CSS for html, class: .elementor-element-c513b8f *//* --- CẤU HÌNH SECTION --- */
.download-section {
  font-family: 'Public Sans', sans-serif;
  box-sizing: border-box;
  width: 100%;
  min-height: calc(100vh - 64px);
  
  /* Bảng màu chung */
  --ds-bg-dark: #111814;
  --ds-text-white: #f8fafc;
  --ds-text-gray: #94a3b8;
  --ds-blue: #3b82f6;  /* Màu chủ đạo cho bản VN */
  --ds-card-bg: #1c2720;
  
  background-color: var(--ds-bg-dark);
  color: var(--ds-text-white);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem 5rem 1.5rem;
  position: relative;
  z-index: 10;
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  color: var(--ds-text-gray);
}

.crumb-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.crumb-link:hover { color: var(--ds-blue); }

.crumb-current {
  font-weight: 500;
  color: var(--ds-text-white);
}

/* --- HEADER --- */
.section-header {
  text-align: center;
  max-width: 42rem;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.025em;
}

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

.section-desc {
  color: var(--ds-text-gray);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* --- GRID LAYOUT --- */
.download-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 64rem; /* max-w-5xl */
}

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

/* --- CARD STYLE CHUNG --- */
.dl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--ds-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.dl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* --- WATERMARK (VN/EN) --- */
.card-watermark {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  opacity: 0.05;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s;
}
.dl-card:hover .card-watermark { opacity: 0.1; }

/* --- ICON & CONTENT --- */
.card-icon-box {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}
.dl-card:hover .card-icon-box { transform: scale(1.1); }

.card-content { flex: 1; margin-bottom: 2rem; }

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--ds-text-white);
  transition: color 0.3s;
}

.card-desc {
  color: var(--ds-text-gray);
  line-height: 1.6;
  margin: 0;
}

/* --- FOOTER & META --- */
.card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}

.file-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

.meta-type {
  display: flex; align-items: center; gap: 0.375rem;
}

.meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background-color: #475569;
}

/* --- BUTTON CHUNG --- */
.btn-download {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 3rem; width: 100%;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

/* === STYLE RIÊNG CHO CARD VN (BLUE THEME) === */
.card-vn:hover { border-color: rgba(59, 130, 246, 0.5); }
.card-vn .card-icon-box { background-color: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.card-vn:hover .card-title { color: #60a5fa; }

.card-vn .btn-download {
  background-color: #2563eb;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.25);
}
.card-vn .btn-download:hover {
  background-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.4);
}

/* === STYLE RIÊNG CHO CARD EN (GLASS THEME) === */
.card-en:hover { border-color: rgba(255, 255, 255, 0.3); }
.card-en .card-icon-box { background-color: rgba(255, 255, 255, 0.05); color: #e2e8f0; }
.card-en:hover .card-title { color: #e2e8f0; }

.card-en .btn-download {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid transparent;
}
.card-en .btn-download:hover {
  background-color: #fff;
  color: #0f172a;
  border-color: #fff;
}

/* --- FOOTER LINK --- */
.section-footer {
  margin-top: 4rem;
  text-align: center;
}
.section-footer p {
  font-size: 0.875rem;
  color: var(--ds-text-gray);
}
.section-footer a {
  color: #60a5fa;
  text-decoration: underline;
  text-decoration-color: rgba(96, 165, 250, 0.3);
  text-underline-offset: 4px;
}
.section-footer a:hover {
  color: #93c5fd;
  text-decoration-color: #93c5fd;
}/* End custom CSS */