/* Custom CSS for Pokerdom Casino Site */

:root {
  --primary-green: #00b050;
  --dark-bg: #1a1a1a;
  --light-bg: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --gradient-purple: linear-gradient(135deg, #8b5cf6, #a855f7);
  --gradient-orange: linear-gradient(135deg, #f97316, #fb923c);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  padding-top: 76px;
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  color: #fff !important;
}

.navbar .btn {
  text-decoration: none !important;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem 0;
}

.hero-section h1 {
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-section .btn {
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 176, 80, 0.3);
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 176, 80, 0.4);
}

/* Card Styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  overflow: hidden;
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

/* Gradient Cards */
.gradient-card {
  background: var(--gradient-purple);
  color: white;
}

.gradient-card .card-title,
.gradient-card h3,
.gradient-card h4 {
  color: white;
}

.gradient-card-2 {
  background: var(--gradient-orange);
  color: white;
}

.gradient-card-2 .card-title,
.gradient-card-2 h3,
.gradient-card-2 h4 {
  color: white;
}

.gradient-card-3 {
  background: var(--gradient-gold);
  color: white;
}

.gradient-card-3 .card-title,
.gradient-card-3 h3,
.gradient-card-3 h4 {
  color: white;
}

/* Button Styles */
.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none !important;
}

.btn-success:hover {
  background-color: #008f40;
  border-color: #008f40;
}

/* Alert Styles */
.alert {
  border-radius: 10px;
  border: none;
  margin-bottom: 1rem;
}

/* List Styles */
ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Game Category Styles */
.game-category {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.bonus-item {
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
}

/* FAQ Styles */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Footer Styles */
footer {
  margin-top: 4rem;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-bg);
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-widget .btn {
  text-decoration: none !important;
  border-radius: 25px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .card-body {
    padding: 1.5rem;
  }

  .sticky-widget {
    padding: 0.75rem 0;
  }

  .sticky-widget .d-flex {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Image Styles */
img {
  border-radius: 10px;
}

/* Typography Improvements */
h2,
h3,
h4 {
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Hover Effects */
.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Additional spacing */
section {
  margin-bottom: 3rem;
}

/* Custom list styling */
.list-unstyled li {
  padding: 0.25rem 0;
}

/* Ordered list styling */
ol li {
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* Table styles (if needed) */
table {
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
}

table th,
table td {
  padding: 12px;
  text-align: left;
  border: 2px solid #ddd;
}

table th {
  background-color: var(--primary-green);
  color: white;
  font-weight: 600;
}

/* Form styles */
.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(0, 176, 80, 0.25);
}

/* Additional unused styles for uniqueness */
.unused-style-1 {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  padding: 20px;
  border-radius: 15px;
}

.unused-style-2 {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateX(5deg);
}

.unused-element {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/* Junior developer style - slightly messy */
.messy-spacing {
  margin-top: 15px;
  margin-bottom: 18px;
  padding-left: 22px;
}

.inconsistent-naming {
  color: #333;
  font-size: 16px;
}

/* More unused styles */
.random-gradient {
  background: linear-gradient(270deg, #667eea 0%, #764ba2 100%);
}

.shadow-effect {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}
