	/*********************************************
	 ** Stylesheet file for Sakuraro          **
	 *********************************************/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
	--bg-light: rgba(0, 0, 0, 0.45); /* Balanced transparency for glass effect while maintaining text legibility */
	--accent-soft: #FFC1D2;
	--accent-main: #E0115F; /* buttons */
	--text-light: #FFFFFF; /* High contrast text */
	--border-subtle: rgba(255, 255, 255, 0.15); /* Light translucent borders */
	--text-dark: #404040; 
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Inter', "Lucida Grande", "Lucida Sans", Verdana, Tahoma, sans-serif;
	font-size: 10pt;
	color: var(--text-light);
	background: #111 url('../../bg.jpg') no-repeat center center fixed;
	background-size: cover;
}

/* Glass Panels */
.glass-panel {
	background: var(--bg-light);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid var(--border-subtle);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.glass-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Base Structural Layout */
.sakuraro-theme {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* Top Nav */
.top-nav {
	width: 100%;
	padding: 15px 30px;
	border-radius: 0 0 16px 16px;
	box-sizing: border-box;
	margin-bottom: 2rem;
	position: relative;
	z-index: 9999;
}

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

.nav-logo h2 {
	margin: 0;
	color: var(--accent-soft);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 20px;
}

ul.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 15px;
}

li.nav-dropdown {
	position: relative;
	cursor: pointer;
}

li.nav-dropdown > span,
ul.nav-list > li > a {
	color: var(--text-light);
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background 0.3s, color 0.3s;
	text-transform: uppercase;
	font-size: 0.9em;
	text-decoration: none;
	display: inline-block;
}

li.nav-dropdown:hover > span,
ul.nav-list > li > a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--accent-soft);
	text-decoration: none;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(20, 20, 20, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-subtle);
	border-radius: 8px;
	list-style: none;
	padding: 10px 0;
	margin: 0;
	margin-top: 5px;
	min-width: 180px;
	z-index: 100;
}

.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	height: 15px;
	background: transparent;
}

li.nav-dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu li a {
	display: block;
	padding: 8px 15px;
	color: var(--text-light);
	text-decoration: none;
	font-size: 0.9em;
	transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
	background: var(--accent-main);
	color: var(--text-light);
}

.nav-user form {
	margin: 0; 
	display:flex; 
	gap: 10px; 
	align-items: center;
}

/* Main Content Area */
.main-wrapper {
	max-width: 1300px;
	width: 95%;
	margin: 0 auto;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.main-content {
	padding: 30px;
	border-radius: 16px;
}

/* Footer Area */
.main-footer {
	max-width: 1300px;
	width: 95%;
	margin: 20px auto;
	padding: 20px 30px;
	border-radius: 16px;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text-light);
}

/* Re-styled Base Elements */
table {
	font-family: 'Inter', "Lucida Grande", "Lucida Sans", Verdana, Tahoma, sans-serif;
	font-size: 10pt;
	color: var(--text-light);
}

tr, td, th {
	vertical-align: top;
}

.horizontal-table tr, .vertical-table tr, .generic-form-table tr,
.horizontal-table td, .vertical-table td, .generic-form-table td {
	vertical-align: middle;
}

.horizontal-table th, .vertical-table th, .generic-form-table th {
	vertical-align: top;
}

h2 {
	color: var(--text-light);
	letter-spacing: -0.5px;
}

h3 {
	font-weight: 600;
	font-size: 120%;
	color: var(--accent-soft);
	border-bottom: 1px dotted rgba(255,255,255,0.2);
	text-transform: uppercase;
	margin-bottom: 15px;
}

p {
	margin: 4px 0 8px 0;
	padding: 0;
	color: var(--text-light);
}

a img { border: 0; }
a { color: var(--accent-soft); text-decoration: none; }
a:active, a:focus { outline: 0; }
a:hover { color: var(--accent-main); text-decoration: underline; }

input[type=text], input[type=password], input[type=file], textarea, select {
	font-family: 'Inter', sans-serif;
	padding: 8px 12px;
	font-size: 10pt;
	color: var(--text-light);
	background: rgba(255,255,255,0.1);
	border: 1px solid var(--border-subtle);
	border-radius: 6px;
	outline: none;
	transition: all 0.3s;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus {
	border-color: var(--accent-soft);
	background: rgba(255,255,255,0.2);
}

label:hover { cursor: pointer; }

.module-name {
	font-weight: 700;
	font-size: 14pt;
	color: var(--accent-soft);
	margin-bottom: 10px;
}

.message {
	display: block;
	padding: 12px;
	font-weight: 600;
	font-size: 110%;
	color: #fff;
	background-color: var(--accent-main);
	border-radius: 8px;
	margin-bottom: 15px;
}

.notice {
	display: block;
	padding: 12px;
	font-size: 110%;
	color: #fff;
	background-color: rgba(255,165,0,0.5);
	border: 1px solid orange;
	border-radius: 8px;
	margin-bottom: 15px;
}

.center { text-align: center; }

.request, .fs-path {
	display: inline-block;
	padding: 2px 6px;
	font-family: Consolas, Monaco, monospace;
	font-size: 9pt;
	background-color: rgba(0,0,0,0.5);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 4px;
	color: var(--text-light);
}

.keyword { color: var(--accent-soft); font-style: italic; }
.red { display: block; padding: 10px; font-weight: bold; font-size: 120%; color: #fff; background-color: #d32f2f; border-radius: 6px; }
.green { display: block; padding: 10px; font-weight: bold; font-size: 120%; color: #fff; background-color: #388e3c; border-radius: 6px; }

.note {
	padding: 10px;
	color: var(--text-light);
	background-color: rgba(255,255,255,0.05);
	font-style: italic;
	border-radius: 6px;
	border-left: 4px solid var(--accent-soft);
}

.up { font-weight: 700; color: #69f0ae; text-transform: uppercase; }
.down { font-weight: 700; color: #ff5252; text-transform: uppercase; }

.submit_button, input[type=submit], button {
	display: inline-block;
	margin: 5px 0;
	padding: 8px 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #ffffff;
	background-color: var(--accent-main);
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

.submit_button:hover, input[type=submit]:hover, button:hover {
	background-color: var(--accent-soft);
	color: var(--text-dark);
}

.user-panel {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-btn {
	padding: 6px 14px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9em;
	text-decoration: none !important;
	transition: all 0.3s;
}

.login-btn {
	color: var(--text-light) !important;
	border: 1px solid var(--border-subtle);
}

.login-btn:hover {
	background: rgba(255,255,255,0.1);
}

.register-btn {
	background-color: var(--accent-main);
	color: #fff !important;
	border: 1px solid var(--accent-main);
}

.register-btn:hover {
	background-color: var(--accent-soft);
	color: var(--text-dark) !important;
	border-color: var(--accent-soft);
}

.homepage-centered {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
	width: 100%;
}

.homepage-centered .server-info-widget {
	width: 100%;
	max-width: 500px;
}

.server-info-widget {
	padding: 20px;
	border-radius: 12px;
	width: 100%;
}

.widget-header {
	border-bottom: 1px solid var(--border-subtle);
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.widget-title h3 {
	margin: 0 0 5px 0;
	border-bottom: none;
	color: var(--accent-main);
	text-transform: uppercase;
}

.widget-title span {
	font-size: 0.85em;
	color: var(--text-light);
	opacity: 0.8;
}

.info-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
}

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

.info-label {
	font-weight: 600;
	color: var(--text-light);
}

.info-value {
	font-weight: 700;
}


.install_table th, .install_table td {
	padding: 5px 10px;
	border: 1px solid #ddd;
}

.install_table th {
	background-color: #eef;
}

.install_table td {
	width: 180px;
	text-align: center;
}

.created {
	color: green;
	width: 80px;
}

.missing {
	color: red;
	width: 80px;
}

.pages {
	margin-top: 20px;
	padding-top: 10px;
	color: #ccc;
	text-align: center;
	border-top: 1px solid #ddd;
}

.pages .page-prev, .pages .page-next {
	color: var(--accent-soft);
}

.pages a {
	color: var(--text-light);
	text-decoration: none;
}

.pages a:hover {
	color: var(--accent-soft);
}

.pages .page-num {
	padding: 0 5px;
}

.pages .current-page {
	color: #000000;
	font-weight: bold;
}

.horizontal-table, .vertical-table {
	border-spacing: 0;
	border-collapse: collapse;
	width: 100%;
}

.horizontal-table th, .vertical-table th {
	padding: 10px 15px;
	background-color: rgba(0, 0, 0, 0.4);
	color: var(--accent-soft);
	text-transform: uppercase;
	font-weight: 600;
	border-bottom: 1px solid var(--border-subtle);
}

.horizontal-table th a, .vertical-table th a {
	color: var(--text-light);
	text-decoration: none;
}

.horizontal-table th a:hover, .vertical-table th a:hover {
	color: var(--accent-main);
}

.horizontal-table td, .vertical-table td {
	padding: 8px 15px;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* light transparent divider */
}

.horizontal-table tr:hover td, .vertical-table tr:hover td {
	background-color: rgba(255, 255, 255, 0.05);
}

.vertical-table label {
	display: block;
	padding: 5px;
}

.current-sub-menu {
	font-weight: bold;
}

.td-checkbox {
	text-align: center;
}

.td-action {
	color: #ccc;
	text-align: center;
}

.vertical-table .td-action {
	text-align: right;
}

.vertical-table form {
	margin: 0;
	padding: 0;
}

.not-applicable {
	font-style: italic;
	color: #bbb;
}

.state-pending {
	color: orange;
}

.state-banned {
	color: red;
}

.state-permanently-banned {
	font-weight: bold;
	color: red;
}

.raw-txn-log {
	padding: 10px;
	font-family: "Monaco", "Lucida Console", "Courier New", monospace;
	background-color: #fff;
	border: 1px solid #ddd;
	width: 96%;
	overflow: scroll;
}

.online {
	color: #000;
}

.offline {
	color: #aaa;
}

.info-text-total {
	font-weight: bold;
}

.info-text-results {
	font-weight: bold;
}

.info-text {
	margin-bottom: 6px;
	padding: 8px;
	color: var(--text-light);
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	border-radius: 6px;
	text-align: center;
}

.toggler {
	font-weight: bold;
	font-style: italic;
}

.toggler a {
	color: #26a;
}

.search-form, search-form2 {
	display: none;
	margin: 0 0 10px 0;
	padding: 0;
	border-top: 1px solid #ddd;
}

.search-form p, .search-form2 p {
	margin: 0;
	padding: 5px;
	color: #aaa;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.search-form label, .search-form2 label {
	display: inline-block;
	margin: 0 0 3px 0;
	font-size: 8pt;
	font-style: italic;
	color: #222;
}

.search-form input[type=text], .search-form2 input[type=text] {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 2px;
	font-size: 8pt;
	width: 80px;
}

.search-form input[type=submit], .search-form2 input[type=submit] {
	display: inline-block;
	margin: 0 0 2px 0;
	font-size: 8pt;
	font-weight: bold;
}

.search-form input[type=button], .search-form input[type=reset],
.search-form2 input[type=button], .search-form2 input[type=reset] {
	display: inline-block;
	margin: 0 0 2px 0;
	font-size: 8pt;
}

.search-form input[type=checkbox], .search-form2 input[type=checkbox] {
	display: inline-block;
	margin: 0 0 2px 0;
}

.search-form select, .search-form2 select {
	display: inline-block;
	margin: 2px 0;
}

#submenu {
	color: #bbb;
}

#pagemenu {
	margin-top: 5px;
	padding: 5px 0;
	font-size: 8pt;
	color: #888;
	border-width: 1px 0;
	border-style: dotted;
	border-color: #ddd;
}

#pagemenu a {
	color: #777974;
	text-decoration: underline;
}

#pagemenu a:hover {
	color: #729fcf;
}

#loginbox {
	margin-bottom: 10px;
	color: #555;
}

#content {
	color: #555;
}

#register_form table td, #login_form table td {
	padding: 1px;
}

#register_form table th label, #login_form table th label {
	display: block;
	padding: 5px;
	text-align: center;
}

#register_form input[type=text], #register_form input[type=password], #login_form input[type=text], #login_form input[type=password] {
	width: 140px;
}

#register_form select, #login_form select {
	width: 147px;
}

#server_status th, #server_status td {
	padding: 8px 12px 8px 12px;
	text-align: left;
	border-bottom: 1px solid #ddd;	
}

#server_status {
	border-spacing: 0;
	border-collapse: collapse;
	background-color: transparent;
	border: none;
}

#server_status .server {
	color: #222;
}

#server_status .status {
	text-align: center;
}

#copyright p {
	margin-top: 5px;
	margin-bottom: 0px;
	font-style: italic;
	font-size: 8pt;
	color: #ccc;
	text-align: right;
}

#info p {
	margin-top: 5px;
	margin-bottom: 0px;
	font-style: italic;
	font-size: 8pt;
	color: #aaa;
	text-align: right;
}

.sortable {
	color: #444;
	text-decoration: underline;
}

.sortable:hover {
	color: #000;
}

.character-stats {
	border-spacing: 0;
	border-collapse: collapse;
	color: #ccc;
}

.character-stats td {
	padding: 0px 10px 5px 0;
	border: 0;
	text-align: center;
}

.character-stats .stat-name {
	color: var(--accent-soft);
}

.character-stats .stat-value {
	color: var(--text-light);
	font-weight: 700;
}

.credit-balance {
	float: right;
	display: inline-block;
	padding: 10px;
	color: var(--text-light);
	background-color: rgba(0, 0, 0, 0.2);
	border: 1px dotted var(--border-subtle);
	border-radius: 8px;
}

.credit-balance .balance-text {
	display: inline-block;
	margin-right: 5px;
	color: #bbb;
	text-transform: uppercase;
}

.credit-balance .balance-amount {
	font-weight: bold;
}

.emblem-server {
	margin: 0 0 2px 0;
	padding: 0 0 2px 0;
	font-size: 120%;
	border-bottom: 1px solid #ddd;
}

.emblem-server label {
	display: block;
}

.emblem-server label:hover {
	cursor: pointer;
}

.block {
	display: block;
	width: 80%;
	height: 40px;
}

.script-line {
	font-family: Monaco, "Lucida Console", monospace;
}

.script-line-num {
	display: inline-block;
	margin: 0;
	padding: 5px;
	background-color: #eee;
	border-right: 1px solid #ddd;
}

.script-line-code {
	display: inline-block;
	margin: 0;
	padding: 5px;
}

.shop-table {
	width: 100%;
	color: #000;
	border-spacing: 0 10px;
	border-collapse: separate;
}

.shop-table td {
	padding: 10px;
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-item-image {
	width: 75px;
	height: 100px;
	text-align: center;
}

.shop-item-name {
	margin: 0 0 5px 0;
	padding: 0 0 2px 0;
	font-size: 140%;
	color: #222;
	border-bottom: 1px solid #eee;
}

.shop-item-cost-qty {
	width: 150px;
	color: #aaa;
	text-align: center;
}

.cost {
	color: #000;
	font-size: 120%;
	font-weight: bold;
	text-transform: uppercase;
}

.qty {
	color: #000;
}

.shop-item-action {
	color: #ddd;
}

.shop-item-action a {
	color: #80a2c8;
	border-bottom: 1px solid #eee;
}

.shop-item-action a:hover {
	border-bottom: 1px solid #80a2c8;
}

.short {
	width: 40px;
}

.shop-server-name {
	color: #333;
}

.shop-item-info {
	text-align: justify;
}

textarea {
	width: 320px;
	height: 120px;
}

.cart-items-text {
	margin: 0 0 5px 0;
	padding: 5px;
	color: #ddd;
	background-color: #888;
	border: 5px solid #777;
}

.cart-info-text {
	margin: 0 0 5px 0;
	padding: 0;
}

.cart-total-text {
	margin: 0;
	padding: 0;
}

.cart-item-name {
	color: #fff;
	border-bottom: 1px dotted #aaa;
}

.cart-item-count {
	font-size: 120%;
	font-weight: bold;
	color: #000;
}

.cart-sub-total {
	color: #000;
}

.cart {
	width: 100%;
}

.cart label {
	display: block;
}

.cart h4 {
	margin: 10px 0 2px 0;
	font-size: 140%;
}

.remove-from-cart {
	width: 100%;
	text-align: right;
}

.checkout-text {
	font-size: 120%;
	font-weight: bold;
}

.checkout-text a {
	border-bottom: 1px dotted #ccc;
}

.checkout-text a:hover {
	color: #000;
	border-bottom: 1px solid #aaa;
}

.enter-donation-amount {
	margin: 0;
	padding: 0 0 5px 0;
	font-size: 120%;
}

.donation-amount-text {
	margin: 0;
	padding: 0;
	font-size: 120%;
	text-align: center;
}

.credit-amount-text {
	font-size: 8pt;
	text-transform: uppercase;
	color: #bbb;
	text-align: center;
	letter-spacing: 1px;
}

.donation-amount {
	font-weight: bold;
	color: #000;
}

.credit-amount {
	color: #555;
}

.reset-amount-text {
	margin: 0;
	padding: 0;
	font-size: 8pt;
	text-align: center;
}

.checkout-info-text {
	margin: 0 0 5px 0;
	padding: 0;
}

.remaining-balance {
	color: #000;
}

.exchange-rate {
	font-size: 120%;
	font-weight: bold;
	color: #000;
}

.important {
	font-size: 120%;
	color: #000;
}

.important .server-name {
	font-weight: bold;
}

.generic-form {
	padding: 10px;
	background-color: transparent;
	border: none;
	width: auto;
}

.generic-form-div {
	padding: 10px;
	background-color: transparent;
	border: none;
	width: auto;
}
.generic-form-table th label {
	display: block;
	padding: 6px;
}

.generic-form-table td div {
	display: block;
	padding: 6px 0;
}

.generic-form-table th {
	text-align: right;
}

.generic-form-table td input[type=checkbox] {
	display: inline-block;
	margin-top: 6px;
}

.generic-form-table td p {
	margin: 6px 5px;
	color: #000;
}

.security-code {
	margin: 5px 0;
	text-align: left;
	width: 145px;
	height: 50px;
}

.action {
	color: #ddd;
}

.action a, .action span.anchor {
	color: #80a2c8;
	border-bottom: 1px solid #eee;
	cursor: pointer;
}

.block-link {
	display: block;
	padding: 3px;
	color: #80a2c8;
	border-bottom: 1px solid #eee;
}

.button-action {
	padding: 5px 0;
	text-align: left;
}

.woe-table {
	border-spacing: 0;
	border-collapse: collapse;
	background-color: transparent;
	border: none;
}

.woe-table th, .woe-table td {
	padding: 5px 10px;
}

.woe-table th {
	font-weight: normal;
	border-bottom: 1px solid #ddd;
}

.woe-table td {
	font-size: 120%;
}

.woe-table .server {
	font-weight: bold;
}

.woe-table .time {
	font-style: italic;
	color: #333;
}

.script {
	width: 98%;
}

.multi-select {
	width: 100%;
}

.jump-to-page {
	margin-top: 8px;
	font-size: 8pt;
	text-align: center;
}

.jump-to-page input {
	padding: 2px;
	font-size: 8pt;
}

.top-ranked td {
	font-weight: bold;
	color: #000;
	background-color: #FFF8DC;
}

.top-ranked a {
	color: #000;
	border-bottom: 1px dotted #666;
}

.empty-row {
	display: none;
}

.item-drop-mvp td {
	color: #000;
	background-color: #F8F8FF;
}

.item-drop-card td {
	color: #000;
	background-color: #F0FFFF;
}

.mvp {
	font-size: xx-small;
	font-weight: bold;
	color: #ff0000;
	vertical-align: top;
}

.monster-mode {
	margin: 0;
	padding: 0;
	list-style: square inside;
}

.monster-mode li {
	padding: 1px;
	border-bottom: 1px dotted #eee;
}

.equipped td {
	background-color: #f1ffff;
}

.job-classes {
	border-spacing: 0;
}

.job-classes td {
	padding-right: 10px;
	border-right: 1px solid #eee;
}

.current-shop-category {
	font-weight: bold;
}

.normalslotted .equipped {
	color: #25292b;
}

.overslotted1 {
	color: #32cd32;
}

.overslotted2 {
	color: #00bfff;
}

.overslotted3 {
	color: #ffa500;
}

.overslotted4 {
	color: #9932cc;
}

.hold-hours {
	color: #ffba00;
	font-style: italic;
}

/* --- Download Button and Modal --- */
.download-container {
	margin-top: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	padding-bottom: 50px;
}

.download-now-btn {
	padding: 18px 45px;
	font-size: 1.4em;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	background: linear-gradient(45deg, var(--accent-main), var(--accent-soft));
	border: none;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.download-now-btn:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 40px rgba(220, 53, 69, 0.6);
	background: linear-gradient(45deg, var(--accent-soft), var(--accent-main));
}

.download-now-btn::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: rgba(255,255,255,0.2);
	transform: rotate(45deg);
	transition: all 0.6s;
}

.download-now-btn:hover::after {
	left: 120%;
}

/* Glass Modal */
.glass-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	backdrop-filter: blur(8px);
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.3s ease-out;
}

.modal-content {
	width: 90%;
	max-width: 450px;
	padding: 30px;
	text-align: center;
	position: relative;
	animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-header h2 {
	margin-bottom: 10px;
	color: var(--accent-soft);
	text-transform: uppercase;
	font-size: 1.5em;
	border-bottom: none;
}

.modal-header p {
	color: var(--text-light);
	font-size: 0.9em;
	margin-bottom: 25px;
	opacity: 0.8;
}

.mirror-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mirror-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
}

.mirror-link:hover {
	background: rgba(255,255,255,0.15);
	transform: translateX(5px);
	border-color: var(--accent-main);
	color: var(--accent-soft);
}

.close-modal {
	margin-top: 25px;
	font-size: 0.85em;
	color: var(--text-light);
	cursor: pointer;
	text-decoration: underline;
	opacity: 0.6;
}

.close-modal:hover {
	opacity: 1;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { transform: translateY(30px) scale(0.95); opacity: 0; }
	to { transform: translateY(0) scale(1); opacity: 1; }
}

