/*!
Theme Name: Lemon Casino
Theme URI: #
Version: 1.0.0
Author: AI Designer
Description: High-converting, futuristic casino theme with glassmorphism holographic design.
Text Domain: lemon-casino
*/

:root {
  --primary: #1A4B47;
  --accent: #F2CC4D;
  --bg-dark: #0A1A19;
  --text-light: #E0E0E0;
  --glass-bg: rgba(26, 75, 71, 0.4);
  --glass-border: rgba(242, 204, 77, 0.2);
  --holographic-gradient: linear-gradient(135deg, rgba(242, 204, 77, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(26, 75, 71, 0.1) 100%);
  --token-radius-base: 4px;
  --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

/* Signature Element: Diagonal Light Streaks */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(242, 204, 77, 0.02) 100px, rgba(242, 204, 77, 0.02) 101px);
  pointer-events: none;
  z-index: 0;
}

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

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

/* Glassmorphism Components */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--token-radius-base);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--token-radius-base);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(242, 204, 77, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(242, 204, 77, 0.5);
}

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

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

@media (min-width: 1024px) {
  .header ul {
    display: flex;
  }
}

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

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

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

/* Sections Layout */
section {
  padding: 4rem 5%;
  position: relative;
  z-index: 1;
}

/* Horizontal Scroll Sections */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  scroll-snap-type: x mandatory;
}

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

.scroll-container::-webkit-scrollbar-thumb {
  background: var(--accent);
}

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

/* Asymmetric Grid */
.asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .asymmetric-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .asymmetric-grid.reverse {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

/* Footer */
.footer {
  background: #050d0c;
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--glass-border);
}

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

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

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

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

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

/* Specific Component Styles */
.game-card {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid var(--glass-border);
}

.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 25, 0.9), transparent);
}

.game-card-content {
  position: relative;
  z-index: 2;
}

.provider-logo {
  filter: grayscale(1) brightness(2);
  opacity: 0.6;
  transition: var(--transition);
  max-height: 40px;
}

.provider-logo:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.bonus-badge {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transform: rotate(5deg);
}

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