/*
Theme Name: DavCoin Theme
Theme URI: https://davcoind.com
Author: Custom
Description: DavCoin Theme with sticky header, smooth scrolling, logo, dashboard, and gradient buttons.
Version: 2.1
*/
html {
  scroll-behavior: smooth;
}
body {
  background-color: #0a1a33;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}
a { color: yellow; text-decoration: none; }
a:hover { text-decoration: underline; }
.btn, input[type=submit], button {
  background: linear-gradient(90deg, red, yellow);
  color: #fff !important;
  font-weight: bold;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover, input[type=submit]:hover, button:hover {
  opacity: 0.9;
  box-shadow: 0 0 8px rgba(255,255,0,0.6);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.site-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.site-navigation li {
  display: inline-block;
}
.auth-buttons {
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
