/*
Theme Name: ucupWpDev Theme
Description: Custom WordPress theme inspired by santrikoding.com for coding tutorials and articles
Version: 1.0
Author: Custom Developer
*/

/* Color Variables */
:root {
  /* Warna utama yang disesuaikan dengan logo WP Instant */
  --primary: #0A192F;      /* Biru gelap dari latar belakang logo */
  --secondary: #4A90E2;    /* Biru terang dari tulisan logo */
  --accent: #10B981;       /* Hijau, berfungsi sebagai warna aksen yang kontras dan menarik perhatian (misal: tombol CTA) */

  /* Palet warna netral yang mendukung */
    --text: #1F2937;         /* Teks utama (abu-abu gelap) */
    --light-bg: #F3F4F6;     /* Latar belakang terang (abu-abu muda) */
    --white: #FFFFFF;

  /* Skala abu-abu (tetap bisa digunakan, tapi disarankan untuk menambahkan sedikit hint biru) */
    --gray-100: #F9FAFB;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light-bg);
}

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

/* Header Styles */
.main-header {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark-mode-toggle {
    order: 2;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
}

/* .logo::before {
    content: "{ }";
    margin-right: 10px;
    font-size: 2rem;
    color: var(--accent);
} */

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}



/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
    url(assets/images/wpinstant16.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Hero Search */
.hero-search {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

.hero-search-form {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-search-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    color: var(--text);
}

.hero-search-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-search-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    margin-top: 10px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
}

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

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Article Series */
.article-series {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.article-series h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.series-list {
    list-style: none;
}

.series-list li {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.series-list li:hover {
    background: rgba(255,255,255,0.2);
}

.series-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.series-list .current {
    background: var(--accent);
    font-weight: 600;
}

.sidebar h3 {
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
    font-size: 1.1rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar ul li a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sidebar ul li a:hover {
    color: var(--primary);
}

/* Articles Section */

.articles-section h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
}

.articles-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.articles-grid {
    display: grid;
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-500);
    align-items: center;
}

.article-category {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 500;
}

.article-views {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-400);
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--primary);
}

.article-excerpt {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

body.dark-mode .article-excerpt {
    color: var(--white);
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
}

.pricing-section, h2{
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-section, p {
    text-align: center;
    margin-bottom: 1rem;
}

/* price */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid #667eea;
    box-shadow: 0 12px 28px rgba(102,126,234,0.2);
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

body.dark-mode .pricing-card h3 {
    color: #667eea;
}

.price {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.price span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #555;
}

.btn-order {
    display: inline-block;
    background: linear-gradient(135deg,#667eea,#764ba2);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity .3s ease;
}

.btn-order:hover {
    opacity: 0.9;
}
body.dark-mode .btn-order {
    background: linear-gradient(135deg,#667eea);
    color:#fff;
}


/* Sidebar */
.sidebar {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: fit-content;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar h3 {
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar ul {
    list-style: none;
}

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

.sidebar ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar ul li a:hover {
    color: #667eea;
}

/* CTA Buttons Sidebar */
.sidebar-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--gray-50);
}

.cta-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cta-btn.love.active {
    background: #EF4444;
    border-color: #EF4444;
}

.cta-btn.save.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* Table of Contents */
.table-of-contents {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 1rem;
    border-radius: 8px;
}

.table-of-contents h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.25rem 0;
    display: block;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.table-of-contents a:hover {
    color: var(--primary);
    background: var(--white);
    padding-left: 0.5rem;
}

/* Categories Section */
.categories-section {
    background: white;
    margin: 3rem 0;
    padding: 3rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-card:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-card:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.category-card:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    text-align: left;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

.whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 9999;
            cursor: pointer;
            user-select: none;
        }

        .whatsapp-button {
            position: relative;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: bounce 2s infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-button i {
            color: white;
            font-size: 28px;
            transition: var(--transition);
        }

        .whatsapp-button:hover i {
            transform: scale(1.1);
        }

        .pulse-ring {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 3px solid #25D366;
            border-radius: 50%;
            opacity: 0;
            animation: pulse-ring 2s ease-out infinite;
        }

        .whatsapp-tooltip {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: var(--text-dark);
            color: white;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .tooltip-arrow {
            position: absolute;
            top: 100%;
            right: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid var(--text-dark);
        }

        #back-to-top {
            position: fixed;
            bottom: 25px;
            left: 25px;    /* ubah dari right → left */
            right: auto;
            background: #4A90E2 !important;
        }

        .testimonial-text{
            font-size: 1rem;
            padding: 10px;
        }


/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #4A90E2 !important;
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .main-nav.active ul {
        display: flex;
    }

    .hero-content h1 {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    /* Hero Search */
.hero-search {
    max-width: 300px;
    margin: 1rem auto 0;
    position: relative;
}

.hero-search-form {
    display: flex;
    background: white;
    border-radius: 25px;
    padding: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.hero-search-input {
    flex: 1;
    border: none;
    padding: 7.5px 12.5px;
    font-size: 0.5rem;
    border-radius: 50px;
    outline: none;
    color: var(--text);
}

.hero-search-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 7.5px 15px;
    border-radius: 25px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}



.cta-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 6px 15px;
    margin-top: 5px;
    border: none;
    border-radius: 12.5px;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    -webkit-border-radius: 12.5px;
    -moz-border-radius: 12.5px;
    -ms-border-radius: 12.5px;
    -o-border-radius: 12.5px;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}
    /* PERBAIKAN DARK MODE DI MOBILE */
    .dark-mode-toggle {
        order: unset;        
        width: auto;        
        margin-top: 0;       
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonial-text{
        margin: 10px;
    }
}


/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Code Syntax Highlighting */
pre code {
    background-color: #f8f9fa; /* Background abu-abu terang */
    color: #333;               /* Teks gelap */
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Fira Code', 'Roboto Mono', monospace; /* Contoh font keren untuk kode */
    font-size: 0.9rem;
    overflow-x: auto;
}

.emoji {
    /* Mengatur ukuran ikon, 1.5em akan menyesuaikan dengan ukuran font */
    width: 1.5em;
    height: 1.5em;
    
    /* Memastikan ikon sejajar dengan teks di sekitarnya */
    vertical-align: -0.1em;
    
    /* Efek transisi agar terlihat halus saat di-hover */
    transition: transform 0.2s ease-in-out;
}

/* Efek saat ikon di-hover */
.emoji:hover {
    transform: scale(1.1); /* Ikon akan membesar sedikit */
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Dark Mode Styles ===== */
body.dark-mode {
    /* Gunakan warna yang sangat gelap, tapi dengan sedikit hint biru agar senada */
    background-color: #0c1221; 
    color: #f0f4f8; /* Warna teks putih kebiruan, lebih lembut dari #ffffff */
}

body.dark-mode .emoji {
    /* Membalik warna dari gelap menjadi terang */
    filter: invert(1);
    
    /* Opsi tambahan: atur kecerahan jika warna kurang jelas */
    /* filter: invert(1) brightness(1.2); */
}

/* Header & Footer */
body.dark-mode .main-header,
body.dark-mode footer,
body.dark-mode .feature-card {
    /* Gunakan warna yang sedikit lebih terang dari background utama */
    background-color: #1a2233;
    /* Tambahkan bayangan lembut untuk visual yang lebih baik */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

/* Untuk judul dan teks lainnya */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode p,
body.dark-mode .fade-in {
    color: #f0f4f8; 
}

/* Untuk judul artikel agar jelas di dark mode */
body.dark-mode .article-title {
    color: #4A90E2; 
}

/* Untuk konten artikel dan container agar terbaca di dark mode */
body.dark-mode .article-content,
body.dark-mode .article-content-wrapper {
    background-color: #1a2233; /* Mengubah background menjadi warna gelap */
    color: #f0f4f8; /* Memastikan teks di dalamnya berwarna terang */
}

/* Mengatur gaya untuk elemen code di dark mode */
body.dark-mode code,
body.dark-mode pre {
    background-color: #1a2233; /* Memberikan warna background gelap yang konsisten */
    color: #e5e7eb;            /* Mengubah warna teks menjadi abu-abu terang agar terbaca */
}



/* Link */
body.dark-mode a {
    /* Gunakan warna biru terang dari logo, agar link menonjol */
    color: #4A90E2; 
}
body.dark-mode a:hover {
    color: #a8bfff; /* Warna yang lebih terang saat hover */
}

/* Navigasi */
body.dark-mode .main-nav a {
    color: #f0f4f8; /* Tetap putih agar jelas di navbar */
}

/* Tombol dan elemen khusus */
body.dark-mode .cta-buttons a {
    /* Tombol utama gunakan warna biru terang dari branding */
    background-color: #4A90E2;
    color: #fff;
}
body.dark-mode .cta-buttons a:hover {
    background-color: #5b9ffc; /* Efek hover yang bagus */
}
/* Tombol sekunder tetap seperti ghost button */
body.dark-mode .cta-buttons a.secondary-btn {
    background-color: transparent;
    border: 1px solid #4A90E2;
    color: #4A90E2;
}

/* Grid Cards */
body.dark-mode .feature-card {
    border: 1px solid #2d3a51; /* Border yang senada */
}

/* Untuk image background gelapin sedikit */
body.dark-mode .hero-section {
    filter: brightness(0.7); /* Dibuat lebih gelap agar teks lebih menonjol */
}

