@font-face {
    font-family: 'Roboto';
    src: url('Roboto-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
html {
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #fff;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.page-title a {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
    transition: all 0.2s ease;
}
.page-title a:hover {
    background: linear-gradient(135deg, #ff4d4d, #e60000);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.8);
}
.content, .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.main {
    padding: 20px;
}
.badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}
.badge-row img {
    display: block;
    width: auto;
    height: auto;
}
.badge-btn {
    margin-top: 6px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    background-color: #7b1113;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: all 0.2s ease;
}
.badge-btn:hover {
    background-color: #a31b1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.mob-table {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    border-radius: 12px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow: hidden;
}
.mob-table th {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: none;
}
.mob-table td {
    padding: 10px;
    color: #fff;
    border: none;
    text-align: left;
    vertical-align: middle;
    background: transparent;
    transition: background-color 0.15s ease;
}
.mob-table tbody tr:nth-child(even) td {
    background-color: rgba(30,30,40,0.5);
}

.mob-table tbody tr:nth-child(odd) td {
    background-color: rgba(20,20,30,0.5);
}
.mob-table tbody tr:hover td {
    background-color: rgba(94,13,15,0.7) !important;
}
.mob-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mob-cell img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.mob-cell a {
    color: #fff;
    text-decoration: none;
    flex-grow: 1;
}
.mob-cell a:hover {
    text-decoration: underline;
}
.hover-text {
    position: relative;
    z-index: 10;
}
.tooltip-text {
    display: none;
    position: fixed;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    padding: 8px 10px;
    border-radius: 12px;
    max-width: 300px;
    min-width: 220px;
    font-size: 0.85rem;
    pointer-events: none;
    white-space: nowrap;
    z-index: 999999;
}
.hover-text:hover .tooltip-text {
    display: block;
}
.tooltip-text table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}
.tooltip-text th {
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-weight: bold;
    padding: 6px 8px;
    text-align: center;
    border: none;
}
.tooltip-text td {
    background: transparent;
    color: #fff;
    padding: 4px 6px;
    text-align: center;
    border: none;
}
.tooltip-text tr td {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.site-footer {
    margin: 12px auto 20px;
    text-align: center;
}
.footer-box {
    background: rgba(0,0,0,0.55);
    max-width: 800px;
    margin: 0 auto;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #222;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
}
.footer-text {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}
.footer-sub {
    margin-top: 4px;
    font-size: 0.75rem;
    opacity: 0.75;
}
.mob-table a,
.mob-table a:visited,
.mob-table a:hover,
.mob-table a:active,
.mob-cell a,
.mob-cell a:visited,
.mob-cell a:hover,
.mob-cell a:active,
.tooltip-text a,
.tooltip-text a:visited,
.tooltip-text a:hover,
.tooltip-text a:active {
    color: #ffffff;
    text-decoration: none;
}
.logo {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 80vh;
    margin: 5vh auto 20px auto;
}