:root {
  --color-bg: #0b1224;
  --color-bg-alt: #101a33;
  --color-primary: #f6c344;
  --color-secondary: #2f7bff;
  --color-accent: #cde5ff;
  --color-dark: #0f1b2e;
  --color-panel: rgba(22, 33, 62, 0.95);
  --color-text: #ffffff;
  --gradient-bg: linear-gradient(135deg, var(--color-bg), var(--color-bg-alt));
  --transition-fast: 0.3s ease;
  --border-radius-lg: 20px;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0b1224, #101a33);
  background: var(--gradient-bg);
  color: #ffffff;
  color: var(--color-text);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.btn,
.btn-login,
.btn-play,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-login,
.btn-play {
  padding: 10px 24px;
  font-size: 0.95rem;
}

.btn-login {
  background: linear-gradient(135deg, #f6c344, #2f7bff);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #0b1224;
  box-shadow: 0 4px 15px rgb(246, 195, 68);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(246, 195, 68);
}

.btn-play {
  border: 2px solid #f6c344;
  border: 2px solid var(--color-primary);
  color: #f6c344;
  color: var(--color-primary);
  background: transparent;
}

.btn-play:hover {
  background: rgb(246, 195, 68);
}

.btn-primary {
  background: linear-gradient(135deg, #f6c344, #2f7bff);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #0b1224;
  box-shadow: 0 8px 25px rgb(246, 195, 68);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgb(246, 195, 68);
}

.btn-secondary {
  background: transparent;
  color: #f6c344;
  color: var(--color-primary);
  border: 2px solid #f6c344;
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: rgb(246, 195, 68);
  transform: translateY(-2px);
}

.surface-panel {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgb(246, 195, 68);
  border-radius: 20px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.surface-panel {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ============================================================================
           TEXAS HOLD'EM EXPLANATION PAGE STYLES
           ============================================================================ */
/* Import base styles from main site */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0b1224, #101a33);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Animated background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 255, 215, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Header */
.header {
  background: rgba(22, 33, 62, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid rgba(0, 255, 136, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 5%;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #f6c344;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.nav-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-text-decoration: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #f6c344, #2f7bff);
  color: #0b1224;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #f6c344;
  border: 2px solid #f6c344;
}

.btn-secondary:hover {
  background: rgba(0, 255, 136, 0.1);
}

/* Main Content */
.main-content {
  padding-top: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 100px;
  min-height: 100vh;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 0;
  background: rgba(22, 33, 62, 0.5);
  border-radius: 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f6c344, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f6c344, #2f7bff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #cde5ff;
  max-width: 800px;
  margin: 0 auto;
}

/* Section Styles */
.section {
  background: rgba(22, 33, 62, 0.3);
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.section:hover {
  border-color: rgba(0, 255, 136, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

h2 {
  font-size: 2.5rem;
  color: #f6c344;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

h3 {
  font-size: 1.8rem;
  color: #2f7bff;
  margin: 30px 0 20px;
}

/* Quick Navigation */
.quick-nav {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
  border: 2px solid rgba(0, 255, 136, 0.3);
}

.quick-nav h3 {
  color: #f6c344;
  margin-bottom: 20px;
}

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 15px;
  gap: 15px;
}

.nav-item {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #cde5ff;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background: rgba(0, 255, 136, 0.2);
  transform: translateY(-3px);
  color: #f6c344;
}

/* Card Visual */
.card-display {
  display: inline-flex;
  gap: 5px;
  margin: 10px 0;
}

.card {
  width: 50px;
  height: 70px;
  background: white;
  border: 2px solid #333;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.card.hearts, .card.diamonds {
  color: #e74c3c;
}

.card.clubs, .card.spades {
  color: #2c3e50;
}

/* Hand Rankings */
.hand-ranking {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.hand-ranking:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.hand-info {
  flex: 1;
}

.hand-name {
  font-size: 1.4rem;
  color: #ffd700;
  font-weight: 700;
  margin-bottom: 5px;
}

.hand-description {
  color: #cde5ff;
}

.hand-example {
  display: flex;
  gap: 5px;
}

/* Strategy Tips */
.tip-box {
  background: rgba(0, 255, 136, 0.1);
  border-left: 4px solid #f6c344;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
}

.tip-box h4 {
  color: #f6c344;
  margin-bottom: 10px;
}

/* Position Table */
.position-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.position-table th {
  background: rgba(0, 255, 136, 0.2);
  color: #f6c344;
  padding: 15px;
  text-align: left;
  font-weight: 700;
}

.position-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cde5ff;
}

.position-table tr:hover {
  background: rgba(0, 255, 136, 0.05);
}

/* Action Buttons */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 20px;
  gap: 20px;
  margin: 20px 0;
}

.action-button {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.action-button:hover {
  transform: scale(1.05);
  border-color: #f6c344;
}

.action-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.action-name {
  color: #f6c344;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Practice Section */
.practice-cta {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 215, 0.2));
  border: 2px solid #f6c344;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .section {
    padding: 20px;
  }
  .hand-ranking {
    flex-direction: column;
    text-align: center;
  }
  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
/* Animations */
.fade-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section {
  opacity: 1;
  visibility: visible;
}

/*# sourceMappingURL=uitleg.css.map */