
:root {
  /* Color Palette - Modern & Dark Casino Style */
  --primary-color: #ff3e3e; /* Vibrant Red for actions */
  --primary-hover: #d92b2b;
  --secondary-color: #f7b731; /* Gold/Yellow for accents */
  --secondary-hover: #e1a325;
  --bg-dark: #121212; /* Deep background */
  --bg-card: #1e1e1e; /* Card background */
  --bg-header: #181818;
  --text-main: #e0e0e0;
  --text-muted: #a0a0a0;
  --text-light: #ffffff;
  --accent-blue: #3867d6; /* For links or secondary buttons */
  
  /* Spacing & Sizing */
  --container-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --transition-speed: 0.3s;
  
  /* Typography */
  --font-main: 'Inter', 'Roboto', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.4);
  --glow-primary: 0 0 15px rgba(255, 62, 62, 0.4);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}

ul, ol {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col, [class*="col-"] {
  padding: 0 1rem;
  width: 100%;
}

.text-center { text-align: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.d-none { display: none; }

/* Grid System (Simplified based on Bootstrap classes in HTML) */
@media (min-width: 768px) {
  .col-md-4 { width: 33.333%; }
  .col-md-auto { width: auto; }
  .text-md-left { text-align: left; }
  .text-md-right { text-align: right; }
  .d-md-block { display: block; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-auto { width: auto; }
  .d-lg-block { display: block; }
  .d-lg-none { display: none; }
}

/* Spacing Helpers */
.pt-5 { padding-top: 0.3125rem; }
.pt-10 { padding-top: 0.625rem; }
.pb-10 { padding-bottom: 0.625rem; }
.pt-20 { padding-top: 1.25rem; }
.pb-20 { padding-bottom: 1.25rem; }
.pb-30 { padding-bottom: 1.875rem; }

/* Header Styles */
.heder {
  background-color: var(--bg-header);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #333;
}

.logo {
  display: inline-block;
  width: 150px;
  height: 50px;
  background-image: url('logo.png'); /* Placeholder, assumes logo image */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: none;
  outline: none;
}

.btn-defolt {
  background: linear-gradient(135deg, var(--primary-color), #c0392b);
  color: var(--text-light);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn-defolt:hover, .btn-defolt:focus {
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
  background: linear-gradient(135deg, #ff5e5e, #d92b2b);
}

.btn-defolt:active {
  transform: translateY(0);
}

.btn-regist { margin-right: 0.5rem; }
.btn-voiti { background: transparent; border: 1px solid var(--primary-color); }
.btn-voiti:hover { background: var(--primary-color); color: white; }

/* Navigation */
.navigation {
  background-color: var(--bg-card);
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

.navigation-bg {
  justify-content: space-between;
}

.navigation .item a.main {
  color: var(--text-main);
  font-weight: 500;
  padding: 0.5rem;
  display: block;
  text-align: center;
  border-radius: var(--border-radius-sm);
}

.navigation .item a.main:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--secondary-color);
}

/* Pre-Header Download & Banner */
.pre-header-dovnload {
  background: linear-gradient(90deg, #2c3e50, #4ca1af);
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.text-box {
  font-size: 0.9rem;
  font-weight: 500;
}

.button_pp {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.baner .owl-carousel .item {
  min-height: 300px;
  background-color: #333;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(45deg, #111, #222); /* Placeholder for banner img */
  position: relative;
  overflow: hidden;
}

/* Winners Menu */
.main_menu_winners {
  background-color: var(--bg-card);
  padding: 1.5rem 0;
  margin-top: 1rem;
  border-radius: var(--border-radius-md);
  border: 1px solid #333;
}

.main_menu_winners-call {
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--secondary-color);
  text-shadow: 0 0 10px rgba(247, 183, 49, 0.5);
}

.cifra {
  background: #000;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  margin: 0 1px;
  display: inline-block;
}

/* Game Grid */
.games_list {
  padding: 2rem 0;
}

.games_list .item {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #333;
}

.games_list .item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

/* Pseudo-element for game image placeholder since HTML has no img tags inside .item */
.games_list .item::before {
  content: '';
  display: block;
  padding-top: 66%; /* Aspect ratio */
  background: linear-gradient(to bottom, #444, #222);
}

.games_list .title {
  padding: 1rem;
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
}

.games_list .btn-box {
  padding: 0 1rem 1.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-speed);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.games_list .item:hover .btn-box {
  opacity: 1;
}

.plau-game { width: 80%; }
.plau-demo { 
  background: transparent; 
  border: 1px solid white; 
  color: white; 
  width: 80%;
  text-align: center;
}
.plau-demo:hover { background: white; color: black; }

/* Main Content & Typography */
.main_content {
  padding: 2rem 0;
  color: var(--text-muted);
}

.main_content h1, .main_content h2, .main_content h3, .main_content h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.3;
}

.main_content h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.main_content h2 { font-size: clamp(1.5rem, 3vw, 2rem); }

.main_content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.main_content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.main_content a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Subscription Form */
.content-form {
  background: linear-gradient(135deg, #2c3e50, #000000);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  margin: 2rem 0;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid #444;
}

.content-form .h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: bold;
}

.subscribe-form .form-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 1.5rem auto 0;
}

@media (min-width: 768px) {
  .subscribe-form .form-box {
    flex-direction: row;
  }
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  border: 1px solid #555;
  background-color: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  background-color: rgba(255,255,255,0.15);
}

/* Table of Contents */
.box-pagenav {
  background-color: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 2rem;
  border: 1px solid #333;
}

.box-href-naw {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.box-pagenav table {
  width: 100%;
}

.box-pagenav td {
  padding: 0.5rem 0;
}

.box-pagenav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.box-pagenav a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* Data Tables */
table.main_pg_table, table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

table td, table th {
  padding: 1rem;
  border-bottom: 1px solid #333;
  color: var(--text-main);
}

table tr:last-child td { border-bottom: none; }

table tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

/* FAQ Section */
#faq {
  margin-top: 3rem;
}

#faq .item {
  background-color: var(--bg-card);
  margin-bottom: 1rem;
  border-radius: var(--border-radius-md);
  border: 1px solid #333;
  overflow: hidden;
}

.question {
  display: block;
  padding: 1.2rem;
  cursor: pointer;
  background-color: rgba(255,255,255,0.03);
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  transition: background 0.3s;
}

.question:hover {
  background-color: rgba(255,255,255,0.05);
  color: var(--primary-color);
}

.answer {
  padding: 1.2rem;
  color: var(--text-muted);
  border-top: 1px solid #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #000;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 3px solid var(--primary-color);
  font-size: 0.9rem;
  color: #888;
}

.footer a {
  color: #aaa;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer p span {
  color: var(--text-light);
  font-weight: bold;
}

.footer-content {
  margin-bottom: 2rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .header .row {
    flex-direction: column;
    text-align: center;
  }
  
  .logo { margin-bottom: 1rem; }
  
  .navigation { display: none; }
  
  .games_list .item::before {
    padding-top: 75%;
  }
  
  .btn-box {
    opacity: 1; /* Always show buttons on mobile or change to tap interaction */
    background: rgba(0,0,0,0.6);
    padding-top: 40%;
  }
  
  .main_menu_winners-call {
    font-size: 1rem;
  }
  
  .col-6 { width: 50%; }
}
