/*!
Theme Name: Beep Beep 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: beep-beep-casino
*/

:root {
  --token-radius-base: 4px;
  --primary: #2F2A18;
  --accent: #FACC15;
  --bg-dark: #0A0A0A;
  --surface: #1A1A1A;
  --text-main: #FFFFFF;
  --text-muted: #A0A0A0;
  --layout-density: compact;
  --shadow-type: soft;
  --grid-type: asymmetric;
  --streak: linear-gradient(115deg, transparent 40%, rgba(250, 204, 21, 0.1) 50%, transparent 60%);
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

/* Typography */
h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  padding-left: 15px;
}

.text-large {
  font-size: 1.25rem;
  font-weight: 600;
}

.text-small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

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

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

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* Signature Element: Diagonal Streak */
.streak-overlay {
  position: relative;
  overflow: hidden;
}

.streak-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--streak);
  pointer-events: none;
  z-index: 1;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: var(--surface);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  width: 140px;
  height: 40px;
  background: url('images/style-1.webp') no-repeat center;
  background-size: contain;
}

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

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

.header ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

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

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

/* Hero */
.hero-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  min-height: 60vh;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  border: 4px solid var(--accent);
}

/* Horizontal Scroll Sections */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 20px;
  scrollbar-width: none;
}

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

.game-card {
  flex: 0 0 200px;
  background: var(--surface);
  border-radius: var(--token-radius-base);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.game-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Asymmetric Grid */
.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  .asymmetric-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .asymmetric-grid .large {
    grid-row: span 2;
  }
}

/* Card Styles */
.card-brutalist {
  background: var(--surface);
  border: 2px solid var(--accent);
  padding: 20px;
}

.card-matte {
  background: #111;
  padding: 25px;
  border-bottom: 4px solid var(--primary);
}

.card-accent {
  background: var(--accent);
  color: var(--primary);
  padding: 20px;
}

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

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

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

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

.footer-menu ul li a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Gaming Block */
.responsible-block {
  background: #1a0000;
  border: 1px solid #ff0000;
  padding: 20px;
  margin-top: 40px;
}

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