/*
Theme Name: LAPAKSPIN Developer Edition
Theme URI: https://lotokazan.com/
Description: Custom WordPress theme for LAPAKSPIN - Platform Hiburan Digital Terdepan di Indonesia. Lapak Spin menyediakan akses ke ribuan permainan premium dari provider terbaik dunia.
Version: 2.4.1
Author: LotoKazan Dev Team
Author URI: https://lotokazan.com/
License: Proprietary
License URI: https://lotokazan.com/license/
Text Domain: lapakspin
Tags: gaming, entertainment, digital-platform, lapakspin, lapak-spin, responsive, full-width-template
Requires at least: 6.0
Tested up to: 6.7.2
Requires PHP: 8.0
*/

/* ============================
   WordPress Theme: Developer Edition
   Theme: LAPAKSPIN — Premium Gaming Portal
   Version: 2.4.1
   Author: LotoKazan Dev Team
   ============================ */

/* === CSS Variables === */
:root {
  --wp-primary: #1B1464;
  --wp-secondary: #F7B733;
  --wp-accent: #FC4A1A;
  --wp-dark: #0a0a1a;
  --wp-darker: #06060f;
  --wp-light: #f0f2f5;
  --wp-text: #2d2d3a;
  --wp-text-light: #6b7280;
  --wp-text-muted: #9ca3af;
  --wp-border: #e5e7eb;
  --wp-card: #ffffff;
  --wp-gradient-primary: linear-gradient(135deg, #1B1464, #2d1b8e);
  --wp-gradient-accent: linear-gradient(135deg, #F7B733, #FC4A1A);
  --wp-font-heading: 'DM Serif Display', Georgia, serif;
  --wp-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --wp-radius: 8px;
  --wp-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --wp-shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --wp-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --wp-container: 1200px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--wp-font-body);
  color: var(--wp-text);
  background: var(--wp-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--wp-font-heading); line-height: 1.3; color: var(--wp-dark); }

.wp-container { max-width: var(--wp-container); margin: 0 auto; padding: 0 20px; }

/* === WordPress Admin Bar Simulation === */
.wp-admin-bar {
  background: #1d2327;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 13px;
  color: #c3c4c7;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.wp-admin-bar a { color: #c3c4c7; margin-right: 16px; font-size: 12px; }
.wp-admin-bar a:hover { color: #00b9eb; }
.wp-admin-bar .ab-right { margin-left: auto; }

body { padding-top: 32px; }

/* === Top Bar === */
.site-top-bar {
  background: var(--wp-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-top-bar .wp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 5px; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
}
.btn-login-top {
  background: transparent;
  border: 1px solid var(--wp-secondary);
  color: var(--wp-secondary);
}
.btn-login-top:hover { background: var(--wp-secondary); color: var(--wp-dark); }
.btn-daftar-top {
  background: var(--wp-gradient-accent);
  color: #fff;
  border: none;
}
.btn-daftar-top:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* === Header === */
.site-header {
  background: var(--wp-darker);
  padding: 16px 0;
  position: sticky;
  top: 32px;
  z-index: 999;
  border-bottom: 3px solid var(--wp-secondary);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding .logo-text {
  font-family: var(--wp-font-heading);
  font-size: 28px;
  color: #fff;
  letter-spacing: -0.5px;
}
.site-branding .logo-text span { color: var(--wp-secondary); }
.site-branding .tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === Navigation === */
.main-navigation ul { display: flex; gap: 0; }
.main-navigation li a {
  padding: 12px 18px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 14px;
  display: block;
  position: relative;
}
.main-navigation li a:hover,
.main-navigation li a.current {
  color: var(--wp-secondary);
}
.main-navigation li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--wp-secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.main-navigation li a:hover::after,
.main-navigation li a.current::after {
  width: 60%;
}

.header-cta { display: flex; gap: 10px; }
.btn-header {
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.btn-header-login {
  background: transparent;
  border: 1.5px solid var(--wp-secondary);
  color: var(--wp-secondary);
}
.btn-header-login:hover { background: var(--wp-secondary); color: var(--wp-dark); }
.btn-header-daftar {
  background: var(--wp-gradient-accent);
  color: #fff;
  border: none;
}
.btn-header-daftar:hover { filter: brightness(1.1); }

/* === Mobile Menu Toggle === */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* === Hero Section === */
.hero-section {
  background: var(--wp-gradient-primary);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,183,51,0.1), transparent 60%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,74,26,0.08), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
}
.hero-content h1 .highlight { color: var(--wp-secondary); }
.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; }
.btn-hero {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary {
  background: var(--wp-gradient-accent);
  color: #fff;
}
.btn-hero-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(252,74,26,0.35); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); border-color: var(--wp-secondary); }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--wp-secondary);
  display: block;
}
.hero-stat-item .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 420px;
}
.hero-card h3 { color: #fff; font-size: 20px; margin-bottom: 16px; }
.hero-card-features { display: flex; flex-direction: column; gap: 12px; }
.hero-card-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.hero-card-feature .feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--wp-gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* === Breadcrumb === */
.breadcrumb-section {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--wp-border);
  font-size: 13px;
  color: var(--wp-text-muted);
}
.breadcrumb-section a { color: var(--wp-primary); }
.breadcrumb-section a:hover { text-decoration: underline; }
.breadcrumb-section span.sep { margin: 0 8px; }

/* === Content Layout === */
.content-area {
  padding: 40px 0;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
}

/* === Main Content === */
.main-content article {
  background: var(--wp-card);
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow);
  overflow: hidden;
  margin-bottom: 30px;
}
.article-header {
  padding: 30px 30px 0;
}
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--wp-text-muted);
  margin-bottom: 12px;
}
.article-meta .category {
  background: var(--wp-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.article-header h2 {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.35;
}
.article-header h2 a { color: var(--wp-dark); }
.article-header h2 a:hover { color: var(--wp-primary); }
.article-body {
  padding: 20px 30px 30px;
}
.article-body p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--wp-text);
}
.article-body h3 {
  font-size: 22px;
  margin: 28px 0 14px;
  color: var(--wp-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--wp-secondary);
  display: inline-block;
}
.article-body h4 {
  font-size: 18px;
  margin: 22px 0 10px;
  color: var(--wp-primary);
}
.article-body ul {
  margin: 14px 0 18px 20px;
  list-style: disc;
}
.article-body ul li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--wp-text);
  margin-bottom: 6px;
}
.article-body a {
  color: var(--wp-primary);
  font-weight: 600;
}
.article-body a:hover { color: var(--wp-accent); text-decoration: underline; }
.article-body blockquote {
  margin: 20px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--wp-secondary);
  background: #fefce8;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--wp-text);
}

/* === Info Table (WP Style) === */
.wp-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  overflow: hidden;
}
.wp-info-table thead th {
  background: var(--wp-primary);
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.wp-info-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--wp-border);
  font-size: 14px;
}
.wp-info-table tbody tr:nth-child(even) { background: #f9fafb; }
.wp-info-table tbody tr:hover { background: #fef3c7; }

/* === Feature Cards === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.feature-card {
  background: var(--wp-card);
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--wp-secondary);
  box-shadow: var(--wp-shadow-md);
  transform: translateY(-3px);
}
.feature-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--wp-gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.feature-card h4 {
  font-family: var(--wp-font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--wp-dark);
}
.feature-card p {
  font-size: 13px;
  color: var(--wp-text-light);
  line-height: 1.6;
}

/* === FAQ Section (WP Accordion) === */
.wp-faq-section {
  margin: 24px 0;
}
.wp-faq-item {
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--wp-card);
}
.wp-faq-question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}
.wp-faq-question:hover { background: #f9fafb; }
.wp-faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--wp-primary);
  font-weight: 700;
  transition: transform 0.3s ease;
}
.wp-faq-item.active .wp-faq-question::after {
  transform: rotate(45deg);
  color: var(--wp-accent);
}
.wp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}
.wp-faq-item.active .wp-faq-answer {
  max-height: 300px;
  padding: 0 20px 16px;
}
.wp-faq-answer p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--wp-text-light);
}

/* === Sidebar (WordPress Style) === */
.sidebar .widget {
  background: var(--wp-card);
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow);
  margin-bottom: 24px;
  overflow: hidden;
}
.widget-title {
  font-family: var(--wp-font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 20px;
  background: var(--wp-dark);
  color: #fff;
  border-bottom: 3px solid var(--wp-secondary);
}
.widget-content { padding: 20px; }

/* === CTA Widget === */
.widget-cta {
  text-align: center;
  background: var(--wp-gradient-primary);
  padding: 28px 20px;
  border-radius: var(--wp-radius);
  position: relative;
  overflow: hidden;
}
.widget-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,183,51,0.15), transparent 60%);
}
.widget-cta h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}
.widget-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-bottom: 18px;
  position: relative;
}
.widget-cta .btn-widget {
  display: block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
}
.widget-cta .btn-widget-login {
  background: transparent;
  border: 1.5px solid var(--wp-secondary);
  color: var(--wp-secondary);
}
.widget-cta .btn-widget-daftar {
  background: var(--wp-gradient-accent);
  color: #fff;
  border: none;
}

/* === Info Widget === */
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-list-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wp-border);
}
.info-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-list-item .label { color: var(--wp-text-muted); }
.info-list-item .value { font-weight: 600; color: var(--wp-dark); }

/* === Stats Banner === */
.stats-banner {
  background: var(--wp-darker);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--wp-radius);
}
.stat-card .stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--wp-secondary);
  display: block;
}
.stat-card .stat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* === CTA Banner === */
.cta-banner {
  background: var(--wp-gradient-primary);
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 28px;
  position: relative;
}
.cta-banner .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative;
}

/* === Footer === */
.site-footer {
  background: var(--wp-darker);
  padding: 50px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text {
  font-family: var(--wp-font-heading);
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand .logo-text span { color: var(--wp-secondary); }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.footer-col h4 {
  font-family: var(--wp-font-body);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-col ul li a:hover { color: var(--wp-secondary); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--wp-secondary); }


/* === WordPress Comment Section Style === */
.wp-comments-area {
  background: var(--wp-card);
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow);
  padding: 30px;
  margin-bottom: 30px;
}
.wp-comments-title {
  font-family: var(--wp-font-heading);
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--wp-border);
  color: var(--wp-dark);
}
.wp-comment {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--wp-border);
}
.wp-comment:last-child {
  border-bottom: none;
}
.wp-comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.wp-comment-content {
  flex: 1;
}
.wp-comment-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--wp-dark);
  margin-bottom: 2px;
}
.wp-comment-date {
  font-size: 12px;
  color: var(--wp-text-muted);
  margin-bottom: 8px;
}
.wp-comment-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--wp-text);
}

/* === Marquee/Announcement Bar === */
.wp-announcement {
  background: var(--wp-secondary);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.wp-announcement-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-size: 13px;
  font-weight: 600;
  color: var(--wp-dark);
}
@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* === WordPress Pagination === */
.wp-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 30px 0;
}
.wp-pagination a,
.wp-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--wp-border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wp-text);
  background: var(--wp-card);
  transition: all 0.2s ease;
}
.wp-pagination span.current {
  background: var(--wp-primary);
  color: #fff;
  border-color: var(--wp-primary);
}
.wp-pagination a:hover {
  background: var(--wp-light);
  border-color: var(--wp-primary);
  color: var(--wp-primary);
}

/* === Back to Top === */
.wp-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--wp-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 20px;
  box-shadow: var(--wp-shadow-md);
  z-index: 900;
  transition: all 0.3s ease;
}
.wp-back-to-top:hover {
  background: var(--wp-accent);
  transform: translateY(-3px);
}
.wp-back-to-top.visible {
  display: flex;
}

/* === WordPress Search Form === */
.wp-search-form {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}
.wp-search-form input[type="text"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--wp-border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 13px;
  font-family: var(--wp-font-body);
  outline: none;
  background: var(--wp-light);
  color: var(--wp-text);
}
.wp-search-form input[type="text"]:focus {
  border-color: var(--wp-primary);
  background: #fff;
}
.wp-search-form button {
  padding: 10px 16px;
  background: var(--wp-primary);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--wp-font-body);
}

/* === Progress/Loading Indicator === */
.wp-progress-bar {
  position: fixed;
  top: 32px;
  left: 0;
  height: 3px;
  background: var(--wp-gradient-accent);
  z-index: 10000;
  transition: width 0.15s ease;
}

/* === Additional Typography === */
.article-body strong {
  color: var(--wp-dark);
}
.article-body em {
  font-style: italic;
  color: var(--wp-text);
}
.article-body code {
  background: var(--wp-light);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 13px;
  color: var(--wp-accent);
  font-family: 'Courier New', monospace;
}

/* === Share Buttons === */
.wp-share-buttons {
  display: flex;
  gap: 8px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--wp-border);
  border-bottom: 1px solid var(--wp-border);
}
.wp-share-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.wp-share-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.wp-share-fb { background: #1877f2; color: #fff; }
.wp-share-tw { background: #1da1f2; color: #fff; }
.wp-share-wa { background: #25d366; color: #fff; }
.wp-share-tg { background: #0088cc; color: #fff; }

/* === Notification Toast === */
.wp-notification {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: var(--wp-card);
  border: 1px solid var(--wp-border);
  border-left: 4px solid var(--wp-secondary);
  border-radius: var(--wp-radius);
  padding: 14px 20px;
  box-shadow: var(--wp-shadow-lg);
  max-width: 300px;
  z-index: 800;
  display: none;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.wp-notification.active { display: block; }
.wp-notification-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--wp-dark);
  margin-bottom: 4px;
}
.wp-notification-text {
  font-size: 12px;
  color: var(--wp-text-light);
  line-height: 1.6;
}
.wp-notification-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 16px;
  color: var(--wp-text-muted);
  cursor: pointer;
}

/* === Cookie Consent === */
.wp-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--wp-darker);
  padding: 16px 0;
  z-index: 950;
  display: none;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.wp-cookie-consent.active { display: block; }
.wp-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.wp-cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.wp-cookie-text a { color: var(--wp-secondary); }
.wp-cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  background: var(--wp-secondary);
  color: var(--wp-dark);
  border: none;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--wp-font-body);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-image { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .wp-admin-bar { display: none; }
  body { padding-top: 0; }
  .main-navigation { display: none; }
  .mobile-toggle { display: block; }
  .header-cta { display: none; }
  .hero-content h1 { font-size: 28px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-top-bar .wp-container { flex-direction: column; gap: 6px; text-align: center; }
  .cta-banner .cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   WordPress Theme Additional Styles
   LAPAKSPIN - Developer Edition v2.4.1
   ============================================ */

/* === WordPress Gutenberg Block Styles === */
.wp-block-group {
  padding: 24px;
  margin-bottom: 24px;
}
.wp-block-columns {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.wp-block-column {
  flex: 1;
}
.has-background {
  padding: 20px;
  border-radius: var(--wp-radius);
}
.has-primary-background-color { background: var(--wp-primary); color: #fff; }
.has-secondary-background-color { background: var(--wp-secondary); color: var(--wp-dark); }
.has-accent-background-color { background: var(--wp-accent); color: #fff; }
.has-text-align-center { text-align: center; }
.has-text-align-left { text-align: left; }
.has-text-align-right { text-align: right; }

/* === WordPress Button Styles === */
.wp-block-button {
  margin-bottom: 16px;
}
.wp-block-button__link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--wp-radius);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--wp-font-body);
}
.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--wp-primary);
  color: #fff;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--wp-accent);
  transform: translateY(-2px);
  box-shadow: var(--wp-shadow-md);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 2px solid var(--wp-primary);
  color: var(--wp-primary);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--wp-primary);
  color: #fff;
}

/* === WordPress Table Block === */
.wp-block-table {
  margin-bottom: 24px;
  overflow-x: auto;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.wp-block-table td,
.wp-block-table th {
  padding: 12px 16px;
  border: 1px solid var(--wp-border);
  text-align: left;
}
.wp-block-table th {
  background: var(--wp-light);
  font-weight: 600;
  color: var(--wp-dark);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background: var(--wp-light);
}

/* === WordPress Image Block === */
.wp-block-image {
  margin-bottom: 24px;
}
.wp-block-image img {
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow);
}
.wp-block-image figcaption {
  font-size: 12px;
  color: var(--wp-text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* === WordPress Cover Block === */
.wp-block-cover {
  position: relative;
  padding: 60px 40px;
  border-radius: var(--wp-radius);
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.wp-block-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.wp-block-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* === WordPress Separator === */
.wp-block-separator {
  border: none;
  border-top: 2px solid var(--wp-border);
  margin: 30px 0;
}
.wp-block-separator.is-style-wide {
  border-top-width: 3px;
}
.wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}
.wp-block-separator.is-style-dots::before {
  content: '...';
  font-size: 24px;
  color: var(--wp-text-muted);
  letter-spacing: 8px;
}

/* === WordPress List Block === */
.wp-block-list {
  margin: 14px 0 24px 20px;
  list-style: disc;
}
.wp-block-list li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
  color: var(--wp-text);
}

/* === WordPress Quote Block === */
.wp-block-quote {
  border-left: 4px solid var(--wp-secondary);
  padding: 20px 24px;
  margin: 24px 0;
  background: #fefce8;
  border-radius: 0 var(--wp-radius) var(--wp-radius) 0;
  font-style: italic;
}
.wp-block-quote cite {
  display: block;
  font-size: 13px;
  color: var(--wp-text-muted);
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}

/* === WordPress Media & Text Block === */
.wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 24px;
}
.wp-block-media-text.has-media-on-the-right {
  direction: rtl;
}
.wp-block-media-text.has-media-on-the-right > * {
  direction: ltr;
}

/* === WordPress Group Block Variations === */
.wp-block-group.has-border {
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
}
.wp-block-group.has-shadow {
  box-shadow: var(--wp-shadow-md);
}

/* === WordPress Site Identity === */
.custom-logo-link img {
  max-height: 60px;
  width: auto;
}

/* === WordPress Widget Areas === */
.widget-area .widget + .widget {
  margin-top: 24px;
}
.widget-area .widget select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  font-size: 14px;
  font-family: var(--wp-font-body);
  background: var(--wp-light);
  color: var(--wp-text);
}

/* === WordPress Comment Form === */
.comment-respond {
  background: var(--wp-card);
  padding: 30px;
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow);
  margin-top: 24px;
}
.comment-respond h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--wp-dark);
}
.comment-respond label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--wp-text);
  margin-bottom: 6px;
}
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  font-size: 14px;
  font-family: var(--wp-font-body);
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
  background: var(--wp-light);
  color: var(--wp-text);
}
.comment-respond input:focus,
.comment-respond textarea:focus {
  outline: none;
  border-color: var(--wp-primary);
  box-shadow: 0 0 0 3px rgba(27,20,100,0.1);
}
.comment-respond textarea {
  min-height: 120px;
  resize: vertical;
}
.comment-respond .submit {
  padding: 12px 28px;
  background: var(--wp-primary);
  color: #fff;
  border: none;
  border-radius: var(--wp-radius);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--wp-font-body);
  transition: all 0.3s ease;
}
.comment-respond .submit:hover {
  background: var(--wp-accent);
  transform: translateY(-2px);
}

/* === WordPress Accessibility === */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal;
}
.screen-reader-text:focus {
  background: #fff;
  clip: auto;
  display: block;
  font-size: 14px;
  height: auto;
  left: 5px;
  padding: 15px 23px;
  top: 5px;
  width: auto;
  z-index: 100000;
  box-shadow: var(--wp-shadow-md);
}
:focus-visible {
  outline: 2px solid var(--wp-primary);
  outline-offset: 2px;
}

/* === Print Styles === */
@media print {
  .wp-admin-bar,
  .site-top-bar,
  .header-cta,
  .mobile-toggle,
  .wp-back-to-top,
  .wp-notification,
  .wp-cookie-consent,
  .wp-announcement,
  .cta-banner,
  .stats-banner,
  .sidebar { display: none !important; }
  body { padding-top: 0; font-size: 12pt; color: #000; background: #fff; }
  .content-grid { grid-template-columns: 1fr; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #666; }
}

/* === Dark Mode Support === */
@media (prefers-color-scheme: dark) {
  :root {
    --wp-light: #1a1a2e;
    --wp-card: #16213e;
    --wp-text: #e2e8f0;
    --wp-text-light: #94a3b8;
    --wp-text-muted: #64748b;
    --wp-border: #2d3748;
    --wp-dark: #f0f2f5;
    --wp-darker: #0f0f23;
  }
}

/* === Additional Responsive Breakpoints === */
@media (max-width: 640px) {
  .hero-content h1 { font-size: 24px; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .article-header { padding: 20px 20px 0; }
  .article-body { padding: 16px 20px 20px; }
  .article-body h3 { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .wp-info-table { font-size: 12px; }
  .wp-info-table td,
  .wp-info-table th { padding: 8px 10px; }
}
@media (max-width: 480px) {
  .site-branding .logo-text { font-size: 22px; }
  .stats-grid { grid-template-columns: 1fr; }
  .wp-cookie-inner { flex-direction: column; text-align: center; }
}
@media (min-width: 1400px) {
  :root { --wp-container: 1340px; }
}

