/*!
Theme Name: Casinova
Theme URI: #
Version: 1.0.0
Author: Casinova Team
Description: High-converting, futuristic casino theme with experimental asymmetrical layout.
Text Domain: casinova
*/

:root {
  --primary: #241B3A;
  --accent: #A855F7;
  --bg-dark: #0F0A1E;
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;
  --token-radius-base: 24px;
  --layout-density: 2rem;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
  --grid-gap: 24px;
  --signature-gradient: linear-gradient(90deg, #A855F7, #6366F1, #A855F7);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--accent);
}

.text-regular {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Signature Element: Animated Gradient Border */
.signature-border {
  position: relative;
  padding: 2px;
  background: var(--signature-gradient);
  background-size: 200% 100%;
  animation: borderMove 4s linear infinite;
  border-radius: var(--token-radius-base);
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

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

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

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

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

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav li a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

/* Hero Section */
.hero-main {
  padding: 100px 0 40px;
  text-align: left;
  position: relative;
}

.hero-main h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero-excerpt {
  font-size: 1.4rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

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

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

/* Card Styles */
.card-glass {
  background: rgba(36, 27, 58, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  padding: 30px;
  border-radius: var(--token-radius-base);
}

.card-solid {
  background: var(--primary);
  padding: 30px;
  border-radius: var(--token-radius-base);
  border-bottom: 4px solid var(--accent);
}

.card-neon {
  background: #000;
  padding: 30px;
  border-radius: var(--token-radius-base);
  border: 1px solid var(--accent);
  box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.2);
}

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

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

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

/* Footer */
.footer {
  background: #050308;
  padding: 80px 0 40px;
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

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

.footer-menu li a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* Responsive Gaming */
.responsible-gaming-banner {
  background: linear-gradient(45deg, #241B3A, #0F0A1E);
  padding: 40px;
  border-radius: var(--token-radius-base);
  text-align: center;
  border: 1px dashed var(--accent);
}

@media (max-width: 768px) {
  .header-nav, .header-actions a:first-child {
    display: none;
  }
  h2 {
    font-size: 1.8rem;
  }
}

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