@font-face {
    font-family: "PT Sans";
    src: url("/fonts/PTSans-Regular.eot");
    src:
        url("/fonts/PTSans-Regular.eot?#iefix") format("embedded-opentype"),
        url("/fonts/PTSans-Regular.woff") format("woff"),
        url("/fonts/PTSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "PT Sans", Verdana, sans-serif;
}

body {
    background: white;
    min-height: 100vh;
    color: black;
}

.header {
    width: 100%;

    background: white;

    border-bottom: 1px solid #9ab300;
}

.container {
    max-width: 1000px;

    margin: auto;

    padding: 14px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;
}


.brand img {
    width: 32px;
    height: 32px;

    object-fit: contain;
}


.brand span {
    color: #000;

    font-size: 18px;

    font-weight: bold;
}

.nav {
    display: flex;

    align-items: center;

    gap: 20px;
}


.nav a {
    text-decoration: none;

    font-size: 10pt;

    color: #9ab300;

    transition: 0.15s;
}


.nav a:hover {
    color: #000;
}

.main {
    min-height: calc(100vh - 120px);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

.jumbotron {
    width: 100%;

    max-width: 500px;

    padding: 35px 25px;

    text-align: center;

    border: 1px solid #0d6efd;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-primary-rgb),
        var(--bs-bg-opacity)
    ) !important;
}

:root {
    --bs-primary-rgb: 13, 110, 253;
}

.text-white {
    color: #fff !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.jumbotron h1 {
    font-size: 18pt;

    margin-bottom: 20px;

    color: #fff;
}


.jumbotron p {
    font-size: 10pt;
    margin-bottom: 12px;
    color: #fff;
}

.jumbotron b {
    color: #fff;
}

.description {
    font-size: 9pt !important;
}

.status {
    margin-top: 20px;
    font-size: 10pt;
    color: #9ab300;
}

.status span {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-right: 5px;

    background: #9ab300;

    border-radius: 50%;
}

.footer {
    text-align: center;

    padding: 20px;

    border-top: 1px solid #9ab300;

    font-size: 9pt;

    color: #000;
}

.about-card {
    width: 100%;
    max-width: 500px;

    padding: 35px 25px;

    border: 1px solid #9ab300;

    background: white;
}

.about-card h1 {
    margin-bottom: 25px;

    font-size: 18pt;

    color: #000;

    text-align: center;
}

.about-info {
    width: 100%;
}

.info-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom: 1px solid #ddd;

    font-size: 10pt;

    color: #000;
}

.info-row:last-child {
    border-bottom: 0;
}

.info-title {
    font-weight: bold;

    color: #000;
}

.info-row a {
    color: #9ab300;

    text-decoration: none;
}

.info-row a:hover {
    color: #000;
}

.discord-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}

.discord-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 70px;
    height: 28px;

    padding: 0 10px;

    border: 1px solid #9ab300;

    color: #9ab300;

    font-size: 9pt;

    transition: 0.15s;
}

.discord-icon:hover {
    background: #9ab300;

    color: white;
}

.extension-card {
    width: 100%;
    max-width: 500px;

    padding: 35px 25px;

    text-align: center;

    border: 1px solid #9ab300;

    background: white;
}

.extension-card h1 {
    margin-bottom: 15px;

    font-size: 18pt;

    color: #000;
}

.extension-card p {
    margin-bottom: 25px;

    font-size: 10pt;

    color: #000;
}

#download-extension {
    padding: 9px 22px;

    border: 1px solid #9ab300;

    background: white;

    color: #9ab300;

    font-family: "PT Sans", Verdana, sans-serif;

    font-size: 10pt;

    cursor: pointer;
}

#download-extension:hover {
    background: #9ab300;

    color: white;
}

#download-status {
    margin-top: 15px;

    font-size: 9pt;

    color: #9ab300;
}
