body {
	font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("./beg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #191970;
    background-attachment: fixed;
    color: #b8fdff;
	text-shadow: 1px 1px 2px #0037ff45, 0 0 1em #5f5fb9;
}
.content {
    background-color: rgba(40, 184, 176, 0.15);
    color: #b8fdff;
	text-shadow: 1px 1px 2px #0037ff45, 0 0 1em #5f5fb9;
    padding: 15px;
    text-align: center;
    flex-shrink: 0;
    font-size: 2em;
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
}
.main-container {
    max-width: 85%;
    margin: 0 auto;
    padding: 0 10px;
}
table {
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}
th, td {
    border: 1px solid #A2B2C2;
    padding: 8px;
    text-align: left;
}
thead tr {
    background-color: rgba(40, 184, 176, 0.05);
}
a:link {
    color: #98FB98;
    text-decoration: none;
}
a:visited {
    color: #7FFFD4;
    text-decoration: none;
}
a:hover {
    color: #3CB371;
    text-decoration: underline;
}
a:active {
    color: #00FF7F;
}
.guide-section {
    padding: 10px 0;
}
.guide-list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
#backToTop:hover {
    background-color: #0056b3;
}
nav { background: #262626; padding: 15px; border-radius: 8px; margin-bottom: 30px; border: 1px solid #444; text-align: center; }
nav a { color: #0070de; text-decoration: none; font-weight: bold; margin: 0 20px; text-transform: uppercase; font-size: 0.9em; }
nav a:hover { color: #5eff5e; }
.active { color: #fff; border-bottom: 2px solid #0070de; }
.button {
	border-width: 75px;
	--radius: 2px;
    margin: 30px auto 0;
    padding: 8px 28px 8px 27px;
	color: #000000 !important;
    background-color: #00b900 !important;
	border-radius: var(--top-left-radius, var(--border-top-left-radius, var(--radius, var(--border-radius, 0)))) var(--top-right-radius, var(--border-top-right-radius, var(--radius, var(--border-radius, 0)))) var(--bottom-right-radius, var(--border-bottom-right-radius, var(--radius, var(--border-radius, 0)))) var(--bottom-left-radius, var(--border-bottom-left-radius, var(--radius, var(--border-radius, 0)))) !important;
	flex-shrink: 0;
}