body {
    background: #181818;
    color: #ddd;
    font-family: "Segoe UI", Arial, sans-serif;
    padding: 32px;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

a {
    color: #4ea1ff;
    text-decoration: none;
}

a:hover {
    color: white;
    text-decoration: underline;
}

table {
    width: 100%;
    max-width: 1100px;
    border-collapse: collapse;
    background: #252525;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

th {
    text-align: left;
    background: #202020;
    color: #aaa;
    padding: 10px;
    border-bottom: 1px solid #333;
}

td {
    padding: 9px 10px;
    border-bottom: 1px solid #333;
    white-space: nowrap;
}

td:nth-child(2) {
    white-space: normal;
    word-break: break-word;
}

tr:hover {
    background: #303030;
}

address {
    margin-top: 30px;
    color: #666;
    font-size: 13px;
}

.custom-footer {
    width: 100%;
    max-width: 1100px;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    text-align: left;
}

/* Desktop only */
@media (min-width: 1000px) {
    body {
        background:
            linear-gradient(
                rgba(18,18,18,0.88),
                rgba(18,18,18,0.88)
            ),
            url("https://sm.ign.com/ign_nordic/gallery/p/persona-3-/persona-3-reload-gameplay-screenshots_b911.jpg") no-repeat right center fixed;

        background-size: contain;
    }
}

/* Mobile */
@media (max-width: 999px) {
    body {
        background: #121212;
    }
}