/*
Theme Name: GeneratePress Child - Repiw.com (Cyberpunk Pastel)
Theme URI: https://repiw.com
Description: Child theme dengan nuansa cyberpunk pastel - futuristik tapi nyaman
Author: Repiw Team
Author URI: https://repiw.com
Template: generatepress
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
Text Domain: generatepress-child
*/

/* Import GeneratePress parent styles */
@import url("../generatepress/style.css");

/* ============================================
   CYBERPUNK PASTEL COLOR PALETTE
   ============================================ */
:root {
  /* Primary Cyberpunk Colors (Pastel) */
  --cp-pink: #ff69b4;        /* Soft Pink */
  --cp-cyan: #00ffff;        /* Cyan/Aqua */
  --cp-purple: #9333ea;      /* Purple */
  --cp-blue: #3b82f6;        /* Blue */
  --cp-yellow: #fbbf24;      /* Golden Yellow */
  --cp-green: #10b981;       /* Mint Green */
  
  /* Pastel Backgrounds */
  --cp-bg-light: #f8f9ff;    /* Light Lavender */
  --cp-bg-grid: #f0f4ff;     /* Grid Background */
  --cp-bg-dark: #1a1b2e;     /* Dark Blue (for contrast) */
  
  /* Text Colors */
  --cp-text-dark: #1a1b2e;   /* Dark Blue */
  --cp-text-light: #4a5568;  /* Soft Gray */
  --cp-text-neon: #00ffff;   /* Cyan for accents */
  
  /* Borders & Shadows */
  --cp-border: #e2e8f0;
  --cp-border-neon: rgba(0, 255, 255, 0.2);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-neon: 0 0 15px rgba(0, 255, 255, 0.15);
  
  /* Glowing Effects */
  --glow-pink: 0 0 10px rgba(255, 105, 180, 0.3);
  --glow-cyan: 0 0 12px rgba(0, 255, 255, 0.3);
  --glow-purple: 0 0 10px rgba(147, 51, 234, 0.3);
}

/* ============================================
   GLOBAL STYLES - CYBERPUNK PASTEL
   ============================================ */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--cp-text-dark);
  background: var(--cp-bg-light);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(147, 51, 234, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 105, 180, 0.03) 0%, transparent 20%);
  line-height: 1.6;
  position: relative;
}

/* Subtle Grid Pattern Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--cp-text-dark);
  margin-bottom: 1rem;
  position: relative;
}

/* Gradient Text for Headings */
h1, h2 {
  background: linear-gradient(135deg, var(--cp-purple) 0%, var(--cp-pink) 50%, var(--cp-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   TYPOGRAPHY & READING EXPERIENCE
   ============================================ */
.entry-content p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 17px;
  color: var(--cp-text-dark);
  max-width: 75ch;
}

.entry-content a {
  color: var(--cp-cyan);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.entry-content a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cp-cyan);
  transition: width 0.3s ease;
}

.entry-content a:hover {
  color: var(--cp-purple);
}

.entry-content a:hover::after {
  width: 100%;
  box-shadow: var(--glow-cyan);
}

/* Subjudul dengan ikon cyberpunk */
.entry-content h3 {
  position: relative;
  padding-left: 2.5rem;
  margin: 2.5rem 0 1.5rem;
  font-size: 1.5rem;
  color: var(--cp-purple);
}

.entry-content h3::before {
  content: "⚡";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.6rem;
  animation: pulse 2s infinite;
}

.entry-content h4 {
  font-size: 1.25rem;
  margin: 2rem 0 1.2rem;
  color: var(--cp-blue);
  position: relative;
}

.entry-content h4::before {
  content: "▹";
  position: absolute;
  left: -1.5rem;
  color: var(--cp-cyan);
  font-size: 1rem;
}

/* Blockquote styling - Cyberpunk */
.entry-content blockquote {
  border-left: 4px solid var(--cp-cyan);
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  margin: 2.5rem 0;
  color: var(--cp-text-dark);
  font-size: 1.15rem;
  box-shadow: var(--shadow-neon);
  position: relative;
  overflow: hidden;
}

.entry-content blockquote::before {
  content: """;
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 8rem;
  color: rgba(0, 255, 255, 0.1);
  font-family: serif;
  line-height: 1;
}

.entry-content blockquote p {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Code blocks - Hacker Style */
.entry-content code,
.entry-content pre {
  background: linear-gradient(135deg, #1a1b2e 0%, #2d3748 100%);
  color: var(--cp-cyan);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  box-shadow: var(--shadow-neon);
}

.entry-content pre {
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 10px;
  border: 1px solid var(--cp-border-neon);
  position: relative;
}

.entry-content pre::before {
  content: "$";
  position: absolute;
  top: 10px;
  left: 15px;
  color: var(--cp-green);
  font-size: 1.2rem;
  font-weight: bold;
}

.entry-content pre code {
  background: transparent;
  padding: 0;
  color: var(--cp-cyan);
}

/* ============================================
   POST CARDS (HOMEPAGE) - CYBERPUNK
   ============================================ */
.post-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2.5rem;
  background: white;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), 
                    linear-gradient(135deg, var(--cp-purple), var(--cp-cyan));
  background-origin: border-box;
  background-clip: content-box, border-box;
  position: relative;
}

.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.post-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--glow-purple);
}

.post-card:hover::before {
  opacity: 1;
}

.post-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1);
}

.post-card:hover img {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1.1);
}

.category-badge {
  background: linear-gradient(135deg, var(--cp-purple) 0%, var(--cp-pink) 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--glow-purple);
  position: relative;
  overflow: hidden;
}

.category-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.8s ease;
}

.category-badge:hover::before {
  left: 100%;
}

.category-badge.ai { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.category-badge.gaming { background: linear-gradient(135deg, #dc2626, #f87171); }
.category-badge.tech { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.category-badge.howto { background: linear-gradient(135deg, #059669, #34d399); }
.category-badge.review { background: linear-gradient(135deg, #d97706, #fbbf24); }

/* ============================================
   BUTTONS - CYBERPUNK GLOW
   ============================================ */
.button,
a.button,
input[type="submit"],
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--cp-purple) 0%, var(--cp-pink) 100%);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 1rem 2.2rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow-purple);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover,
a.button:hover,
input[type="submit"]:hover,
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--glow-purple), 0 10px 25px rgba(147, 51, 234, 0.4);
}

.button.secondary {
  background: linear-gradient(135deg, #64748b, #94a3b8);
  box-shadow: 0 0 8px rgba(100, 116, 139, 0.2);
}

.button.secondary:hover {
  background: linear-gradient(135deg, #475569, #64748b);
  transform: translateY(-3px);
}

/* Cyan Button */
.button.cyan {
  background: linear-gradient(135deg, var(--cp-cyan), #00d4ff);
  box-shadow: var(--glow-cyan);
}

.button.cyan:hover {
  box-shadow: var(--glow-cyan), 0 10px 25px rgba(0, 255, 255, 0.3);
}

/* ============================================
   TABLE OF CONTENTS (TOC) - CYBERPUNK
   ============================================ */
.toc-sticky {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, white 0%, #f8f9ff 100%);
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md), var(--glow-cyan);
  margin-bottom: 2.5rem;
  border: 2px solid var(--cp-border-neon);
  max-width: 320px;
  backdrop-filter: blur(10px);
}

.toc-sticky h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  color: var(--cp-purple);
  position: relative;
  padding-bottom: 0.5rem;
}

.toc-sticky h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--cp-cyan);
  border-radius: 3px;
}

.toc-sticky ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-sticky li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.toc-sticky li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cp-cyan);
  font-size: 1.2rem;
  top: -2px;
}

.toc-sticky a {
  color: var(--cp-text-dark);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.toc-sticky a:hover {
  color: var(--cp-purple);
  border-left-color: var(--cp-cyan);
  padding-left: 0.8rem;
  transform: translateX(5px);
}

/* ============================================
   AD UNITS STYLING - CYBERPUNK
   ============================================ */
.ad-unit {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 2.5rem 0;
  border: 2px dashed var(--cp-border-neon);
  font-size: 0.9rem;
  color: var(--cp-text-light);
  position: relative;
  overflow: hidden;
}

.ad-unit::before {
  content: "ADVERTISEMENT";
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 0.7rem;
  color: var(--cp-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.ad-unit.sponsored-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--cp-cyan);
  display: block;
}

/* Sticky ad at bottom */
.sticky-ad {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, white, #f8f9ff);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15), var(--glow-cyan);
  z-index: 999;
  border-top: 2px solid var(--cp-cyan);
  animation: slideUp 0.5s ease;
}

/* ============================================
   RELATED POSTS - CYBERPUNK
   ============================================ */
.related-posts {
  margin: 3.5rem 0;
  padding: 2.2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, white 100%);
  border-radius: 16px;
  border: 2px solid var(--cp-border-neon);
  position: relative;
  overflow: hidden;
}

.related-posts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cp-purple), var(--cp-cyan), var(--cp-pink));
}

.related-posts h3 {
  margin-top: 0;
  margin-bottom: 1.8rem;
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
}

.related-posts h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--cp-cyan);
  border-radius: 3px;
}

.related-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-posts li {
  display: flex;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cp-border);
  transition: all 0.3s ease;
}

.related-posts li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-posts li:hover {
  transform: translateX(10px);
  border-bottom-color: var(--cp-cyan);
}

.related-posts img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 1.2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.related-posts li:hover img {
  border-color: var(--cp-cyan);
  transform: scale(1.05);
}

.related-posts .related-content {
  flex: 1;
}

.related-posts a {
  color: var(--cp-text-dark);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-weight: 600;
  position: relative;
}

.related-posts a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cp-cyan);
  transition: width 0.3s ease;
}

.related-posts a:hover {
  color: var(--cp-purple);
}

.related-posts a:hover::after {
  width: 100%;
}

.related-posts .related-meta {
  font-size: 0.85rem;
  color: var(--cp-text-light);
  margin-top: 0.4rem;
  display: block;
}

/* ============================================
   SOCIAL SHARE BUTTONS - CYBERPUNK
   ============================================ */
.social-share {
  display: flex;
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 1.8rem;
  background: linear-gradient(135deg, #f8f9ff 0%, white 100%);
  border-radius: 16px;
  border: 2px solid var(--cp-border-neon);
  position: relative;
  overflow: hidden;
}

.social-share::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cp-pink), var(--cp-purple), var(--cp-cyan));
}

.social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 140px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.social-share a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.social-share a:hover::before {
  left: 100%;
}

.social-share a.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-share a.twitter:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.social-share a.facebook {
  background: linear-gradient(135deg, #1877f2, #1463d1);
}

.social-share a.facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-share a.whatsapp {
  background: linear-gradient(135deg, #25d366, #1fa055);
}

.social-share a.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ============================================
   SIDEBAR - CYBERPUNK
   ============================================ */
.sidebar {
  margin-top: 2rem;
}

.sidebar .widget {
  background: linear-gradient(135deg, white 0%, #f8f9ff 100%);
  padding: 1.8rem;
  border-radius: 14px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--cp-border-neon);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar .widget:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), var(--glow-cyan);
}

.sidebar .widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cp-purple), var(--cp-cyan));
}

.sidebar .widget h2,
.sidebar .widget h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: var(--cp-purple);
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar .widget h2::after,
.sidebar .widget h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--cp-cyan);
  border-radius: 3px;
}

.sidebar .widget ul {
  list-style: none;
  padding: 0;
}

.sidebar .widget li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--cp-border);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.2rem;
}

.sidebar .widget li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--cp-cyan);
  font-size: 0.9rem;
  top: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar .widget li:hover::before {
  opacity: 1;
}

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

.sidebar .widget a {
  color: var(--cp-text-dark);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.sidebar .widget a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cp-cyan);
  transition: width 0.3s ease;
}

.sidebar .widget a:hover {
  color: var(--cp-purple);
  transform: translateX(5px);
}

.sidebar .widget a:hover::after {
  width: 100%;
}

/* Special Widget - Mengapa Repiw (Cyberpunk) */
.widget_mengapa_repiw {
  background: linear-gradient(135deg, var(--cp-purple), var(--cp-blue));
  color: white;
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-purple);
}

.widget_mengapa_repiw::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s infinite;
}

.widget_mengapa_repiw h2 {
  color: white;
  border-bottom: none;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.widget_mengapa_repiw p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.widget_mengapa_repiw .btn-primary {
  background: white;
  color: var(--cp-purple);
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.widget_mengapa_repiw .btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTION - CYBERPUNK
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, var(--cp-purple) 0%, var(--cp-blue) 50%, var(--cp-cyan) 100%);
  color: white;
  padding: 5rem 2.5rem;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg), var(--glow-purple), var(--glow-cyan);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 6s infinite;
}

.hero-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  background: linear-gradient(135deg, white, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.hero-section .btn-primary {
  background: white;
  color: var(--cp-purple);
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
}

.hero-section .btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), var(--glow-purple);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .entry-content p {
    font-size: 18px;
  }

  .hero-section {
    padding: 3.5rem 1.5rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1.15rem;
  }

  .toc-sticky {
    position: relative;
    top: auto;
    max-width: 100%;
    margin-bottom: 1.8rem;
  }

  .related-posts li {
    flex-direction: column;
  }

  .related-posts img {
    width: 100%;
    height: 160px;
    margin-right: 0;
    margin-bottom: 1.2rem;
  }

  .social-share {
    flex-direction: column;
  }

  .social-share a {
    justify-content: center;
    min-width: auto;
  }

  .post-card img {
    height: 200px;
  }

  .category-badge {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-section h1 {
    font-size: 1.9rem;
  }

  .entry-content h3 {
    font-size: 1.35rem;
    padding-left: 2rem;
  }

  .entry-content h3::before {
    font-size: 1.3rem;
  }

  .button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .post-card img {
    height: 180px;
  }
}

<!-- wp:generateblocks/element {"uniqueId":"homepage-container","tagName":"div","styles":{"maxWidth":"1200px","marginLeft":"auto","marginRight":"auto","paddingLeft":"20px","paddingRight":"20px"},"css":".gb-element-homepage-container{max-width:1200px;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}"} -->
<div class="gb-element-homepage-container"><!-- wp:generateblocks/element {"uniqueId":"section-header","tagName":"div","styles":{"textAlign":"center","marginBottom":"40px","position":"relative"},"css":".gb-element-section-header{text-align:center;margin-bottom:40px;position:relative}"} -->
<div class="gb-element-section-header"><!-- wp:generateblocks/text {"uniqueId":"section-title","tagName":"h1","styles":{"fontSize":"42px","fontWeight":"800","color":"var(--cp-purple)","marginBottom":"15px","background":"linear-gradient(135deg, var(--cp-purple) 0%, var(--cp-pink) 50%, var(--cp-cyan) 100%)","backgroundClip":"text","WebkitBackgroundClip":"text","WebkitTextFillColor":"transparent","textShadow":"0 4px 15px rgba(0, 255, 255, 0.2)","position":"relative","display":"inline-block"},"css":".gb-text-section-title{color:var(--cp-purple);font-size:42px;font-weight:800;margin-bottom:15px;background:linear-gradient(135deg,var(--cp-purple) 0%,var(--cp-pink) 50%,var(--cp-cyan) 100%);background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;text-shadow:0 4px 15px rgba(0,255,255,0.2);position:relative;display:inline-block}"} -->
<h1 class="gb-text gb-text-section-title">⚡ Repiw Terbaru</h1>
<!-- /wp:generateblocks/text -->

<!-- wp:generateblocks/text {"uniqueId":"section-subtitle","tagName":"p","styles":{"fontSize":"18px","color":"var(--cp-text-light)","maxWidth":"600px","marginLeft":"auto","marginRight":"auto","marginBottom":"0","lineHeight":"1.6"},"css":".gb-text-section-subtitle{color:var(--cp-text-light);font-size:18px;max-width:600px;margin-left:auto;margin-right:auto;margin-bottom:0;line-height:1.6}"} -->
<p class="gb-text gb-text-section-subtitle">Temukan ulasan terbaru, tips teknologi, dan insight menarik yang bikin kamu makin pinter!</p>
<!-- /wp:generateblocks/text -->

<!-- wp:generateblocks/element {"uniqueId":"divider","tagName":"div","styles":{"height":"4px","background":"linear-gradient(90deg, transparent, var(--cp-cyan), var(--cp-purple), var(--cp-pink), transparent)","marginTop":"20px","borderRadius":"2px"},"css":".gb-element-divider{height:4px;background:linear-gradient(90deg,transparent,var(--cp-cyan),var(--cp-purple),var(--cp-pink),transparent);margin-top:20px;border-radius:2px}"} -->
<div class="gb-element-divider"></div>
<!-- /wp:generateblocks/element --></div>
<!-- /wp:generateblocks/element -->

<!-- wp:generateblocks/query {"uniqueId":"80e48dc7","tagName":"div","query":{"post_type":["post"],"posts_per_page":10},"inheritQuery":true} -->
<div><!-- wp:generateblocks/element {"uniqueId":"posts-grid","tagName":"div","styles":{"display":"grid","gridTemplateColumns":"repeat(2, 1fr)","gap":"30px","@media (max-width:1024px)":{"gridTemplateColumns":"1fr"},"@media (max-width:767px)":{"gridTemplateColumns":"1fr","gap":"25px"}},"css":".gb-element-posts-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:30px}@media (max-width:1024px){.gb-element-posts-grid{grid-template-columns:1fr}}@media (max-width:767px){.gb-element-posts-grid{grid-template-columns:1fr;gap:25px}}"} -->
<div class="gb-element-posts-grid"><!-- wp:generateblocks/looper {"uniqueId":"9817aa94","tagName":"div"} -->
<div class="gb-looper-9817aa94"><!-- wp:generateblocks/loop-item {"uniqueId":"35fcb75c","tagName":"div","styles":{"backgroundColor":"linear-gradient(135deg, #ffffff 0%, var(--cp-bg-light) 100%)","borderRadius":"16px","boxShadow":"0 10px 25px rgba(0, 0, 0, 0.08), 0 0 15px rgba(0, 255, 255, 0.1)","border":"2px solid rgba(0, 255, 255, 0.15)","transition":"all 0.4s cubic-bezier(0.4, 0, 0.2, 1)","overflow":"hidden","position":"relative"},"css":".gb-loop-item-35fcb75c{background:linear-gradient(135deg,#ffffff 0%,var(--cp-bg-light) 100%);border-radius:16px;box-shadow:0 10px 25px rgba(0,0,0,0.08),0 0 15px rgba(0,255,255,0.1);border:2px solid rgba(0,255,255,0.15);transition:all 0.4s cubic-bezier(0.4,0,0.2,1);overflow:hidden;position:relative}","htmlAttributes":{"onMouseEnter":"this.style.transform='translateY(-10px) scale(1.02)';this.style.boxShadow='0 15px 35px rgba(0,0,0,0.12), 0 0 20px rgba(0,255,255,0.2)';this.style.borderColor='rgba(0,255,255,0.3)'", "onMouseLeave":"this.style.transform='translateY(0) scale(1)';this.style.boxShadow='0 10px 25px rgba(0,0,0,0.08), 0 0 15px rgba(0,255,255,0.1)';this.style.borderColor='rgba(0,255,255,0.15)'", "style":"transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);"}} -->
<div class="gb-loop-item gb-loop-item-35fcb75c"><!-- wp:generateblocks/element {"uniqueId":"top-gradient-border","tagName":"div","styles":{"position":"absolute","top":"0","left":"0","right":"0","height":"5px","background":"linear-gradient(90deg, var(--cp-purple), var(--cp-cyan), var(--cp-pink))","zIndex":"1","borderRadius":"16px 16px 0 0"},"css":".gb-element-top-gradient-border{position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg,var(--cp-purple),var(--cp-cyan),var(--cp-pink));z-index:1;border-radius:16px 16px 0 0}"} -->
<div class="gb-element-top-gradient-border"></div>
<!-- /wp:generateblocks/element -->

<!-- wp:generateblocks/element {"uniqueId":"post-content","tagName":"div","styles":{"padding":"30px"},"css":".gb-element-post-content{padding:30px}"} -->
<div class="gb-element-post-content"><!-- wp:generateblocks/text {"uniqueId":"ed5c40c8","tagName":"h3","styles":{"fontSize":"22px","fontWeight":"700","color":"var(--cp-purple)","marginBottom":"10px","lineHeight":"1.4","transition":"color 0.3s ease"},"css":".gb-text-ed5c40c8{color:var(--cp-purple);font-size:22px;font-weight:700;margin-bottom:10px;line-height:1.4;transition:color 0.3s ease}","htmlAttributes":{"onMouseEnter":"this.style.color='var(--cp-cyan)'", "onMouseLeave":"this.style.color='var(--cp-purple)'", "style":"transition: color 0.3s ease;"}} -->
<h3 class="gb-text gb-text-ed5c40c8">{{post_title}}</h3>
<!-- /wp:generateblocks/text -->

<!-- wp:generateblocks/text {"uniqueId":"dc1f9606","tagName":"p","styles":{"fontSize":"14px","color":"var(--cp-text-light)","marginBottom":"15px"},"css":".gb-text-dc1f9606{font-size:14px;color:var(--cp-text-light);margin-bottom:15px}","htmlAttributes":{},"metadata":{}} -->
<p class="gb-text gb-text-dc1f9606">📅 {{post_date}}</p>
<!-- /wp:generateblocks/text -->

<!-- wp:generateblocks/text {"uniqueId":"9b007de0","tagName":"div","styles":{"fontSize":"16px","lineHeight":"1.7","color":"var(--cp-text-dark)","marginBottom":"20px"},"css":".gb-text-9b007de0{font-size:16px;line-height:1.7;color:var(--cp-text-dark);margin-bottom:20px}","htmlAttributes":{},"metadata":{}} -->
<div class="gb-text">{{post_excerpt length:20|pre:...}}</div>
<!-- /wp:generateblocks/text -->

<!-- wp:generateblocks/text {"uniqueId":"77db8450","tagName":"a","styles":{"display":"inline-flex","alignItems":"center","backgroundColor":"linear-gradient(135deg, var(--cp-purple) 0%, var(--cp-pink) 100%)","color":"#ffffff","paddingTop":"12px","paddingRight":"22px","paddingBottom":"12px","paddingLeft":"22px","textDecoration":"none","fontWeight":"700","borderRadius":"10px","marginTop":"15px","boxShadow":"0 4px 15px rgba(147, 51, 234, 0.3)","textTransform":"uppercase","letterSpacing":"1px","transition":"all 0.3s ease","gap":"8px","\u0026:is(:hover, :focus)":{"backgroundColor":"linear-gradient(135deg, var(--cp-purple) 0%, var(--cp-pink) 100%)","color":"#ffffff","transform":"translateY(-3px) scale(1.05)","boxShadow":"0 8px 25px rgba(147, 51, 234, 0.4), 0 0 15px rgba(255, 105, 180, 0.3)"},"fontSize":"14px"},"css":".gb-text-77db8450{align-items:center;background:linear-gradient(135deg,var(--cp-purple) 0%,var(--cp-pink) 100%);color:#ffffff;display:inline-flex;font-size:14px;font-weight:700;margin-top:15px;text-decoration:none;padding:12px 22px;border-radius:10px;box-shadow:0 4px 15px rgba(147,51,234,0.3);text-transform:uppercase;letter-spacing:1px;transition:all 0.3s ease;gap:8px}.gb-text-77db8450:is(:hover,:focus){background:linear-gradient(135deg,var(--cp-purple) 0%,var(--cp-pink) 100%);color:#ffffff;transform:translateY(-3px) scale(1.05);box-shadow:0 8px 25px rgba(147,51,234,0.4),0 0 15px rgba(255,105,180,0.3)}","htmlAttributes":{"href":"{{post_permalink}}"}} -->
<a class="gb-text gb-text-77db8450" href="{{post_permalink}}">🚀 Read More</a>
<!-- /wp:generateblocks/text --></div>
<!-- /wp:generateblocks/element --></div>
<!-- /wp:generateblocks/loop-item --></div>
<!-- /wp:generateblocks/looper --></div>
<!-- /wp:generateblocks/element -->

<!-- wp:generateblocks/element {"uniqueId":"pagination-container","tagName":"div","styles":{"marginTop":"50px","textAlign":"center"},"css":".gb-element-pagination-container{text-align:center;margin-top:50px}"} -->
<div class="gb-element-pagination-container"><!-- wp:generateblocks/text {"uniqueId":"pagination-title","tagName":"h3","styles":{"fontSize":"20px","color":"var(--cp-cyan)","marginBottom":"20px","fontWeight":"700","letterSpacing":"2px","textTransform":"uppercase"},"css":".gb-text-pagination-title{color:var(--cp-cyan);font-size:20px;font-weight:700;margin-bottom:20px;letter-spacing:2px;text-transform:uppercase}"} -->
<h3 class="gb-text gb-text-pagination-title">Navigate Pages</h3>
<!-- /wp:generateblocks/text -->

<!-- wp:generateblocks/element {"uniqueId":"pagination-wrapper","tagName":"div","styles":{"display":"inline-flex","gap":"10px","flexWrap":"wrap","justifyContent":"center"},"css":".gb-element-pagination-wrapper{display:inline-flex;gap:10px;flex-wrap:wrap;justify-content:center}"} -->
<div class="gb-element-pagination-wrapper"><!-- wp:generateblocks/query-page-numbers {"uniqueId":"7e3c2d09","tagName":"nav","styles":{}} -->
<nav class="gb-query-page-numbers-7e3c2d09"><!-- Custom Pagination will be styled via CSS --></nav>
<!-- /wp:generateblocks/query-page-numbers --></div>
<!-- /wp:generateblocks/element --></div>
<!-- /wp:generateblocks/element --></div>
<!-- /wp:generateblocks/query --></div>
<!-- /wp:generateblocks/element -->