/*!
Theme Name: Lemon 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: lemon-casino
*/

:root {
  --primary: #1A4B47;
  --accent: #F2CC4D;
  --bg-dark: #081413;
  --bg-card: #122b29;
  --text-main: #ffffff;
  --text-dim: #a0b2b1;
  --token-radius-base: 4px;
  --layout-density: 4rem;
  --shadow-type: none;
  --grid-type: asymmetric;
  --font-main: 'Inter', sans-serif;
  --font-tech: 'Orbitron', sans-serif;
}

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

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

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-family: var(--font-tech);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--accent);
  position: relative;
}

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

/* Signature Element: Pulse Radar */
.pulse-zone {
  position: relative;
}
.pulse-zone::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent);
  animation: pulse-radar 2s infinite;
}

@keyframes pulse-radar {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-tech);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--token-radius-base);
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background: rgba(8, 20, 19, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--primary);
}

.logo {
  font-family: var(--font-tech);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
}

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

.header nav ul li a {
  font-size: 0.9rem;
  text-transform: uppercase;
}

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

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

/* Grid Layouts */
.grid-asymmetric {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

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

.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

/* Card Styles */
.card-glass {
  background: rgba(26, 75, 71, 0.2);
  border: 1px solid rgba(242, 204, 77, 0.1);
  padding: 20px;
  border-radius: var(--token-radius-base);
}

.card-solid {
  background: var(--bg-card);
  padding: 25px;
  border-radius: var(--token-radius-base);
}

.card-neon {
  background: #000;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: var(--token-radius-base);
}

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

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

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

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

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