:root {
      --dm-primary: var(--wp--preset--color--primary, #4e54c8);
      --dm-primary-light: var(--wp--preset--color--primary-light, #6c63ff);
      --dm-secondary: var(--wp--preset--color--secondary, #f77062);
      --dm-accent-green: var(--wp--preset--color--accent-green, #2ecc71);
      --dm-accent-yellow: var(--wp--preset--color--accent-yellow, #f1c40f);
      --dm-dark: var(--wp--preset--color--dark, #2c3e50);
      --dm-light: var(--wp--preset--color--light, #f8f9fc);
      --dm-body: var(--wp--preset--color--body, #4a4a6a);
      --dm-creative: var(--wp--preset--color--creative, #e74c8b);
      --dm-game: var(--wp--preset--color--game, #3498db);
      --dm-edu: var(--wp--preset--color--edu, #27ae60);
      --dm-gradient: var(--wp--preset--gradient--dm-primary, linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%));
      --dm-gradient-warm: var(--wp--preset--gradient--dm-warm, linear-gradient(135deg, #f77062 0%, #fe5196 100%));
    }

    * { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      color: var(--dm-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      color: var(--dm-dark);
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: #6c757d;
      max-width: 700px;
      margin: 0 auto 2.5rem;
    }

    /* ─── Navbar ─── */
    .navbar-digimata {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
      padding: 0.6rem 0;
      transition: all 0.3s;
    }
    .navbar-digimata .navbar-brand {
      font-family: 'Quicksand', sans-serif;
      font-weight: 900;
      font-size: 1.6rem;
      color: var(--dm-primary);
      padding: 0.2rem 0;
    }
    .navbar-digimata .navbar-brand img {
      height: 60px;
      width: auto;
      transition: height 0.3s;
    }
    .navbar-digimata .navbar-brand span {
      color: var(--dm-secondary);
    }
    .navbar-digimata .nav-link {
      font-weight: 600;
      color: var(--dm-dark);
      padding: 0.5rem 1rem;
      transition: color 0.2s;
    }
    .navbar-digimata .nav-link:hover {
      color: var(--dm-primary);
    }
    .navbar-digimata .navbar-toggler {
      padding: 0.4rem 0.6rem;
      font-size: 1.2rem;
      color: var(--dm-dark);
      transition: all 0.2s;
    }
    .navbar-digimata .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(78,84,200,0.25);
    }
    @media (max-width: 991.98px) {
      .navbar-digimata .navbar-brand img {
        height: 36px;
      }
      .navbar-digimata .navbar-collapse {
        background: #fff;
        border-radius: 0 0 16px 16px;
        padding: 1rem 0.5rem;
        margin-top: 0.5rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }
      .navbar-digimata .nav-link {
        padding: 0.65rem 1rem;
        border-radius: 10px;
        margin-bottom: 0.15rem;
      }
      .navbar-digimata .nav-link:hover,
      .navbar-digimata .nav-link:active {
        background: var(--dm-light);
      }
      .navbar-digimata .d-flex.gap-2 {
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0,0,0,0.06);
        margin-top: 0.5rem;
      }
    }

    /* ─── Buttons ─── */
    .btn-dm-primary {
      background: var(--dm-gradient);
      color: #fff;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(78,84,200,0.3);
    }
    .btn-dm-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(78,84,200,0.4);
      color: #fff;
    }
    .btn-dm-secondary {
      background: #fff;
      color: var(--dm-primary);
      border: 2px solid var(--dm-primary);
      padding: 0.7rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s;
    }
    .btn-dm-secondary:hover {
      background: var(--dm-primary);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-dm-warm {
      background: var(--dm-gradient-warm);
      color: #fff;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(247,112,98,0.3);
    }
    .btn-dm-warm:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(247,112,98,0.4);
      color: #fff;
    }

    /* ─── Page Header ─── */
    .page-header {
      padding-top: 120px;
      padding-bottom: 4rem;
      background: linear-gradient(160deg, #f0f0ff 0%, #fdf0ed 50%, #edf7ed 100%);
      position: relative;
      overflow: hidden;
    }
    .page-header::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,84,200,0.06) 0%, transparent 70%);
    }
    .page-header .breadcrumb {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .page-header .breadcrumb a {
      color: var(--dm-primary);
      text-decoration: none;
      font-weight: 600;
    }
    .page-header .breadcrumb a:hover {
      text-decoration: underline;
    }
    .page-header h1 {
      font-size: 2.6rem;
      font-weight: 900;
      color: var(--dm-dark);
    }
    .page-header h1 .highlight {
      background: var(--dm-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .page-header p.lead {
      font-size: 1.15rem;
      color: var(--dm-body);
      max-width: 680px;
    }

    /* ─── Section ─── */
    .media-section {
      padding: 5rem 0;
    }
    .media-section:nth-child(odd) {
      background: #fff;
    }
    .media-section:nth-child(even) {
      background: var(--dm-light);
    }

    /* ─── Section header with icon ─── */
    .section-header-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    /* ─── Table styles ─── */
    .dm-table-wrapper {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.06);
      margin-bottom: 2.5rem;
    }
    .dm-table-wrapper:last-child {
      margin-bottom: 0;
    }
    .dm-table-header {
      background: var(--dm-light);
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .dm-table-header i {
      font-size: 1.2rem;
      color: var(--dm-primary);
    }
    .dm-table-header h5 {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 800;
    }
    .dm-table {
      width: 100%;
      border-collapse: collapse;
    }
    .dm-table thead th {
      background: rgba(78,84,200,0.04);
      padding: 0.85rem 1.25rem;
      font-family: 'Quicksand', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--dm-dark);
      border-bottom: 2px solid rgba(78,84,200,0.1);
      white-space: nowrap;
    }
    .dm-table tbody tr {
      transition: background 0.2s;
    }
    .dm-table tbody tr:hover {
      background: rgba(78,84,200,0.03);
    }
    .dm-table tbody tr:not(:last-child) td {
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .dm-table td {
      padding: 1rem 1.25rem;
      vertical-align: middle;
    }
    .dm-table .td-name {
      font-weight: 700;
      color: var(--dm-dark);
    }
    .dm-table .td-desc {
      font-size: 0.92rem;
      color: #6c757d;
    }
    .dm-table .td-format {
      white-space: nowrap;
    }
    .badge-format {
      display: inline-block;
      background: var(--dm-light);
      color: var(--dm-body);
      padding: 0.2rem 0.6rem;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-right: 0.25rem;
    }
    .btn-download {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--dm-gradient);
      color: #fff;
      border: none;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.3s;
      white-space: nowrap;
    }
    .btn-download:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(78,84,200,0.3);
      color: #fff;
    }
    .btn-download-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: transparent;
      color: var(--dm-primary);
      border: 2px solid var(--dm-primary);
      padding: 0.35rem 1rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
      transition: all 0.3s;
      white-space: nowrap;
    }
    .btn-download-outline:hover {
      background: var(--dm-primary);
      color: #fff;
      transform: translateY(-1px);
    }
    .file-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .file-icon.icon-img { background: rgba(78,84,200,0.1); color: var(--dm-primary); }
    .file-icon.icon-pdf { background: rgba(231,76,60,0.1); color: #e74c3c; }
    .file-icon.icon-doc { background: rgba(52,152,219,0.1); color: #3498db; }
    .file-icon.icon-zip { background: rgba(46,204,113,0.1); color: var(--dm-accent-green); }
    .file-icon.icon-store { background: rgba(231,76,139,0.1); color: var(--dm-creative); }
    .file-icon.icon-play { background: rgba(241,196,15,0.12); color: #d4a017; }

    /* ─── Info note ─── */
    .info-note {
      background: rgba(78,84,200,0.06);
      border-left: 4px solid var(--dm-primary);
      border-radius: 0 12px 12px 0;
      padding: 1.25rem 1.5rem;
      margin-top: 2rem;
    }
    .info-note p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--dm-body);
    }
    .info-note i {
      color: var(--dm-primary);
    }

    /* ─── Responsive table ─── */
    @media (max-width: 767.98px) {
      .dm-table thead { display: none; }
      .dm-table tbody tr {
        display: block;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(0,0,0,0.06);
      }
      .dm-table tbody tr:last-child { border-bottom: none; }
      .dm-table td {
        display: block;
        padding: 0.2rem 0;
        border: none !important;
      }
      .dm-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #999;
        margin-bottom: 0.2rem;
      }
      .dm-table .td-action { margin-top: 0.5rem; }
    }

    /* ─── Footer ─── */
    .footer-digimata {
      background: var(--dm-dark);
      color: rgba(255,255,255,0.7);
      padding: 3rem 0 1.5rem;
    }
    .footer-digimata a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-digimata a:hover { color: #fff; }
    .footer-brand {
      font-family: 'Quicksand', sans-serif;
      font-weight: 900;
      font-size: 1.4rem;
      color: #fff;
    }
    .footer-brand span { color: var(--dm-secondary); }
    .footer-socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      font-size: 1.1rem;
      margin-right: 0.5rem;
      transition: all 0.3s;
    }
    .footer-socials a:hover {
      background: var(--dm-primary);
      color: #fff;
    }

    /* ─── Responsive ─── */
    @media (max-width: 991.98px) {
      .page-header h1 { font-size: 2rem; }
      .section-title { font-size: 1.8rem; }
    }
    @media (max-width: 767.98px) {
      .page-header h1 { font-size: 1.6rem; }
      .page-header { padding-top: 100px; padding-bottom: 2.5rem; }
      .section-title { font-size: 1.5rem; }
      .media-section { padding: 3.5rem 0; }
    }

    /* ─── Animations ─── */
    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-out;
    }
    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }