/*!
Theme Name: Spinko 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: spinko-casino
*/

:root {
  --primary: #28121D;
  --accent: #F43F7F;
  --accent-glow: rgba(244, 63, 127, 0.4);
  --bg-dark: #0f060a;
  --glass-bg: rgba(40, 18, 29, 0.6);
  --glass-border: rgba(244, 63, 127, 0.2);
  --token-radius-base: 24px;
  --layout-density: 100px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
  --font-main: 'Inter', sans-serif;
  --font-tech: 'Rajdhani', sans-serif;
}

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

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

/* Signature Element: Diagonal Light Streaks */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 
    linear-gradient(135deg, transparent 20%, rgba(244, 63, 127, 0.05) 25%, transparent 30%),
    linear-gradient(135deg, transparent 70%, rgba(244, 63, 127, 0.05) 75%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

h1, h2 {
  font-family: var(--font-tech);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 0 15px var(--accent-glow);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

section {
  padding: var(--layout-density) 20px;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Glassmorphism Primitives */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--token-radius-base);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--token-radius-base);
  font-family: var(--font-tech);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--accent);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

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

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

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

.header ul li a {
  font-family: var(--font-tech);
  font-size: 1.1rem;
}

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

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

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

.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-asymmetric {
    grid-template-columns: 1fr;
  }
  .header ul {
    display: none;
  }
  :root {
    --layout-density: 60px;
  }
}

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