/* Casino Theme CSS variables */
:root {
  --bg-dark: #0b0e14;
  --bg-panel: #151a25;
  --bg-card: #1e2532;
  --primary-color: #007aff;
  --primary-hover: #005bb5;
  --accent-color: #ffb800;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --border-color: #2d3748;
  --success: #10b981;
  --danger: #ef4444;
  --font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Basic Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
header {
  background-color: var(--bg-panel);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  color: var(--primary-color);
}
.logo img {
  max-height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--primary-color);
}

.auth-buttons {
  display: flex;
  gap: 10px;
}
.button {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font: inherit;
}
.button-login {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.button-login:hover {
  background: rgba(0, 122, 255, 0.1);
}
.button-register {
  background: var(--success);
  color: #fff;
}
.button-register:hover {
  background: #059669;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-login {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-login:hover {
  background: rgba(0, 122, 255, 0.1);
}
.btn-register {
  background: var(--success);
  color: #fff;
}
.btn-register:hover {
  background: #059669;
}

.btn-cta {
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  color: white;
  display: block;
  width: fit-content;
  margin: 20px auto;
  padding: 15px 40px;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(229, 46, 113, 0.4);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 46, 113, 0.6);
}

/* Hero Section */
.hero {
  background: radial-gradient(
    circle at center,
    #1b2742 0%,
    var(--bg-dark) 100%
  );
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
h1 {
  font-size: 38px;
  color: #fff;
  margin-bottom: 15px;
}
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Main Content */
.main-content {
  padding: 40px 0;
}
h2 {
  font-size: 28px;
  color: #fff;
  margin: 40px 0 20px;
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
}
h3 {
  font-size: 22px;
  color: #fff;
  margin: 25px 0 15px;
}
p {
  margin-bottom: 15px;
}
ul,
ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
li {
  margin-bottom: 8px;
}

/* Info Grid (Cards) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}
.card h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 18px;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin-bottom: 30px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
}
th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
th {
  background: rgba(0, 0, 0, 0.2);
  color: var(--accent-color);
  font-weight: 600;
}
tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* FAQ Accordion */
details {
  background: var(--bg-panel);
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
summary {
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  color: var(--primary-color);
  font-size: 20px;
}
details[open] summary::after {
  content: "−";
}
.faq-content {
  padding: 0 15px 15px;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: var(--bg-panel);
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-seo-text {
  font-size: 12px;
  margin-top: 20px;
  opacity: 0.6;
}
