/* 0nCore Theme — Custom Styles */

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Dark scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--wp--preset--color--background); }
::-webkit-scrollbar-thumb { background: var(--wp--preset--color--border); border-radius: 3px; }

/* Card hover effect */
.wp-block-group[style*="border-width"] {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wp-block-group[style*="border-width"]:hover {
  border-color: rgba(110, 224, 90, 0.2) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Button hover glow */
.wp-block-button__link:hover {
  box-shadow: 0 4px 16px rgba(110, 224, 90, 0.2);
}

/* Navigation styling */
.wp-block-navigation a { transition: color 0.15s; }

/* Code blocks */
.wp-block-code { overflow-x: auto; }
