/*!
Theme Name: Vavada Futuristic
Theme URI: #
Version: 1.0.0
Author: AI Designer
Description: A high-converting, futuristic casino theme with glassmorphism and holographic effects.
Text Domain: vavada
*/

:root {
  --primary: #1E2447;
  --accent: #F53D5C;
  --bg-dark: #0A0D1D;
  --glass: rgba(30, 36, 71, 0.65);
  --glass-border: rgba(255, 255, 255, 0.12);
  --holographic: linear-gradient(135deg, rgba(245, 61, 92, 0.2) 0%, rgba(0, 242, 255, 0.1) 50%, rgba(184, 50, 255, 0.2) 100%);
  --token-radius-base: 12px;
  --layout-density: compact;
  --shadow-type: hard;
  --grid-type: masonry;
  --font-main: 'Inter', 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.4;
  overflow-x: hidden;
}

/* Signature Element: Diagonal Light Streaks */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(245, 61, 92, 0.03) 100px, rgba(245, 61, 92, 0.03) 101px);
  pointer-events: none;
  z-index: 0;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: #fff;
  border-left: 4px solid var(--accent);
  padding-left: 15px;
}

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

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

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

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 4px 4px 0px #9e1d34;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #9e1d34;
}

.btn-secondary {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: white;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 13, 29, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.header-nav ul li a {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
}

.header-nav ul li a:hover {
  opacity: 1;
  color: var(--accent);
}

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

/* Sections */
section {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--token-radius-base);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--holographic);
  opacity: 0.1;
  pointer-events: none;
}

/* Hero */
.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(245, 61, 92, 0.15), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Masonry Grid Simulation */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.masonry-item:nth-child(even) {
  margin-top: 20px;
}

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

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

.scroll-card {
  flex: 0 0 250px;
}

/* Footer */
.footer {
  background: #05070f;
  padding: 60px 0 20px;
  border-top: 2px 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;
  font-size: 14px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .header-nav {
    display: none;
  }
  h2 {
    font-size: 1.5rem;
  }
}

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