/*!
Theme Name: Lolly Spins 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: lolly-spins
*/

:root {
  --primary: #2A2178;
  --accent: #F43F9A;
  --bg-dark: #0A081A;
  --bg-surface: #151233;
  --text-main: #FFFFFF;
  --text-dim: #A09DB1;
  --token-radius-base: 24px;
  --layout-density: balanced;
  --shadow-type: soft;
  --grid-type: masonry;
  --hud-border: 1px solid rgba(244, 63, 154, 0.3);
  --aurora: linear-gradient(135deg, #2A2178 0%, #F43F9A 100%);
}

* {
  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.6;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

/* SIGNATURE ELEMENT: Diagonal Light Streaks */
.hud-streak {
  position: relative;
  overflow: hidden;
}

.hud-streak::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(244, 63, 154, 0.05) 50%, transparent 55%);
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 1;
}

/* Typography */
h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  background: var(--aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid var(--accent);
  padding-left: 15px;
}

p {
  margin-bottom: 15px;
  color: var(--text-dim);
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(244, 63, 154, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 63, 154, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: rgba(10, 8, 26, 0.8);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: var(--hud-border);
}

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

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

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

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

/* Sections */
.section-padding {
  padding: 80px 0;
}

/* Masonry Grid */
.masonry-grid {
  column-count: 1;
  column-gap: 20px;
}

@media (min-width: 768px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* Cards */
.card-hud {
  background: var(--bg-surface);
  border: var(--hud-border);
  border-radius: var(--token-radius-base);
  padding: 24px;
  position: relative;
}

.card-hud::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 10px; height: 10px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

/* Horizontal Scroll */
.h-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

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

.h-scroll > * {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* Footer */
.footer {
  background: #05040d;
  padding: 60px 0 20px;
  border-top: var(--hud-border);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

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

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

/* Responsive Tables */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-surface);
  border-radius: var(--token-radius-base);
  overflow: hidden;
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

th {
  background: rgba(244, 63, 154, 0.1);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Mobile App Split */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
}

.img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: var(--token-radius-base);
}

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