/*!
Theme Name: totalcasino
Theme URI: #
Version: 1.0.0
Description: High-converting, futuristic casino website with glassmorphism holographic design.
Author: WPGen
Text Domain: totalcasino
*/

:root {
  --primary: #1E293B;
  --accent: #3B82F6;
  --accent-glow: rgba(59, 130, 246, 0.5);
  --bg-dark: #0F172A;
  --glass-bg: rgba(30, 41, 59, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --holographic-gradient: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(147, 51, 234, 0.2) 50%, rgba(59, 130, 246, 0.2) 100%);
  --token-radius-base: 24px;
  --layout-density: compact;
  --shadow-type: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
  --grid-3-col: repeat(3, 1fr);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: #F8FAFC;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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;
  background: linear-gradient(to right, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

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

/* Glassmorphism Signature */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--token-radius-base);
  position: relative;
  overflow: hidden;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--token-radius-base);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

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

.header-nav li a {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

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

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

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

/* Hero */
.hero {
  padding: 100px 0 60px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.7;
}

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

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

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

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: var(--grid-3-col);
  }
}

/* Cards */
.card {
  padding: 24px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--accent);
  transform: scale(1.02);
}

/* Footer */
.footer {
  background: #070B14;
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Responsive Gaming */
.responsible-gaming-box {
  border-left: 4px solid #EF4444;
  padding-left: 20px;
}

/* Tables */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.comparison-table th, .comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

/* Signature Element: Iridescent Border Animation */
@keyframes borderRotate {
  0% { border-image-source: linear-gradient(0deg, var(--accent), #9333EA); }
  100% { border-image-source: linear-gradient(360deg, var(--accent), #9333EA); }
}

.signature-border {
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, var(--accent), #9333EA);
}

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