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

:root {
  --primary: #1A1A24;
  --accent: #F2368F;
  --bg: #0D0D12;
  --text: #FFFFFF;
  --text-dim: #A0A0B0;
  --radius-base: 12px;
  --layout-density: compact;
  --shadow-type: none;
  --grid-type: masonry;
  --electric-glow: 0 0 15px rgba(242, 54, 143, 0.6);
}

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

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

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

section {
  padding: 30px 0;
}

h2 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

ul {
  list-style: none;
}

.electric-border {
  border: 1px solid transparent;
  background: linear-gradient(var(--primary), var(--primary)) padding-box, linear-gradient(90deg, var(--accent), #5011ff, var(--accent)) border-box;
  background-size: 200% 100%;
  animation: electric-glow 3s linear infinite;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-base);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  border: none;
}

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

.btn-secondary {
  background: transparent;
  border: 1px 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 {
  background: rgba(26, 26, 36, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(242, 54, 143, 0.3);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
}

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

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

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

.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 15px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.card-glass {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-base);
  padding: 15px;
  transition: 0.3s;
}

.card-glass:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.masonry-grid {
  column-count: 2;
  column-gap: 15px;
}

@media (min-width: 768px) {
  .masonry-grid {
    column-count: 4;
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: var(--radius-base);
  overflow: hidden;
  background: var(--primary);
}

.masonry-item img {
  width: 100%;
  display: block;
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .split-layout {
    flex-direction: column;
  }
}

.split-content, .split-media {
  flex: 1;
}

.overlap-container {
  position: relative;
  padding-top: 50px;
}

.overlap-card {
  margin-top: -50px;
  z-index: 2;
  position: relative;
  background: var(--primary);
  border: 1px solid var(--accent);
  padding: 25px;
  border-radius: var(--radius-base);
}

.footer {
  background: #050508;
  padding: 40px 0 20px;
  border-top: 1px solid #222;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.responsible-box {
  border: 2px solid #ff4444;
  padding: 20px;
  border-radius: var(--radius-base);
  background: rgba(255, 68, 68, 0.05);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.payment-item {
  background: #1A1A24;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-item img {
  max-width: 100%;
  filter: grayscale(1) brightness(2);
}

.hero-section {
  background: linear-gradient(rgba(13, 13, 18, 0.8), rgba(13, 13, 18, 0.8)), url('<?php echo get_stylesheet_directory_uri(); ?>/images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-excerpt {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 30px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th, td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #333;
}

th {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.vip-card {
  padding: 20px;
  border: 1px solid #333;
  border-radius: var(--radius-base);
  text-align: center;
}

.vip-card.active {
  border-color: var(--accent);
  background: rgba(242, 54, 143, 0.05);
}

.provider-logo {
  height: 40px;
  opacity: 0.6;
  transition: 0.3s;
}

.provider-logo:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
}

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