<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account Features</title>
<style>
body {
font-family: Arial, sans-serif;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 12px;
border: 1px solid #ddd;
text-align: center;
}
th {
background-color: #6b6861;
color: white;
}
.header {
background-color: #d99b6a;
text-align: left;
padding: 12px;
font-weight: bold;
font-size: 1.2em;
color: darkred;
}
.check {
color: green;
font-size: 1.5em;
}
.cross {
color: red;
font-size: 1.5em;
}
</style>
</head>
<body>
<div class="header">Account Features (Staged Worlds)</div>
<table>
<thead>
<tr>
<th>Feature</th>
<th>Free Account</th>
<th>Golden Account</th>
</tr>
</thead>
<tbody>
<tr>
<td>Shared Experience in Party</td>
<td><span class="check">✔</span></td>
<td><span class="check">✔</span></td>
</tr>
<tr>
<td>Completing Quests & Tasks</td>
<td><span class="check">✔</span></td>
<td><span class="check">✔</span></td>
</tr>
<tr>
<td>Use all spells</td>
<td><span class="check">✔</span></td>
<td><span class="check">✔</span></td>
</tr>
<tr>
<td>Travel by Ship/Carpet</td>
<td><span class="check">✔</span></td>
<td><span class="check">✔</span></td>
</tr>
<tr>
<td>Promotion of vocation</td>
<td><span class="check">✔</span></td>
<td><span class="check">✔</span></td>
</tr>
<tr>
<td>24/7 'utevo lux' light</td>
<td><span class="cross">✘</span></td>
<td><span class="check">✔</span></td>
</tr>
<tr>
<td>Create Guilds</td>
<td><span class="cross">✘</span></td>
<td><span class="check">✔</span></td>
</tr>
<tr>
<td>Become vice leader in guilds</td>
<td><span class="cross">✘</span></td>
<td><span class="check">✔</span></td>
</tr>
</tbody>
</table>
</body>