/*!
Theme Name: Yard Casino
Theme URI: #
Version: 1.0.0
Description: High-converting futuristic casino theme with cyber neon aesthetic.
Author: Yard Casino Team
Text Domain: yard-casino
*/

:root {
  --primary: #221B33;
  --accent: #D9FF2F;
  --bg-dark: #0D0A16;
  --bg-card: rgba(34, 27, 51, 0.8);
  --text-main: #FFFFFF;
  --text-dim: #A099B5;
  --radius-base: 24px;
  --neon-glow: 0 0 15px rgba(217, 255, 47, 0.3);
  --neon-border: 1px solid rgba(217, 255, 47, 0.2);
  --layout-density: compact;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(13, 10, 22, 0.9), rgba(13, 10, 22, 0.9)), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGc fillPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDBoMXY0MEgwVjB6bTAgMWg0MHYxSDBWMXoiIGZpbGw9IiMyMjFCMzMiIGZpbGwtb3BhY2l0eT0iLjEiLz48L2c+PC9zdmc+');
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-base);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--neon-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(217, 255, 47, 0.5);
}

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

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

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: var(--neon-border);
  border-radius: var(--radius-base);
  padding: 20px;
}

/* Header */
.header {
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 10, 22, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(217, 255, 47, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  gap: 20px;
}

.header-nav li a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hero */
.hero {
  padding: 60px 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(34, 27, 51, 0.5) 0%, transparent 70%);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-excerpt {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Sections General */
section {
  padding: 40px 0;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Horizontal Scroll */
.scroll-x {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 15px;
  scrollbar-width: none;
}

.scroll-x::-webkit-scrollbar {
  display: none;
}

/* Cards */
.card-slot {
  min-width: 160px;
  flex: 0 0 auto;
  border-radius: var(--radius-base);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

.card-slot img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.card-slot-info {
  padding: 10px;
  background: var(--primary);
}

/* Signature Element: Neon Rail */
.neon-rail {
  position: relative;
}

.neon-rail::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  box-shadow: var(--neon-glow);
}

/* Payments */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.payment-item {
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.footer {
  background: #05040A;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(217, 255, 47, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-dim);
  font-size: 0.8rem;
}

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;}
