/**
 * Prism.js BetMGM Dark Theme
 *
 * A custom theme designed to match the BetMGM color scheme (Black, Gold, White).
 */

code[class*="language-"],
pre[class*="language-"] {
	color: #f8f8f2; /* Default text color - near white */
	background: none;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 1em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.5;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
	border-radius: 0.3em;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: #1a1a1a; /* BetMGM dark background */
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #888; /* Muted grey for comments */
}

.token.punctuation {
	color: #ccc; /* Light grey for punctuation */
}

/* Gold tones for primary tokens */
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted,
.token.boolean,
.token.number,
.token.keyword,
.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
	color: #c9b35e; /* BetMGM Gold */
}

/* Brighter yellow for strings and similar */
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #e6db74; /* Brighter Gold/Yellow */
}

/* White for operators and variables */
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
	color: #f8f8f2; /* Near white */
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}