@font-face {
    font-family: 'Press Start 2P';
    src: url('../fonts/PressStart2P-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
	background-color: #000;
}
.main_video_div {
	background-image: url("../img/television_bg.webp");
	background-size: 70em;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	flex: 1;
	height: 55em;
}

body {
	overflow: hidden;
}

.capitalization-text {
    font-family: 'Press Start 2P', monospace;
}

#accounting-container {
	cursor: pointer;
}

#no-content {
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
}

#no-content-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

#all-content {
	display: none;
	height: 100vh;
}

.main-section {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.top-sidebar {
	color: white;
	margin: .5em 1em;
	padding: 1em;
	text-align: center;
}

.middle-content {
	display: flex;
	justify-content: space-between;
}

#channelHeader {
	overflow: visible;
	z-index: 5;
	font-family: "IBM Plex Mono", monospace;
	font-size: 2rem;
	color: #00ff22;
	text-transform: uppercase;
	text-shadow: 0px 0px 2px #000;
	font-weight: 700;
	transition: 0.2s ease;
	cursor: pointer;
	transform: translateX(-20%);
	word-wrap: break-word;
	word-break: normal;
	max-width: 10ch;
}

#left-sidebar {
	color: white;
	width: 20em;
	height: 55em;
	text-align: center;
	flex: 0 0 20em;
	z-index: 1005;
}

#btn-sound {
    position: fixed;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 800;
	cursor: pointer;
}

.video { 
	margin: 18.6em auto 0 auto;
	position: relative;
	height: 22em;
	width: 28em;
	left: -52px;
}

.video.max-width-layout { 
	margin: 18.6em 1em 0 1em;
	position: relative;
	height: 22em;
	width: calc(100% - 2em);
	left: 0;
	max-width: calc(100vw - 40em); /* Account for sidebars */
}

#videoElem {
	position: relative;
	z-index: -1;
	height: 100%;
}

#videoElem.max-width-layout {
	width: 100%;
}

.no-video:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url(../img/television_bg_inner.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.load-video:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url(../img/static.gif);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.play-btn {
	position: absolute;
	top: 5px;
	left: 100%;
	height: 80px;
	width: 80px;
	margin-left: 10%;
	font-size: 0;
	border-radius: 50%;
	cursor: grabbing;
    outline: none;
	opacity: 1;
	appearance: none;
	border: 0 none;
	background-image: url(../img/knob.png);
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease;
}
.play-btn .hand-icon {
	position: absolute;
	left: 100%;
	top: 20px;
	width: auto;
	height: 95%;
	transform-origin: bottom left;
	animation-name: movehand;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	pointer-events: none;
}
.play-btn.clicked .hand-icon {
	display: none;
}
@keyframes movehand {
	0 { transform: rotate(0); }
	50% { transform: rotate(-50deg); }
	100%{ transform: rotate(0); }
}

iframe {
	width: 36em;
	height: 30em;
}

.click-field {
	width: 5em;
	margin-left: 4em;
	margin-bottom: 18.3em;
}

#right-sidebar {
	color: white;
	width: 20em;
	height: 55em;
	text-align: center;
	position: relative;
	flex: 0 0 18em;
}

.bottom-sidebar {
	background-color: white;
	margin: .5em 1em;
	padding: 1em;
	text-align: center;
}

#loading {
	background-image: url(../img/static.gif);
	height: 100%;
	width: 100%;
	background-size: cover;
	z-index: 2;
	position: absolute;
	top: 0; left: 0;
}

#loading.bumper {
    /* Background image set dynamically via JavaScript */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#video-title { font-size: 22px; width: 90%; padding: 0 15px; max-width: 410px; bottom: 15px; right: 0; }
.video_div { z-index: -1; position: relative; height: 100%; overflow: hidden; pointer-events: none; }
#videoElem iframe{ display: none; position: absolute; top: 0; bottom: 0; left: -400%; right: -400%; width: 900% !important; height: 100% !important; }

#videoElem.max-width-layout iframe{ left: -200%; right: -200%; width: 500% !important; }

.unloader { display: none; }

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 1007;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: absolute;
    top: 20%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fffff0;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-body:focus {
    outline: none;
}

#close-btn {
	position: absolute;
	font-size: 3em;
	top: 0;
	right: 10px;
	cursor: pointer;
}

#btn-book {
	position: absolute;
	bottom: -0.5vh;
	left: 5vw;
	cursor: pointer;
	z-index: 1006;
}

#btn-book img {
	width: 100%;
}

#chatter {
	position: absolute;
	bottom: 12vh;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	color: white;
	display: none;
	font-family: 'Press Start 2P', monospace;
	text-shadow: 0 0 10px currentColor;
	white-space: nowrap;
}

#create-chatter {
	cursor: pointer;
}

#btn-sched {
	position: absolute;
	bottom: -0.5vh;
	right: 5vw;
	z-index: 1;
	cursor: pointer;
}
#btn-sched img {
	width: 100%;
}

#btn-player {
    position: fixed;
    bottom: -1vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 800;
	cursor: pointer;
}
#btn-player img {
	width: 100%;
}

.tv-guide-page {
	font-family: 'Courier New', Courier, monospace;
	background-color: #f0f0f0;
	margin: 0;
	padding: 20px;
	font-size: 12px;
	line-height: 1.2;
	background-color: #ffffd4;
	border: 1px solid #000;
	padding: 10px;
	width: 90%;
	margin: 0 auto;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}
.header {
	text-align: center;
	border-bottom: 2px solid #000;
	margin-bottom: 10px;
	padding-bottom: 5px;
}
.header h1 {
	font-size: 24px;
	margin: 0;
	font-weight: bold;
	color: #000080;
}
.date {
	font-weight: bold;
	font-size: 14px;
}
.grid {
	display: grid;
	grid-template-columns: auto 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 2px;
}
.grid-header, .time-slot {
	background-color: #e6e6c8;
	border: 1px solid #000;
	padding: 2px 4px;
	font-weight: bold;
	text-align: center;
}
.grid-header a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.grid-header a:hover {
    opacity: 0.8;
}
.channel {
	border: 1px solid #000;
	padding: 2px 4px;
	font-weight: bold;
	background-color: #ffffd4;
}
.program {
	border: 1px solid #000;
	padding: 2px 4px;
	background-color: #ffffd4;
}

.schedule-page {
	font-family: 'Courier New', Courier, monospace;
	background-color: #f0f0f0;
	margin: 0;
	padding: 20px;
	font-size: 18px;
	line-height: 1.2;
	background-color: #ffffd4;
	border: 1px solid #000;
	padding: 10px;
	width: 90%;
	min-height: 90%;
	margin: 0 auto;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.url-form {
    margin: 20px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.url-form__label {
    margin-bottom: 8px;
    font-weight: bold;
}

.url-form__textarea {
    width: 100%;
    padding: 8px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #000;
    background-color: #ffffd4;
    margin-bottom: 10px;
    box-sizing: border-box;
    height: calc(1.2em * 10 + 20px);
    line-height: 1.2em;
    resize: none;
}

.url-form__submit {
    background-color: #e6e6c8;
    border: 1px solid #000;
    padding: 8px 16px;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
    align-self: flex-start;
}

.url-form__submit:hover {
    opacity: 0.8;
    cursor: pointer;
}

.url-form__input {
    width: 100%;
    padding: 8px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #000;
    background-color: #ffffd4;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.url-form__divider {
    margin: 20px 0;
    border: none;
    border-top: 2px solid #ccc;
}

.clock {
	width: 125px;
	height: 125px;
	border: 5px solid #555;
	border-radius: 50%;
	position: relative;
	background: #fff;
	z-index: 1001;
	cursor: pointer;
}
.hand {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform-origin: 50% 100%;
	border-radius: 2px;
}
.hour-hand {
	width: 3px;
	height: 30%;
	background: #555;
	margin-left: -3px;
}
.min-hand {
	width: 2px;
	height: 40%;
	background: #777;
	margin-left: -2px;
}
.second-hand {
	width: 1px;
	height: 45%;
	background: #d00;
	margin-left: -1px;
}
.center-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #555;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.marker {
	position: absolute;
	width: 100%;
	height: 100%;
}
.marker::after {
	content: '';
	width: 4px;
	height: 12px;
	background: #555;
	position: absolute;
	top: 10px;
	left: 50%;
	margin-left: -2px;
}

.youtube-search-container {
	padding-top: 4px;
    display: flex;
    align-items: center;
}

.pagination {
	padding-bottom: 2px;
}

.pagination-btn {
    flex: 0 0 auto;
}

.youtube-results {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.youtube-video {
	font-size: 0.8em;
    width: 200px;
    margin: 10px;
    text-align: center;
	cursor: pointer;
}

.youtube-video.highlighted {
    border: 2px solid #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.notification {
	position: fixed;
	top: -5vh;
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: #fff;
	width: 90%;
	max-width: 600px;
	height: 5vh;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	border-radius: 5px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	transition: top 0.5s ease-in-out;
	z-index: 1100;
}

.notification.show {
	top: 2vh;
}

.close-notification-btn {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
}

.big-story-container {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    font-size: 2em;
    margin: 0;
    text-align: center;
    flex-direction: column;
}

.big-story-line {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: relative;
}

#big-story-next-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    background-color: white;
    color: black;
    border: none;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#big-story-next-button:hover {
    background-color: black;
    color: white;
}

.deal-container {
	font-family: Arial, sans-serif;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
.deal-title {
	text-align: center;
	color: #333;
}
.deal-highlight-container {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.deal-column {
	width: 32%;
	background-color: #f0f0f0;
	border-radius: 8px;
	padding: 15px;
	display: flex;
	flex-direction: column;
}
.deal-column h3 {
	text-align: center;
	color: #444;
	margin-top: 0;
}
.deal-card {
	background-color: white;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 10px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.deal-card-content {
	flex-grow: 1;
}
.deal-card p {
	margin: 5px 0;
	font-size: 14px;
}
.deal-nav-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: auto;
}
.deal-nav-button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 5px 10px;
	border-radius: 4px;
	cursor: pointer;
}
.deal-nav-button:disabled {
	background-color: #cccccc;
}
.deal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}
.deal-grid .deal-card {
	margin-bottom: 0;
}
.deal-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.deal-card-title {
	font-weight: bold;
	color: #333;
}
.deal-value {
	font-size: 24px;
	font-weight: bold;
	color: #007bff;
}
.deal-label {
	font-size: 14px;
	color: #666;
}
.deal-sub-info {
	font-size: 4rem;
}

.deal-dashboard-navigation {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
    z-index: 1010;
}

.multiplier-row {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.multiplier-card {
	width: 32%;
	background-color: #f0f0f0;
	border-radius: 8px;
	padding: 15px;
}
.multiplier-title {
	font-weight: bold;
	margin-bottom: 10px;
}
.multiplier-bar {
	height: 20px;
	background-color: #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
}
.multiplier-fill {
	height: 100%;
	background-color: #4CAF50;
	transition: width 0.5s ease-in-out;
}
.multiplier-value {
	text-align: right;
	margin-top: 5px;
	font-weight: bold;
}

.mission-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.mission-column {
    padding: 10px;
    box-sizing: border-box;
}

.mission-column-large {
    width: 70%;
}

.mission-column-small {
    width: 30%;
}

.mission-title {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #4299e1;
}

.mission-content {
    font-size: 16px;
    line-height: 1.6;
}

.mission-channel-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
}

.mission-channel-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.mission-channel-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.leaderboard-container {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-family: Arial, sans-serif;
}
.leaderboard-column {
	flex: 1;
	background: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.leaderboard-column h3 {
	margin-top: 0;
	color: #333;
	font-size: 1.2em;
	border-bottom: 2px solid #e9ecef;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.leaderboard-column ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.leaderboard-item {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #e9ecef;
}
.leaderboard-item:last-child {
	border-bottom: none;
}
.leaderboard-item .rank {
	font-weight: bold;
	min-width: 30px;
	text-align: center;
}
.leaderboard-item .name {
	flex-grow: 1;
	margin: 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.leaderboard-item .value {
	font-weight: bold;
	color: #28a745;
}
.leaderboard-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.animation-finished {
    color: white !important;
}

@keyframes glow {
	0% {
		box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
	}
	25% {
		box-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
	}
	50% {
		box-shadow: 0 0 150px rgba(255, 255, 255, 0.7);
	}
	75% {
		box-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
	}
	100% {
		box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
	}
}

.glowing-image {
	animation: glow 3s ease-in-out infinite;
	transition: all 0.3s ease;
}

@keyframes glow-text {
	0% {
	box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
	}
	25% {
	box-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
	}
	50% {
	box-shadow: 0 0 150px rgba(255, 255, 255, 0.7);
	}
	75% {
	box-shadow: 0 0 100px rgba(255, 255, 255, 0.5);
	}
	100% {
	box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
	}
}

.glowing-text {
	display: inline-block; 
	animation: glow-text 3s ease-in-out infinite;
}

.deal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.deal-title {
	margin: 0;
}

.dash-action-button, .deal-action-button {
    padding: 10px 15px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.dash-action-button:active, .deal-action-button:active {
    transform: scale(0.98);
}

#add-titles-button, #book-deal-button {
    background-color: #28a745;
}

#add-titles-button:hover, #book-deal-button:hover {
    background-color: #218838;
}

#add-titles-button:active, #book-deal-button:active {
    background-color: #1e7e34;
}

#review-logs-button-container {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 15px;
}

#review-logs-button, #prevChannelBtn, #nextChannelBtn, #close-transaction-log-modal {
	background-color: #007bff;
}

#review-logs-button:hover, #prevChannelBtn:hover, #nextChannelBtn:hover, #close-transaction-log-modal:hover {
	background-color: #0056b3;
}

#review-logs-button:active, #prevChannelBtn:active, #nextChannelBtn:active, #close-transaction-log-modal:active {
	background-color: #004080;
}

#cancel-deal-button {
	background-color: #dc2626;
}

#cancel-deal-button:hover {
	background-color: #b92121;
}

#cancel-deal-button:active {
	background-color: #9c1d1d;
}
#review-logs-button:disabled, #prevChannelBtn:disabled, #nextChannelBtn:disabled, #close-transaction-log-modal:disabled {
	background-color: #cccccc;
}

.dash-action-button:disabled {
	cursor: not-allowed;
}

#transactionLogs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Courier New', Courier, monospace;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
}

.transaction-log {
    width: 48%;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.left-column {
    margin-right: 2%;
}

.right-column {
    margin-left: 2%;
}

.transaction-log-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.transaction-log-title {
    font-weight: bold;
}

.transaction-log-amount {
    color: #007bff;
}

@media only screen and (max-width: 1650px) {
	#left-sidebar , #right-sidebar { width: 15em; flex: 0 0 15em; }
}

@media only screen and (max-width: 1300px) {
	#left-sidebar , #right-sidebar { width: 12em; flex: 0 0 12em; height: 50em; }
	.main_video_div { background-size: 55em; height: 50em; }
	.video { height: 18em; width: 22em; margin: 17em auto 0 auto; left: -46px; }
	.video.max-width-layout { height: 18em; width: calc(100% - 2em); margin: 17em 1em 0 1em; left: 0; max-width: calc(100vw - 24em); }
	.play-btn { height: 70px; width: 70px; top: 16px; }
}

@media only screen and (max-width: 991px) {
	.main_video_div { background-size: 55em; height: 50em; flex: 100%; }
	.video.max-width-layout { width: calc(100% - 2em); margin: 17em 1em 0 1em; left: 0; max-width: none; }
	#video-title { max-width: 100%; font-size: 20px; }
	#btn-book, #btn-sched { display: none; }
}

@media only screen and (max-width: 768px) {
	#left-sidebar, #right-sidebar, #btn-book, #btn-sched { display: none; }
}

@media only screen and (max-width: 570px) {
	.main_video_div { background-size: 38em; height: 35em; }
	.video { width: 13.4em; height: 10em; margin: 13.3em auto 0; left: -28px; }
	.video.max-width-layout { width: calc(100% - 2em); height: 10em; margin: 13.3em 1em 0 1em; left: 0; }
	.play-btn { height: 40px; width: 40px; top: -4px; margin-left: 19%; }
	#btn-book, #btn-sched { display: none; }
}

@media only screen and (max-width: 470px) {
	.main_video_div { background-size: 35em; }
	.video { width: 12.4em; height: 9.4em; margin: 13.45em auto 0; }
	.video.max-width-layout { width: calc(100% - 2em); height: 9.4em; margin: 13.45em 1em 0 1em; left: 0; }
	#btn-book, #btn-sched { display: none; }
}

/* Program Selection Styles */
.program-selection-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #000;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
}

.program-selection {
	padding: 40px;
	color: white;
	font-family: 'Press Start 2P', monospace;
	width: 100%;
	margin: auto;
}

.program-selection h2 {
	font-size: 24px;
	margin-bottom: 40px;
	text-align: center;
	color: #00ff22;
	text-shadow: 0 0 20px #00ff22;
	animation: glow 2s ease-in-out infinite alternate;
	width: 100%;
}

@keyframes glow {
	from {
		text-shadow: 0 0 20px #00ff22, 0 0 30px #00ff22;
	}
	to {
		text-shadow: 0 0 30px #00ff22, 0 0 40px #00ff22, 0 0 50px #00ff22;
	}
}

.program-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
	justify-content: center;
	align-items: center;
}

@media only screen and (max-width: 1200px) {
	.program-option {
		flex: 0 0 calc(25% - 20px);
	}
}

@media only screen and (max-width: 900px) {
	.program-option {
		flex: 0 0 calc(33.333% - 20px);
	}
}

@media only screen and (max-width: 600px) {
	.program-option {
		flex: 0 0 calc(50% - 20px);
	}
	.program-selection h2 {
		font-size: 16px;
	}
}

.program-option {
	cursor: pointer;
	border: 4px solid transparent;
	padding: 15px;
	transition: all 0.3s ease;
	background: rgba(0, 50, 0, 0.3);
	border-radius: 12px;
	position: relative;
	flex: 0 0 calc(16% - 20px);
	max-width: 160px;
}

.program-option:hover {
	border-color: #00ff22;
	transform: scale(1.1);
	box-shadow: 0 0 30px rgba(0, 255, 34, 0.6);
	background: rgba(0, 100, 0, 0.4);
}

.program-option.selected {
	border-color: #00ff22;
	background: rgba(0, 255, 34, 0.3);
	box-shadow: 0 0 40px rgba(0, 255, 34, 0.9), inset 0 0 20px rgba(0, 255, 34, 0.3);
	transform: scale(1.1);
}

.program-option.selected::before {
	content: '✓';
	position: absolute;
	top: 5px;
	right: 5px;
	background: #00ff22;
	color: #000;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	box-shadow: 0 0 10px #00ff22;
}

.program-option img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	border: 2px solid rgba(0, 255, 34, 0.2);
}

.program-name {
	text-align: center;
	margin-top: 12px;
	font-size: 11px;
	color: #00ff22;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.confirm-btn {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	display: block;
	padding: 20px;
	font-family: 'Press Start 2P', monospace;
	font-size: 14px;
	background: #00ff22;
	color: #000;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-weight: bold;
}

.confirm-btn:hover:not(:disabled) {
	background: #00cc1b;
	box-shadow: 0 0 30px rgba(0, 255, 34, 0.9);
	transform: scale(1.05);
}

.confirm-btn:disabled {
	background: #333;
	color: #666;
	cursor: not-allowed;
	opacity: 0.5;
}