/*!
Theme Name: Vox Casino
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: vox-casino
*/

:root {
  --primary: #241B3A;
  --accent: #8B5CF6;
  --gold: #D4AF37;
  --bg-dark: #0F0A1E;
  --text-light: #F3F4F6;
  --text-muted: #9CA3AF;
  --radius-base: 24px;
  --layout-density: 120px;
  --shadow-type: none;
  --grid-type: asymmetric;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
  z-index: -1;
}

.orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.2;
  animation: float 20s infinite alternate;
  z-index: -1;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 50px); }
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--layout-density) 0;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-base);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: #7c3aed;
  transform: translateY(-3px);
}

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

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 10, 30, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding: 1rem 0;
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 900;
}

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

.header ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

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

.card-glass {
  background: rgba(36, 27, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-base);
  padding: 2rem;
  transition: border-color 0.3s;
}

.card-glass:hover {
  border-color: var(--accent);
}

.card-editorial {
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 0 var(--radius-base) var(--radius-base) 0;
}

.card-cyber {
  background: var(--primary);
  border: 1px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.card-cyber::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 2rem;
  scrollbar-width: none;
}

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

.game-card {
  min-width: 280px;
  flex-shrink: 0;
}

.footer {
  background: #080511;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

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

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

.footer-menu ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

@media (max-width: 768px) {
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
  .header ul {
    display: none;
  }
  section {
    padding: 60px 0;
  }
}

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