﻿	/* Pinned Lines Checker - Enhanced Dark Theme */

	.pinned-lines-checker {
		max-width: 1400px;
		margin: 0 auto;
		padding: 20px;
		background: #1a1a1a;
		border-radius: 16px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		color: #e0e6ed;
		font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	}

	.pinned-lines-checker h2 {
		text-align: center;
		margin-bottom: 30px;
		font-size: 2.2rem;
		font-weight: 700;
		background: linear-gradient(45deg, #ffd700, #ffed4a, #f39c12);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	}

	/* Controls Section */
	.checker-controls {
		background: #2d2d2d;
		backdrop-filter: blur(10px);
		border-radius: 12px;
		padding: 25px;
		margin-bottom: 30px;
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.filter-row {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
		margin-bottom: 20px;
	}

	.button-row {
		display: flex;
		justify-content: center;
		gap: 15px;
	}

	.control-group {
		display: flex;
		flex-direction: column;
	}

	.control-group label {
		font-weight: 600;
		margin-bottom: 8px;
		color: #b8c5d1;
		font-size: 0.9rem;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.control-group select,
	.control-group input[type="date"] {
		padding: 12px 16px;
		border: 2px solid rgba(255, 255, 255, 0.1);
		border-radius: 8px;
		background: rgba(0, 0, 0, 0.3);
		color: #e0e6ed;
		font-size: 1rem;
		transition: all 0.3s ease;
		cursor: pointer;
	}

	.control-group select:hover:not(:disabled),
	.control-group input[type="date"]:hover:not(:disabled) {
		border-color: rgba(255, 255, 255, 0.2);
		background: rgba(0, 0, 0, 0.4);
	}

	.control-group select:focus,
	.control-group input[type="date"]:focus {
		outline: none;
		border-color: #4a90e2;
		box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
	}

	.control-group select:disabled,
	.control-group input[type="date"]:disabled {
		opacity: 0.5;
		cursor: not-allowed;
	}

	.filter-button {
		background: linear-gradient(135deg, #4a90e2, #357abd);
		border: none;
		padding: 14px 30px;
		border-radius: 8px;
		color: white;
		font-weight: 600;
		font-size: 1.1rem;
		cursor: pointer;
		transition: all 0.3s ease;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
	}
	.filter-button:hover:not(:disabled) {
		background: linear-gradient(135deg, #357abd, #2c5f8f);
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
	}
	.filter-button:disabled {
		opacity: 0.6;
		cursor: not-allowed;
		transform: none;
	}

	/* Check Against Draw button */
	.check-button {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 20px 56px;
		border: 1px solid rgba(190,190,190,0.35);
		border-radius: 22px !important;
		background: linear-gradient(135deg, rgba(80,80,80,0.14), rgba(180,180,180,0.18));
		color: #f4f4f4;
		font-size: 1rem;
		font-weight: 700;
		letter-spacing: 2px;
		text-transform: uppercase;
		cursor: pointer;
		overflow: hidden;
		backdrop-filter: blur(14px);
		box-shadow: 0 0 16px rgba(220,220,220,0.16), 0 0 34px rgba(160,160,160,0.22), 0 0 70px rgba(255,255,255,0.08), inset 0 0 18px rgba(255,255,255,0.05);
		transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	}
	.check-button:hover:not(:disabled) {
		transform: translateY(-3px) scale(1.03);
		border-color: rgba(240,240,240,0.95);
		box-shadow: 0 0 20px rgba(220,220,220,0.26), 0 0 45px rgba(180,180,180,0.3), 0 0 90px rgba(255,255,255,0.12), inset 0 0 22px rgba(255,255,255,0.08);
	}
	.check-button:active { transform: scale(0.97); }
	.check-button::before {
		content: "";
		position: absolute; inset: -2px; border-radius: inherit; padding: 1px;
		background: linear-gradient(90deg, transparent, #f0f0f0, #bdbdbd, #ffffff, #bdbdbd, transparent);
		-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
		-webkit-mask-composite: xor; mask-composite: exclude;
		animation: checkBorderFlow 2.2s linear infinite; pointer-events: none;
	}
	.check-button::after {
		content: "";
		position: absolute; top: 0; left: -140%;
		width: 65%; height: 100%;
		background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.05) 30%, rgba(220,220,220,0.3) 50%, rgba(255,255,255,0.05) 70%, transparent 100%);
		transform: skewX(-25deg);
		animation: checkSweep 2s ease-in-out infinite; pointer-events: none;
	}
	.check-core {
		position: absolute; inset: 4px; border-radius: 18px;
		background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)), rgba(18,18,18,0.94);
		z-index: 0; pointer-events: none;
	}
	.check-content {
		position: relative; z-index: 3;
		display: inline-flex; align-items: center; justify-content: center;
	}
	.check-text {
		position: relative; color: #fafafa;
		text-shadow: 0 0 8px rgba(255,255,255,0.18), 0 0 20px rgba(180,180,180,0.2);
	}
	.check-text::after {
		content: "";
		position: absolute; left: 0; bottom: -6px;
		width: 100%; height: 2px;
		background: linear-gradient(90deg, transparent, #d9d9d9, transparent);
		transform: scaleX(0.7); transform-origin: center;
		animation: checkGlowLine 1.4s ease-in-out infinite;
	}
	.check-button:disabled {
		opacity: 0.5;
		cursor: not-allowed;
		transform: none !important;
	}
	.check-button:disabled::before,
	.check-button:disabled::after { animation: none; }

	@keyframes checkBorderFlow { 0%{filter:brightness(1)} 100%{filter:brightness(1.15)} }
	@keyframes checkSweep      { 0%{left:-140%} 100%{left:150%} }
	@keyframes checkGlowLine   { 0%,100%{opacity:0.45;transform:scaleX(0.7)} 50%{opacity:1;transform:scaleX(1)} }

	/* Pinned Lines Display */
	.pinned-lines-display {
		background: #2d2d2d;
		border-radius: 12px;
		padding: 25px;
		margin-bottom: 30px;
		border: 1px solid rgba(255, 255, 255, 0.05);
	}

	.lines-header {
		margin-bottom: 25px;
		text-align: center;
	}

	.lines-header h3 {
		font-size: 1.8rem;
		margin-bottom: 10px;
		color: #e0e6ed;
		font-weight: 600;
	}

	.page-info {
		color: #b8c5d1;
		font-size: 0.95rem;
		margin: 0;
	}

	.pinned-lines-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
		gap: 20px;
		margin-bottom: 25px;
	}

	.pinned-line-card {
		background: rgba(255, 255, 255, 0.05);
		border-radius: 12px;
		padding: 20px;
		border: 2px solid rgba(255, 255, 255, 0.1);
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}

	.pinned-line-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
		background: linear-gradient(90deg, #ffd700, #ffed4a);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.pinned-line-card.lotto::before {
		background: linear-gradient(90deg, #ffd700, #ffed4a);
	}

	.pinned-line-card.daily-lotto::before {
		background: linear-gradient(90deg, #ff6b6b, #ee4b4b);
	}

	.pinned-line-card.powerball::before {
		background: linear-gradient(90deg, #4a90e2, #357abd);
	}

	.pinned-line-card:hover {
		background: rgba(255, 255, 255, 0.08);
		transform: translateY(-3px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	}

	.pinned-line-card:hover::before {
		opacity: 1;
	}

	.card-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 15px;
		gap: 10px;
	}

	.game-badge {
		background: linear-gradient(135deg, #ffd700, #f39c12);
		color: #1a1a1a;
		padding: 6px 12px;
		border-radius: 20px;
		font-size: 0.85rem;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
	}

	.daily-lotto .game-badge {
		background: linear-gradient(135deg, #ff6b6b, #ee4b4b);
		color: white;
		box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
	}

	.powerball .game-badge {
		background: linear-gradient(135deg, #4a90e2, #357abd);
		color: white;
		box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
	}

	/* Range Badge Colors - Using attribute selectors that will work with JavaScript-added classes */
	.range-badge {
		background: rgba(255, 255, 255, 0.1);
		color: #b8c5d1;
		padding: 6px 12px;
		border-radius: 20px;
		font-size: 0.8rem;
		font-weight: 600;
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	/* Add range-specific classes in JavaScript by checking text content */
	.range-badge.range-infinity,
	.pinned-line-card .range-badge[data-range="Infinity"] {
		background: linear-gradient(135deg, #00d4ff, #0099ff);
		color: white;
		border-color: #00d4ff;
		box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
	}

	.range-badge.range-titan,
	.pinned-line-card .range-badge[data-range="Titan"] {
		background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
		color: white;
		border-color: #c0c0c0;
		box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
	}

	.range-badge.range-apex,
	.pinned-line-card .range-badge[data-range="Apex"] {
		background: linear-gradient(135deg, #da70d6, #9370db);
		color: white;
		border-color: #da70d6;
		box-shadow: 0 2px 8px rgba(218, 112, 214, 0.3);
	}

	.range-badge.range-hyper,
	.pinned-line-card .range-badge[data-range="Hyper"] {
		background: linear-gradient(135deg, #ff3030, #cc0000);
		color: white;
		border-color: #ff3030;
		box-shadow: 0 2px 8px rgba(255, 48, 48, 0.3);
	}

	.card-footer {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 15px;
		padding-top: 15px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.date-picked {
		color: #b8c5d1;
		font-size: 0.85rem;
	}

	.notes-icon {
		font-size: 1.2rem;
		cursor: help;
		transition: transform 0.2s ease;
	}

	.notes-icon:hover {
		transform: scale(1.2);
	}

	/* Pagination */
	.pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		margin-top: 25px;
		flex-wrap: wrap;
	}

	.pagination button {
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.2);
		color: #e0e6ed;
		padding: 8px 16px;
		border-radius: 6px;
		cursor: pointer;
		transition: all 0.3s ease;
		font-size: 0.9rem;
		font-weight: 600;
	}

	.pagination button:hover:not(.active) {
		background: rgba(255, 255, 255, 0.15);
		transform: translateY(-2px);
	}

	.pagination button.active {
		background: linear-gradient(135deg, #4a90e2, #357abd);
		border-color: #4a90e2;
		cursor: default;
	}

	.pagination .page-numbers {
		display: flex;
		gap: 8px;
		align-items: center;
	}

	.pagination .page-numbers span {
		color: #b8c5d1;
		padding: 0 5px;
	}

	/* Loading State */
	.loading {
		text-align: center;
		padding: 40px;
		font-size: 1.2rem;
		color: #b8c5d1;
		background: linear-gradient(90deg, #4a90e2, #357abd, #4a90e2);
		background-size: 200% 200%;
		animation: loadingShimmer 2s ease-in-out infinite;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

	@keyframes loadingShimmer {
		0% { background-position: -200% 0; }
		100% { background-position: 200% 0; }
	}

	/* No Data Message */
	.no-data-message {
		text-align: center;
		padding: 40px;
		font-size: 1.1rem;
		color: #b8c5d1;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 12px;
		border: 2px dashed rgba(255, 255, 255, 0.1);
	}

	/* Pinned Lines Stats Section */
	.pinned-stats {
		margin-top: 30px;
		background: rgba(255, 255, 255, 0.03);
		border-radius: 12px;
		padding: 25px;
		border: 1px solid rgba(255, 255, 255, 0.08);
	}

	.pinned-stats h4 {
		font-size: 1.5rem;
		margin-bottom: 20px;
		color: #e0e6ed;
		text-align: center;
		font-weight: 600;
	}

	.stats-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 20px;
	}

	.stat-box {
		background: rgba(255, 255, 255, 0.05);
		border-radius: 10px;
		padding: 20px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		transition: all 0.3s ease;
	}

	.stat-box:hover {
		background: rgba(255, 255, 255, 0.08);
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	}

	.stat-box h5 {
		margin: 0 0 15px 0;
		font-size: 1.2rem;
		font-weight: 600;
		color: #4a90e2;
		text-align: center;
		border-bottom: 2px solid rgba(74, 144, 226, 0.3);
		padding-bottom: 10px;
	}

	.stat-row {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 8px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.stat-row:last-child {
		border-bottom: none;
	}

	.stat-row span {
		color: #b8c5d1;
		font-size: 0.95rem;
	}

	.stat-row strong {
		color: #4a90e2;
		font-size: 1.1rem;
		font-weight: 700;
	}

	/* Matched Pagination - Different styling from top pagination */
	.pagination.matched-pagination {
		margin-top: 20px;
		padding-top: 20px;
		border-top: 2px solid rgba(255, 255, 255, 0.1);
	}

	.pagination.matched-pagination button {
		background: rgba(74, 144, 226, 0.15);
		border-color: rgba(74, 144, 226, 0.3);
	}

	.pagination.matched-pagination button:hover:not(.active) {
		background: rgba(74, 144, 226, 0.25);
	}

	.pagination.matched-pagination button.active {
		background: linear-gradient(135deg, #4a90e2, #357abd);
	}


	/* Results Container */
	.results-container {
		background: #2d2d2d;
		border-radius: 12px;
		padding: 25px;
		border: 1px solid rgba(255, 255, 255, 0.05);
		margin-top: 20px;
	}

	/* Draw Info Section */
	.draw-info-combined {
		margin-bottom: 25px;
	}

	.draw-info-combined h3 {
		font-size: 1.8rem;
		margin-bottom: 20px;
		text-align: center;
		color: #e0e6ed;
		font-weight: 600;
	}

	.winning-numbers-section {
		margin-bottom: 30px;
	}

	.game-winning-numbers {
		margin-bottom: 20px;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 12px;
		padding: 20px;
		border-left: 4px solid transparent;
	}

	.game-winning-numbers h4 {
		margin: 0 0 15px 0;
		font-size: 1.3rem;
		font-weight: 600;
		color: #ffd700;
	}

	.game-winning-numbers:has(h4:contains("Lotto")) {
		border-left-color: #ffd700;
	}

	.game-winning-numbers h4:contains("Daily") {
		color: #ff6b6b;
	}

	.game-winning-numbers:has(h4:contains("Daily")) {
		border-left-color: #ff6b6b;
	}

	.game-winning-numbers h4:contains("PowerBall") {
		color: #4a90e2;
	}

	.game-winning-numbers:has(h4:contains("PowerBall")) {
		border-left-color: #4a90e2;
	}

	.winning-numbers {
		display: flex;
		gap: 8px;
		align-items: center;
		flex-wrap: wrap;
	}

	/* Winning Number Balls - Game-specific colors */
	.winning-ball {
		width: 45px;
		height: 45px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 700;
		font-size: 1rem;
		color: #1a1a2e;
		background: #ffd700;
		box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3);
		border: 2px solid rgba(255, 255, 255, 0.2);
		transition: transform 0.2s ease;
	}

	.winning-ball:hover {
		transform: scale(1.1);
	}

	.winning-ball.daily-lotto {
		background: linear-gradient(135deg, #ff6b6b, #ee4b4b);
		color: white;
	}

	.winning-ball.powerball {
		background: linear-gradient(135deg, #4a90e2, #357abd);
		color: white;
	}

	.winning-ball.bonus-ball {
		position: relative;
		margin-left: 15px;
	}

	.winning-ball.bonus-ball::before {
		content: attr(data-label);
		position: absolute;
		top: -25px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 0.7rem;
		font-weight: 600;
		color: #b8c5d1;
		white-space: nowrap;
	}

	/* Line Number Balls - Game-specific colors for Lotto lines */
	.line-numbers {
		display: flex;
		gap: 8px;
		align-items: center;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}

	.line-ball {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 600;
		font-size: 0.95rem;
		color: #1a1a2e;
		border: 2px solid rgba(255, 255, 255, 0.2);
		transition: all 0.2s ease;
	}

	/* Default Lotto ball color */
	.lotto .line-ball {
		background: #ffd700;
	}

	/* Daily Lotto ball color */
	.daily-lotto .line-ball {
		background: linear-gradient(135deg, #ff6b6b, #ee4b4b);
		color: white;
	}

	/* Powerball main numbers */
	.powerball .line-ball {
		background: linear-gradient(135deg, #4a90e2, #357abd);
		color: white;
	}

	.line-ball.matched {
		background: linear-gradient(135deg, #27ae60, #2ecc71);
		color: white;
		border-color: #27ae60;
		box-shadow: 0 0 10px rgba(39, 174, 96, 0.4);
		transform: scale(1.1);
	}

	.line-ball.bonus-matched {
		background: linear-gradient(135deg, #4a90e2, #357abd);
		color: white;
		border-color: #4a90e2;
		box-shadow: 0 0 10px rgba(74, 144, 226, 0.4);
		transform: scale(1.1);
	}

	.line-ball.powerball-number {
		background: linear-gradient(135deg, #2c5f8f, #1e4570);
		color: white;
		border-color: #2c5f8f;
		margin-left: 15px;
		position: relative;
	}

	.line-ball.powerball-number::before {
		content: 'PB';
		position: absolute;
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 0.6rem;
		font-weight: 600;
		color: #b8c5d1;
	}

	.line-ball.powerball-number.bonus-matched {
		background: linear-gradient(135deg, #f39c12, #e67e22);
		border-color: #f39c12;
		box-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
	}

	/* Match Summary */
	.match-summary-combined {
		margin-bottom: 30px;
	}

	.match-summary-combined h4 {
		font-size: 1.5rem;
		margin-bottom: 20px;
		color: #e0e6ed;
		text-align: center;
	}

	.game-summary {
		margin-bottom: 25px;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 10px;
		padding: 20px;
	}

	.game-summary h5 {
		margin: 0 0 15px 0;
		font-size: 1.2rem;
		font-weight: 600;
		color: #e0e6ed;
	}

	.summary-stats {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 12px;
	}

	.stat-card {
		background: rgba(255, 255, 255, 0.08);
		border-radius: 8px;
		padding: 15px;
		text-align: center;
		border: 1px solid rgba(255, 255, 255, 0.1);
		transition: all 0.3s ease;
	}

	.stat-card:hover {
		background: rgba(255, 255, 255, 0.12);
		transform: translateY(-2px);
	}

	.stat-card.bonus-stat {
		background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(53, 122, 189, 0.2));
		border-color: rgba(74, 144, 226, 0.3);
	}

	.stat-number {
		font-size: 1.8rem;
		font-weight: 700;
		color: #4a90e2;
		margin-bottom: 5px;
	}

	.stat-label {
		font-size: 0.9rem;
		color: #b8c5d1;
		font-weight: 500;
	}

	/* Line Results */
	.lines-results-combined {
		margin-top: 30px;
	}

	.lines-results-combined h4 {
		font-size: 1.5rem;
		margin-bottom: 20px;
		color: #e0e6ed;
		text-align: center;
	}

	.line-result-combined {
		background: rgba(255, 255, 255, 0.05);
		border-radius: 12px;
		padding: 20px;
		margin-bottom: 15px;
		border-left: 4px solid rgba(255, 255, 255, 0.1);
		transition: all 0.3s ease;
	}

	.line-result-combined:hover {
		background: rgba(255, 255, 255, 0.08);
		transform: translateX(5px);
	}

	.line-result-combined.match-2 { border-left-color: #f39c12; }
	.line-result-combined.match-3 { border-left-color: #e74c3c; }
	.line-result-combined.match-4 { border-left-color: #9b59b6; }
	.line-result-combined.match-5 { border-left-color: #1abc9c; }
	.line-result-combined.match-6 { 
		border-left-color: #ffd700; 
		box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	}

	.line-result-combined.has-bonus {
		box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
	}

	.result-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 15px;
		flex-wrap: wrap;
		gap: 10px;
	}

	.line-number-label {
		font-weight: 600;
		color: #e0e6ed;
		font-size: 1.1rem;
	}

	.game-name-label {
		background: rgba(74, 144, 226, 0.2);
		color: #4a90e2;
		padding: 4px 12px;
		border-radius: 20px;
		font-size: 0.9rem;
		font-weight: 600;
		border: 1px solid rgba(74, 144, 226, 0.3);
	}

	.match-indicator {
		display: flex;
		align-items: center;
		gap: 8px;
		background: rgba(255, 255, 255, 0.1);
		padding: 8px 16px;
		border-radius: 20px;
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	.match-indicator.has-bonus {
		background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(53, 122, 189, 0.2));
		border-color: rgba(74, 144, 226, 0.4);
	}

	.match-count {
		font-weight: 700;
		font-size: 1.1rem;
		color: #4a90e2;
	}

	.line-notes {
		margin-top: 12px;
		padding: 10px;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 6px;
		font-size: 0.9rem;
		color: #b8c5d1;
		font-style: italic;
		border-left: 3px solid #4a90e2;
	}

	/* No matches message */
	.no-matches {
		text-align: center;
		padding: 40px;
		font-size: 1.2rem;
		color: #b8c5d1;
		background: rgba(255, 255, 255, 0.05);
		border-radius: 12px;
		border: 2px dashed rgba(255, 255, 255, 0.1);
	}

	/* Responsive Design */
	@media (max-width: 768px) {
		.pinned-lines-checker {
			padding: 15px;
			margin: 10px;
		}

		.filter-row {
			grid-template-columns: 1fr;
			gap: 15px;
		}

		.pinned-lines-grid {
			grid-template-columns: 1fr;
			gap: 15px;
		}

		.summary-stats {
			grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
			gap: 8px;
		}

		.result-header {
			flex-direction: column;
			align-items: flex-start;
		}

		.winning-ball,
		.line-ball {
			width: 35px;
			height: 35px;
			font-size: 0.85rem;
		}

		.winning-numbers,
		.line-numbers {
			gap: 6px;
		}

		.pagination {
			gap: 5px;
		}

		.pagination button {
			padding: 6px 12px;
			font-size: 0.85rem;
		}
	}