/*!
Theme Name: Pinko Casino
Theme URI: #
Version: 1.0.0
Author: CyberBrutalist
Description: High-converting, futuristic casino theme with minimal brutalist dark aesthetic.
Text Domain: pinko-casino
*/

:root {
  --primary: #1F2A28;
  --accent: #FF2A12;
  --bg-dark: #0A0F0E;
  --text-light: #E0E0E0;
  --text-dim: #8A9A97;
  --token-radius-base: 24px;
  --shadow-hard: 8px 8px 0px 0px #FF2A12;
  --glass: rgba(31, 42, 40, 0.7);
  --border-neon: 1px solid rgba(255, 42, 18, 0.4);
  --layout-density: 1.5rem;
}

* {
  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.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: var(--layout-density);
  color: #fff;
  line-height: 0.9;
}

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

ul {
  list-style: none;
}

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

/* Signature Element: Diagonal Light Streak */
.signature-streak {
  position: relative;
  overflow: hidden;
}
.signature-streak::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg, transparent 48%, rgba(255, 42, 18, 0.1) 50%, transparent 52%);
  pointer-events: none;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--token-radius-base);
  cursor: pointer;
  transition: 0.2s transform, 0.2s box-shadow;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px 0px #fff;
}

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

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

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

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

.header-nav {
  display: none;
}

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

/* Cards System */
.card-glass {
  background: var(--glass);
  border: var(--border-neon);
  border-radius: var(--token-radius-base);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.card-brutalist {
  background: var(--primary);
  border: 2px solid #fff;
  border-radius: 0;
  padding: 30px;
  box-shadow: 10px 10px 0px #FF2A12;
}

.card-flat {
  background: #141d1b;
  border-radius: var(--token-radius-base);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

/* Sections */
section {
  padding: 60px 0;
}

.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.grid-asymmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .grid-asymmetric {
    grid-template-columns: 1.4fr 0.6fr;
  }
}

.game-card {
  min-width: 200px;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: var(--token-radius-base);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

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

.game-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
}

/* Footer */
.footer {
  background: #050707;
  padding: 80px 0 40px;
  border-top: 4px solid var(--accent);
}

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

.footer-menu-title {
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-menu li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  text-align: center;
  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;}
