/*!
Theme Name: DudeSpin 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: dudespin
*/

:root {
  --primary: #12305A;
  --accent: #FF8A1E;
  --bg-dark: #081221;
  --bg-card: rgba(18, 48, 90, 0.4);
  --text-light: #ffffff;
  --text-dim: #a0aec0;
  --token-radius-base: 999px;
  --layout-density: balanced;
  --shadow-type: soft;
  --grid-type: 2-col;
  --neon-glow: 0 0 15px rgba(255, 138, 30, 0.4);
}

* {
  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.6;
  overflow-x: hidden;
  background-image: 
    linear-gradient(rgba(18, 48, 90, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 48, 90, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Typography */
h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dim);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--token-radius-base);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: var(--neon-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 138, 30, 0.6);
}

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

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

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(45deg, var(--accent), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.header ul li a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

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

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  h2 {
    font-size: 1.8rem;
  }
}

/* Card Styles */
.card-glass {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 24px;
  transition: border-color 0.3s;
}

.card-glass:hover {
  border-color: var(--accent);
}

.card-neon {
  background: #000;
  border-left: 4px solid var(--accent);
  padding: 25px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.card-neon::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 138, 30, 0.05));
  pointer-events: none;
}

.card-pill {
  background: var(--primary);
  border-radius: var(--token-radius-base);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

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

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

/* Signature Element: Glow Pulse */
@keyframes neonPulse {
  0% { box-shadow: 0 0 5px rgba(255, 138, 30, 0.2); }
  50% { box-shadow: 0 0 20px rgba(255, 138, 30, 0.5); }
  100% { box-shadow: 0 0 5px rgba(255, 138, 30, 0.2); }
}

.signature-glow {
  animation: neonPulse 3s infinite ease-in-out;
}

/* Footer */
.footer {
  padding: 60px 0 20px;
  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: 40px;
}

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

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

.footer-menu a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
}

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