body {
	background-color: #FFFFFF;
	color: #990000;
	background-image: url("gif/mainback.gif");
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}

a:link {
	color: #006600;
}

a:visited {
	color: #999900;
}

a:active {
	color: #999900;
}

.a_right {
	text-align: right;
}

.a_center {
	text-align: center;
}

td.gline {
	background-color: #006600;
}

p,
div,
td {
	font-size: 13px;
	letter-spacing: 0px;
	word-spacing: 2px;
	line-height: 18px;
	color: #990000;
}

/* Modern Layout Styles */
header {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	margin-bottom: 20px;
}

.title-container {
	flex: 1;
	text-align: center;
}

nav {
	flex: 1;
	text-align: right;
}

nav a {
	display: block;
	line-height: 1.5;
}

.divider {
	height: 3px;
	background-color: #990000;
	margin: 20px 0;
	opacity: 0.5;
}

main {
	text-align: right;
}

main.content-left {
	text-align: left;
}

.section-block {
	margin-bottom: 20px;
}

.tool-list {
	width: 90%;
	margin-left: auto;
	text-align: left;
	border-collapse: collapse;
}

.tool-list td {
	padding: 5px;
	vertical-align: middle;
}

.tool-icon {
	width: 170px;
}

.tool-ico-img {
	width: 32px;
	height: 32px;
	border: 0;
	vertical-align: middle;
	margin-right: 5px;
}

.tool-desc {
	width: 445px;
}

.tool-link {
	width: 50px;
}

/* Premium Menu Cards */
.menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin: 20px 0;
	text-align: left;
}

.menu-card {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid #ddd;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	border-top: 4px solid #006600;
	position: relative;
	overflow: hidden;
}

.menu-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 102, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.menu-card:nth-child(2) {
	border-top-color: #990000;
}
.menu-card:nth-child(2)::before {
	background: linear-gradient(135deg, rgba(153, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.menu-card:nth-child(3) {
	border-top-color: #d4af37; /* Gold for coins */
}
.menu-card:nth-child(3)::before {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.menu-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	border-color: #ccc;
}

.menu-card:hover::before {
	opacity: 1;
}

.menu-title {
	font-size: 1.2rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 1;
}

.menu-desc {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
	margin: 0;
	z-index: 1;
}