/**
 * GamblingSitesTexas Design System
 * Loaded on all pages by the installer plugin
 *
 * Design tokens:
 *   Navy:  #002868 (Texas flag blue)
 *   Red:   #BF0A30 (Texas flag red)
 *   White: #FFFFFF
 *   Dark text: #1a1a1a
 *   Secondary text: #555
 *   Border: #ddd
 *   Light bg: #f5f5f5
 */

/* ============================================
   HERO SECTIONS
   ============================================ */

.gst-hero {
	background: #002868;
	color: #ffffff !important;
	padding: 64px 24px 56px;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}

.gst-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: repeating-linear-gradient(
		90deg,
		#BF0A30 0,
		#BF0A30 20px,
		#ffffff 20px,
		#ffffff 40px
	);
}

.gst-hero h1 {
	font-size: 38px;
	margin: 0 0 18px;
	font-weight: 700;
	letter-spacing: -0.5px;
	color: #ffffff !important;
	line-height: 1.2;
}

.gst-hero-lede {
	font-size: 17px;
	max-width: 760px;
	margin: 0 auto;
	color: #ffffff !important;
	line-height: 1.7;
	text-align: left;
}

.gst-hero-lede strong {
	color: #ffffff !important;
	font-weight: 700;
}

.gst-hero-lede a {
	color: #ffffff !important;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.5);
	font-weight: 600;
}

.gst-hero-lede a:hover {
	text-decoration-color: #ffffff;
}

.gst-hero-meta {
	display: flex;
	gap: 18px;
	justify-content: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85) !important;
	margin-top: 28px;
	flex-wrap: wrap;
}

.gst-hero-meta span {
	color: rgba(255, 255, 255, 0.85) !important;
}

@media (max-width: 768px) {
	.gst-hero { padding: 44px 18px 40px; }
	.gst-hero h1 { font-size: 26px; }
	.gst-hero-lede { font-size: 15px; }
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.gst-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

.gst-prose {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px;
}

.gst-prose p {
	font-size: 16px;
	line-height: 1.75;
	color: #1a1a1a;
	margin: 0 0 18px;
}

.gst-prose h2 {
	font-size: 26px;
	color: #1a1a1a;
	margin: 36px 0 14px;
	font-weight: 700;
	line-height: 1.3;
}

.gst-prose h3 {
	font-size: 20px;
	color: #1a1a1a;
	margin: 28px 0 12px;
	font-weight: 700;
	line-height: 1.3;
}

.gst-prose a {
	color: #BF0A30;
	text-decoration: underline;
	text-decoration-color: rgba(191, 10, 48, 0.4);
}

.gst-prose a:hover {
	text-decoration-color: #BF0A30;
}

.gst-prose strong {
	color: #002868;
	font-weight: 700;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.gst-section {
	padding: 56px 0;
}

.gst-section-light {
	background: #f5f5f5;
}

.gst-section-title {
	font-size: 26px;
	color: #002868;
	font-weight: 700;
	margin: 0 0 16px;
	border-bottom: 3px solid #BF0A30;
	padding-bottom: 12px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
	line-height: 1.3;
}

.gst-section-title-center {
	justify-content: center;
	border-bottom: none;
	padding-bottom: 0;
	text-align: center;
}

.gst-section-title-meta {
	font-size: 13px;
	color: #666;
	font-weight: 400;
}

.gst-section-subtitle {
	text-align: center;
	color: #555;
	margin: 0 0 28px;
	font-size: 16px;
}

/* ============================================
   OPERATOR REVIEW CARDS
   ============================================ */

.gst-operator-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 16px;
	background: #fff;
	transition: box-shadow 0.2s ease;
}

.gst-operator-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gst-operator-card-top {
	border: 2px solid #BF0A30;
}

.gst-operator-ribbon {
	background: #BF0A30;
	color: #fff;
	padding: 6px 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.gst-operator-card-body {
	display: flex;
	align-items: center;
	padding: 20px;
	gap: 18px;
}

.gst-operator-logo {
	background: #002868;
	color: #fff;
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	flex-shrink: 0;
	letter-spacing: -0.5px;
}

/* Logo color variants for visual differentiation */
.gst-logo-cafe       { background: #4a2c2a; }
.gst-logo-slots      { background: #1a5e3a; }
.gst-logo-betonline  { background: #0d4f8b; }
.gst-logo-mybookie   { background: #5d1a1a; }
.gst-logo-ignition   { background: #2c1a4a; }
.gst-logo-wild       { background: #7a3c00; }
.gst-logo-betus      { background: #1f4a5e; }
.gst-logo-super      { background: #4a1f5e; }
.gst-logo-stake      { background: #1a1a3a; }
.gst-logo-chumba     { background: #5e2a1a; }
.gst-logo-dk         { background: #53d337; color: #002868; }
.gst-logo-fd         { background: #0066ff; }
.gst-logo-pp         { background: #6a3aff; }
.gst-logo-underdog   { background: #ff5400; }
.gst-logo-sleeper    { background: #161616; }
.gst-logo-kalshi     { background: #1c5cff; }
.gst-logo-polymarket { background: #2d96f3; }
.gst-logo-jackpocket { background: #1e7a3c; }
.gst-logo-twinspires { background: #cb003c; }

.gst-operator-info {
	flex: 1;
	min-width: 0;
}

.gst-operator-name-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
	flex-wrap: wrap;
}

.gst-operator-name {
	margin: 0;
	font-size: 19px;
	color: #002868;
	font-weight: 700;
}

.gst-operator-rating-stars {
	color: #f5a623;
	font-size: 14px;
	letter-spacing: 1px;
}

.gst-operator-rating-number {
	font-size: 13px;
	color: #666;
}

.gst-operator-description {
	margin: 0;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.gst-operator-cta {
	text-align: right;
	flex-shrink: 0;
}

.gst-operator-bonus-label {
	font-size: 11px;
	color: #666;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.gst-operator-bonus-amount {
	font-size: 18px;
	font-weight: 700;
	color: #002868;
	margin-bottom: 10px;
	white-space: nowrap;
}

.gst-cta-button {
	display: inline-block;
	background: #BF0A30;
	color: #fff !important;
	padding: 10px 18px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.15s ease;
	white-space: nowrap;
}

.gst-cta-button:hover {
	background: #9a0826;
	color: #fff !important;
}

.gst-cta-button-large {
	padding: 14px 28px;
	font-size: 15px;
}

@media (max-width: 768px) {
	.gst-operator-card-body {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
	.gst-operator-cta {
		text-align: left;
		width: 100%;
	}
	.gst-operator-bonus-amount {
		display: inline-block;
		margin-right: 12px;
		margin-bottom: 0;
	}
}

/* ============================================
   CATEGORY GRID
   ============================================ */

.gst-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 20px;
}

.gst-category-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 20px 12px;
	text-align: center;
	text-decoration: none !important;
	color: #002868 !important;
	border-top: 3px solid #BF0A30;
	transition: all 0.15s ease;
	display: block;
}

.gst-category-card:hover {
	background: #002868;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 40, 104, 0.15);
}

.gst-category-card:hover .gst-category-icon svg {
	stroke: #fff;
}

.gst-category-icon {
	margin-bottom: 8px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gst-category-icon svg {
	width: 28px;
	height: 28px;
	stroke: #BF0A30;
	transition: stroke 0.15s ease;
}

.gst-category-label {
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.gst-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ============================================
   CALLOUT BOXES
   ============================================ */

.gst-callout {
	background: #fff8e1;
	border-left: 4px solid #BF0A30;
	padding: 18px 22px;
	border-radius: 0 6px 6px 0;
	margin: 24px 0;
}

.gst-callout-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.gst-callout-icon {
	color: #BF0A30;
	font-size: 18px;
	font-weight: 700;
}

.gst-callout-title {
	color: #002868;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.gst-callout-body {
	margin: 0;
	font-size: 14px;
	color: #333;
	line-height: 1.6;
}

.gst-callout-body a {
	color: #BF0A30;
	font-weight: 600;
	text-decoration: none;
}

.gst-callout-body a:hover {
	text-decoration: underline;
}

/* Info variant (blue) */
.gst-callout-info {
	background: #e8f1ff;
	border-left-color: #002868;
}

.gst-callout-info .gst-callout-icon {
	color: #002868;
}

/* Success variant (green) */
.gst-callout-success {
	background: #e8f5e9;
	border-left-color: #2e7d32;
}

.gst-callout-success .gst-callout-icon {
	color: #2e7d32;
}

.gst-callout-success .gst-callout-title {
	color: #1b5e20;
}

/* ============================================
   COMPARISON TABLES
   ============================================ */

.gst-table-intro {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	margin: 0 0 20px;
}

.gst-table-footer {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin: 16px 0 0;
}

.gst-comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid #ddd;
}

.gst-comparison-table thead {
	background: #002868;
}

.gst-comparison-table thead th {
	padding: 14px 12px;
	text-align: left;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
	color: #ffffff !important;
}

.gst-comparison-table tbody tr {
	border-bottom: 1px solid #eee;
}

.gst-comparison-table tbody tr:last-child {
	border-bottom: none;
}

.gst-comparison-table tbody tr:hover {
	background: #fafafa;
}

.gst-comparison-table tbody td {
	padding: 14px 12px;
	font-size: 14px;
	color: #333;
	border: none;
	vertical-align: middle;
}

.gst-table-name {
	color: #002868;
	font-weight: 700;
	font-size: 15px;
}

.gst-rank-badge {
	display: inline-block;
	background: #BF0A30;
	color: #fff;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	font-weight: 700;
	font-size: 13px;
	line-height: 26px;
	text-align: center;
}

.gst-rating-cell {
	color: #002868;
	font-weight: 700;
}

.gst-table-cta {
	display: inline-block;
	background: #BF0A30;
	color: #ffffff !important;
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.15s ease;
}

.gst-table-cta:hover {
	background: #9a0826;
	color: #ffffff !important;
}

@media (max-width: 768px) {
	.gst-comparison-table { font-size: 12px; }
	.gst-comparison-table thead th,
	.gst-comparison-table tbody td { padding: 10px 8px; }
}

/* ============================================
   REVIEW QUICK FACTS (above each review)
   ============================================ */

.gst-review-quick {
	margin: 16px 0 20px;
}

.gst-review-quick-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.gst-review-fact {
	background: #f8f9fa;
	padding: 12px 14px;
	border-radius: 6px;
	border-left: 3px solid #BF0A30;
}

.gst-review-fact-label {
	font-size: 10px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
	font-weight: 600;
}

.gst-review-fact-value {
	font-size: 15px;
	color: #002868;
	font-weight: 700;
}

@media (max-width: 600px) {
	.gst-review-quick-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ============================================
   REVIEW CTA (after each review)
   ============================================ */

.gst-review-cta {
	margin: 24px 0 40px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	text-align: center;
	border: 1px solid #e5e5e5;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.gst-faq {
	margin: 24px 0;
}

.gst-faq-item {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-bottom: 10px;
	background: #fff;
	overflow: hidden;
}

.gst-faq-question {
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 600;
	color: #002868;
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 50px;
	user-select: none;
}

.gst-faq-question::-webkit-details-marker {
	display: none;
}

.gst-faq-question::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #BF0A30;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	transition: transform 0.2s ease;
}

.gst-faq-item[open] .gst-faq-question::after {
	content: "−";
}

.gst-faq-answer {
	padding: 0 20px 18px;
	color: #444;
	font-size: 14px;
	line-height: 1.65;
}

.gst-faq-answer p {
	margin: 0 0 10px;
}

.gst-faq-answer p:last-child {
	margin-bottom: 0;
}

/* ============================================
   INFO BLOCKS (pros, cons, feature highlights)
   ============================================ */

.gst-info-block {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px 24px;
	margin: 20px 0;
	border-left: 3px solid #002868;
}

.gst-info-block-title {
	font-size: 16px;
	font-weight: 700;
	color: #002868;
	margin: 0 0 12px;
}

.gst-info-block ul {
	margin: 0;
	padding-left: 20px;
}

.gst-info-block li {
	margin-bottom: 6px;
	color: #333;
	font-size: 14px;
	line-height: 1.6;
}

.gst-pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 20px 0;
}

.gst-pros, .gst-cons {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 18px 22px;
}

.gst-pros {
	border-left: 3px solid #2e7d32;
}

.gst-cons {
	border-left: 3px solid #BF0A30;
}

.gst-pros h4, .gst-cons h4 {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
}

.gst-pros h4 { color: #1b5e20; }
.gst-cons h4 { color: #BF0A30; }

.gst-pros ul, .gst-cons ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gst-pros li, .gst-cons li {
	padding-left: 22px;
	position: relative;
	margin-bottom: 8px;
	font-size: 14px;
	color: #333;
	line-height: 1.5;
}

.gst-pros li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #2e7d32;
	font-weight: 700;
}

.gst-cons li::before {
	content: "✕";
	position: absolute;
	left: 0;
	color: #BF0A30;
	font-weight: 700;
}

@media (max-width: 768px) {
	.gst-pros-cons {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */

.gst-toc {
	background: #f8f9fa;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 20px 24px;
	margin: 24px 0;
}

.gst-toc-title {
	font-size: 13px;
	font-weight: 700;
	color: #002868;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin: 0 0 12px;
}

.gst-toc ul {
	margin: 0;
	padding: 0;
	list-style: none;
	columns: 2;
	column-gap: 24px;
}

.gst-toc li {
	margin-bottom: 6px;
	font-size: 14px;
	break-inside: avoid;
}

.gst-toc a {
	color: #002868;
	text-decoration: none;
	border-bottom: 1px dotted #BF0A30;
}

.gst-toc a:hover {
	color: #BF0A30;
}

@media (max-width: 600px) {
	.gst-toc ul { columns: 1; }
}

/* ============================================
   PARAGRAPH AND CONTENT STYLES
   ============================================ */

.gst-intro-text {
	font-size: 17px;
	line-height: 1.7;
	color: #2a2a2a;
	margin-bottom: 20px;
}

.gst-intro-text strong {
	color: #002868;
}

/* ============================================
   AT-A-GLANCE BOX (for top of pages)
   ============================================ */

.gst-glance {
	background: #f8f9fa;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px 24px;
	margin: 24px 0;
}

.gst-glance-title {
	font-size: 13px;
	font-weight: 700;
	color: #002868;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin: 0 0 12px;
}

.gst-glance ul {
	margin: 0;
	padding-left: 20px;
}

.gst-glance li {
	margin-bottom: 8px;
	font-size: 14px;
	color: #333;
	line-height: 1.6;
}

.gst-glance li strong {
	color: #002868;
}
