/* Custom CSS for PokerDom KZ Casino Website */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* Root Variables */
:root {
  --primary-green: #00b050;
  --black: #000000;
  --dark-bg: #2c3e50;
  --light-bg: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-orange: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-gold: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  --border-radius: 12px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  padding-top: 80px;
  padding-bottom: 80px;
}

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


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title {
  color: var(--primary-green);
  border-bottom: 3px solid var(--primary-green);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  display: inline-block;
}

/* Header Styles */
.navbar {
  background: var(--light-bg) !important;
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white !important;
}

.navbar-brand i {
  color: var(--primary-green);
}

/* Logo */
.logo {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero-section {
  background: var(--black);
  color: white;
  padding: 4rem 0;
  margin-top: 30px;
  padding-top: 120px;
}

.hero-image {
  box-shadow: var(--box-shadow);
}

.hero-section h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Content Blocks */
.content-block {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--primary-green);
  transition: var(--transition);
}

.content-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Game Categories */
.game-category {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-green);
}

.game-category h4 {
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Steps and Problems */
.step-item,
.problem-item,
.bonus-item,
.method-item,
.speed-item,
.feature-item,
.source-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary-green);
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
}

.btn-success {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-success:hover {
  background: #008a3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 176, 80, 0.3);
}

.btn-outline-success {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-outline-success:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.btn-warning {
  background: #ffc107;
  color: #000;
}

.btn-warning:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

/* Alerts */
.alert {
  border-radius: var(--border-radius);
  border: none;
  box-shadow: var(--box-shadow);
}

.alert-info {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  color: #0c5460;
}

.alert-warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  color: #856404;
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.accordion-header button {
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  padding: 1.25rem;
}

.accordion-header button:not(.collapsed) {
  background: var(--primary-green);
  color: white;
}

.accordion-body {
  background: white;
  padding: 1.5rem;
  line-height: 1.7;
}

/* Fixed Bottom Widget */
.fixed-bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-green);
  padding: 1rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

/* Footer */
footer {
  background: white !important;
  border-top: 3px solid var(--primary-green);
  margin-top: 3rem;
}

/* Links */
a {
  color: var(--primary-green);
  transition: var(--transition);
}

a:hover {
  color: #008a3d;
  text-decoration: none;
}

/* Enhanced table of contents links styling */
.smooth-scroll {
  transition: var(--transition);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}

.smooth-scroll:hover {
  background-color: rgba(0, 176, 80, 0.1);
  transform: translateX(5px);
}

/* Lists */
ul {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Tables (if needed) */
.table {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin: 2rem auto;
}

.table th {
  background: var(--primary-green);
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 1rem;
  border: 2px solid var(--primary-green);
}

.table td {
  padding: 1rem;
  border: 1px solid #dee2e6;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
    padding-top: 100px;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .content-block {
    margin-bottom: 1.5rem;
  }

  .fixed-bottom-widget .col-8 span {
    font-size: 0.9rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  /* Center brand on mobile header */
  .navbar-brand {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .hero-section {
    padding-top: 90px;
  }

  .content-block {
    padding: 1.5rem !important;
  }

  .fixed-bottom-widget {
    padding: 0.75rem 0;
  }

  /* Slightly smaller logo on small phones */
  .logo {
    height: 32px;
  }
}

/* Additional unused styles for uniqueness */
.unused-gradient-1 {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.unused-gradient-2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.unused-border-style {
  border: 3px dashed #ff6b6b;
  border-radius: 20px;
}

.unused-text-shadow {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.unused-animation {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Unused HTML elements styles */
.unused-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.unused-badge {
  background: #ff6b6b;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: bold;
}

.unused-progress-bar {
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.unused-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
  width: 75%;
  transition: width 0.3s ease;
}

.providers-row {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 15px;
}

.providers-row img {
  max-height: 40px;
  object-fit: contain;
}

.banks-row {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 15px;
}

.banks-row img {
  max-height: 40px;
  object-fit: contain;
} 

.certs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: 15px;
}

.certs-row img {
  max-height: 40px;
  object-fit: contain;
}

