/*!
Theme Name: Energy 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: energy-casino
*/

:root {
  --primary: #17351B;
  --accent: #84CC16;
  --bg-dark: #0a1a0d;
  --bg-card: rgba(23, 53, 27, 0.6);
  --text-light: #f0fdf4;
  --text-dim: #a1a1aa;
  --token-radius-base: 12px;
  --shadow-neon: 0 0 15px rgba(132, 204, 22, 0.3);
  --shadow-neon-strong: 0 0 25px rgba(132, 204, 22, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --layout-density: 2rem;
}

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

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

/* Signature Element: Ambient Orbs */
body::before,
body::after {
  content: '';
  position: fixed;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
}

body::before { top: -10%; left: -10%; }
body::after { bottom: -10%; right: -10%; }

/* Typography */
h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: var(--layout-density);
  color: var(--accent);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--accent);
  box-shadow: var(--shadow-neon);
}

p {
  margin-bottom: 1rem;
  color: var(--text-dim);
}

/* Layout Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: var(--token-radius-base);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-neon-strong);
}

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

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

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(10, 26, 13, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(132, 204, 22, 0.1);
}

.logo {
  width: 180px;
  height: 40px;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgwIiBoZWlnaHQ9IjQwIiB2aWV3Qm94PSIwIDAgMTgwIDQwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxODAiIGhlaWdodD0iNDAiIGZpbGw9Im5vbmUiLz48dGV4dCB4PSIwIiB5PSIzMCIgZmlsbD0iIzg0Q0MxNiIgZm9udC1mYW1pbHk9IkFyaWFsIiBmb250LXNpemU9IjI0IiBmb250LXdlaWdodD0iYm9sZCI+RU5FUkdZPC90ZXh0Pjx0ZXh0IHg9IjEwMCIgeT0iMzAiIGZpbGw9IiNmZmYiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIyNCI+Q0FTSU5PPC90ZXh0Pjwvc3ZnPg==') no-repeat center;
  background-size: contain;
}

.header ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.header ul li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

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

/* Asymmetrical Grid System */
.asym-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

/* Cards */
.card-glass {
  background: var(--bg-card);
  border: 1px solid rgba(132, 204, 22, 0.1);
  border-radius: var(--token-radius-base);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.card-glass::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Horizontal Scroll Sections */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

/* Footer */
.footer {
  background: #050d06;
  padding: 60px 0 20px;
  border-top: 2px solid var(--accent);
}

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

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

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

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

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

@media (max-width: 1024px) {
  .asym-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header ul {
    display: none;
  }
}

@media (max-width: 768px) {
  .asym-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 40px 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;}
