/*!
Theme Name: goldbet
Theme URI: #
Version: 1.0.0
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: goldbet
*/

:root {
  --primary: #3A2A0F;
  --accent: #F5B301;
  --bg-dark: #0a0a0a;
  --bg-card: rgba(58, 42, 15, 0.2);
  --token-radius-base: 999px;
  --layout-density: compact;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.5);
  --neon-glow: 0 0 15px rgba(245, 179, 1, 0.4);
  --font-main: 'Inter', sans-serif;
  --grid-3-col: repeat(3, 1fr);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: #ffffff;
  font-family: var(--font-main);
  line-height: 1.4;
  overflow-x: hidden;
  font-size: 14px;
}

.signature-streak {
  position: relative;
  overflow: hidden;
}

.signature-streak::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(245, 179, 1, 0.1) 50%, transparent 55%);
  animation: streak 8s infinite linear;
  pointer-events: none;
}

@keyframes streak {
  0% { transform: translate(-20%, -20%); }
  100% { transform: translate(20%, 20%); }
}

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

h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

p {
  margin-bottom: 1rem;
  color: #cccccc;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--token-radius-base);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #ffcc33);
  color: var(--primary);
  box-shadow: var(--neon-glow);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--accent);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(5px);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(245, 179, 1, 0.2);
}

.logo {
  width: 120px;
  height: 40px;
  background: url('images/style-1.webp') no-repeat center;
  background-size: contain;
}

.header ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.header ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.header ul li a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.section {
  padding: 3rem 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: var(--grid-3-col);
  }
}

.card-glass {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 179, 1, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.card-glass:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.card-neon-border {
  background: #111;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, var(--accent), transparent) 1;
  padding: 1.5rem;
  border-radius: 0;
}

.card-layered {
  position: relative;
  background: var(--primary);
  padding: 1.5rem;
  border-radius: 15px;
  z-index: 1;
}

.card-layered::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background: rgba(245, 179, 1, 0.1);
  border-radius: 15px;
  z-index: -1;
}

.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 4px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.scroll-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background: radial-gradient(circle at center, #3A2A0F 0%, #0a0a0a 70%);
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.footer {
  background: #050505;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--primary);
}

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

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

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

.footer-menu ul li a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu ul li a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.scanline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.1) 51%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.1;
}

img {max-width: 100% !important;height: auto;display: block;}
html {overflow-x: hidden;}
.wp-block-image {margin: 20px auto;max-width: 100%;}
.wp-block-image img {margin: 0 auto;}
.logo img {max-height: 50px;}
table{margin-top: 20px;margin-bottom: 20px;}
.content-block p,.content-block h2, .content-block h3, .content-block ul, .content-block ol,
.content p,.content h2, .content h3, .content ul, .content ol{margin-top: 1em;margin-bottom: 1em;}
