    .batak-content {
      position: relative;
      z-index: 2;
    }

    .batak-title {
      font-weight: 700;
      font-size: 2.2rem;
      line-height: 1.2;
    }

    .batak-title::after {
      content: '';
      display: block;
      width: 30px;
      height: 5px;
      background-color: #8B0000; /* warna merah tua seperti contoh */
      margin-top: 10px;
    }

    .batak-text {
      font-size: 1rem;
      color: #333;
    }

     .section-border {
      border-top: 2px solid #333;
      max-width: 99%; /* jarak kiri-kanan */
      margin: 0 auto 30px auto; /* tengah + jarak bawah */
    }

    /* CARA PENGGUNAAN */

.batak-table th, 
.batak-table td {
  border: 2px solid #000;
}

ul {
  padding-left: 20px;
}

/* Diamond Shape */
.diamond {
  width: 420px;
  position: relative;
  z-index: 2; /* di atas background lain */
  padding-left: 20px ;
}

.usage-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url('/ASSETS/img/batik2.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usage-box h5 {
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.overlap-card {
  position: relative;
  margin-left: -200px; /* overlap ke kiri */
  flex: 1; /* biar memanjang ke kanan */
  z-index: 1;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .d-flex {
    flex-direction: column;
  }
  .overlap-card {
    margin-left: 0; /* hilang overlap di HP */
    margin-top: -40px; /* sedikit numpang dari atas */
    width: 100%;
  }
}

.isi-card{
    margin-left: 130px;
    font-size: 0.8rem;
}

.section-penggunaan{
    margin-top: 80px;
}


    /* CONTOH PENGGUNAAN */
.langkah-box {
  position: relative;
  background-color: #4F1212; /* merah tua */
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  width: 300px;
  margin-left: 50px;
}

.langkah-box .nomor {
  position: absolute;
  top: -30px;
  left: -40px;
  background-color: white;
  color: #6d1f1f;
  font-weight: bold;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: 'DM serif display';
}

.langkah-box ul {
  padding-left: 1.2rem;
}

@media (max-width: 768px) {
  .langkah-box {
    padding: 1rem;
  }
  .langkah-box .nomor {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

.card-putih {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: inline-block; /* biar ukurannya sesuai konten */
  margin-top: 200px;
  margin-right: 40px;
}

    /* QUIZ */

    .quiz-container {
    max-width: 600px; /* biar nggak terlalu melebar */
    margin: 0 auto;   /* center horizontal */
    background: #fff; /* opsional */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

        /* Quiz Header */
        .quiz-header {
            background: #8B2635;
            color: white;
            padding: 1.5rem 2rem;
            text-align: center;
            position: relative;
        }

        .quiz-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .quiz-progress {
            background: rgba(255, 255, 255, 0.2);
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin-top: 1rem;
        }

        .progress-bar {
            background: white;
            height: 100%;
            border-radius: 4px;
            transition: width 0.3s ease;
            width: 0%;
        }

        .question-counter {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Quiz Content */
        .quiz-content {
            padding: 2rem;
        }

        .question-section {
            text-align: center;
            margin-bottom: 2rem;
        }

        .question-text {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .question-image {
            width: 250px;
            height: 180px;
            margin: 0 auto 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            background: linear-gradient(45deg, #8B4513, #D2691E);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .question-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Placeholder for Batak script */
        .script-placeholder {
            font-size: 4rem;
            color: rgba(0, 0, 0, 0.3);
            font-weight: bold;
        }

        /* Answer Options - HORIZONTAL LAYOUT LIKE QUIZIZZ */
        .answers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .answer-option {
            background: #f8f9fa;
            border: 3px solid #e9ecef;
            border-radius: 12px;
            padding: 1.5rem 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .answer-option:hover {
            border-color: #8B2635;
            background: #f1f3f4;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .answer-option.correct {
            background: #d4edda;
            border-color: #28a745;
            color: #155724;
            animation: correctPulse 0.6s ease;
        }

        .answer-option.incorrect {
            background: #f8d7da;
            border-color: #dc3545;
            color: #721c24;
            animation: incorrectShake 0.6s ease;
        }

        .answer-option.disabled {
            cursor: not-allowed;
        }

        /* Animations */
        @keyframes correctPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes incorrectShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* Result Icons */
        .result-icon {
            position: absolute;
            top: 8px;
            right: 12px;
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .answer-option.correct .result-icon,
        .answer-option.incorrect .result-icon {
            opacity: 1;
        }

        /* Next Button */
        .next-section {
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .next-section.show {
            opacity: 1;
        }

        .next-btn {
            background: #8B2635;
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .next-btn:hover {
            background: #6B1E2A;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 38, 53, 0.3);
        }

        /* Quiz Complete */
        .quiz-complete {
            text-align: center;
            padding: 2rem;
            display: none;
        }

        .quiz-complete.show {
            display: block;
        }

        .complete-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .complete-title {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }

        .final-score {
            font-size: 1.5rem;
            color: #8B2635;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .restart-btn {
            background: #28a745;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .restart-btn:hover {
            background: #218838;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .quiz-container {
                margin: 1rem;
            }

            .quiz-content {
                padding: 1.5rem;
            }

            /* Stack answers vertically on mobile */
            .answers-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .question-text {
                font-size: 1.2rem;
            }

            .answer-option {
                padding: 1.2rem 0.8rem;
                font-size: 1rem;
                min-height: 70px;
            }

            .question-image {
                width: 200px;
                height: 150px;
            }

            .script-placeholder {
                font-size: 3rem;
            }
        }

        @media (max-width: 480px) {
            /* Single column on very small screens */
            .answers-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .answer-option {
                min-height: 60px;
                padding: 1rem;
            }

            .question-image {
                width: 180px;
                height: 130px;
            }

            .script-placeholder {
                font-size: 2.5rem;
            }
        }

        /* Animation for question transitions */
        .quiz-content.fade-out {
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
        }

        .quiz-content.fade-in {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.3s ease;
        }

        /* Quizizz-style color coding for options */
        .answer-option:nth-child(1) {
            border-left: 4px solid #e74c3c;
        }

        .answer-option:nth-child(2) {
            border-left: 4px solid #3498db;
        }

        .answer-option:nth-child(3) {
            border-left: 4px solid #f39c12;
        }

        .answer-option:nth-child(4) {
            border-left: 4px solid #27ae60;
        }

        .answer-option:nth-child(1):hover {
            border-left-color: #c0392b;
        }

        .answer-option:nth-child(2):hover {
            border-left-color: #2980b9;
        }

        .answer-option:nth-child(3):hover {
            border-left-color: #e67e22;
        }

        .answer-option:nth-child(4):hover {
            border-left-color: #229954;
        }