/* Base Styles */
body {
    background-color: #101010;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    background-color: #000000;
    border-bottom: 3px solid #004B87;
    box-shadow: 0px 1px 10px rgba(125, 0, 255, 0.4), 0px 1px 5px rgba(0, 114, 198, 0.6);
}

.navbar a {
    color: #e0e0e0 !important;
}

.navbar a:hover {
    color: #00AEEF !important;
}

/* Footer */
.footer-disclaimer {
    font-size: 12px;
    margin-top: 15px;
    color: #aaa;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to bottom, #0072C6, #004B87);
    border: 1px solid #005A9E;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #005A9E, #003A70);
    border-color: #004B87;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: linear-gradient(to bottom, #7D00FF, #4B0082);
    border: 1px solid #5A009E;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
    background: linear-gradient(to bottom, #5A009E, #3A006E);
    border-color: #4B0082;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
}

/* Panels */
.panel {
    background-color: #181818;
    border-color: #0072C6;
}

.panel-heading {
    background-color: #0072C6 !important;
    color: #ffffff !important;
}

/* Form Elements */
.form-control {
    background-color: #202020;
    color: #e0e0e0;
    border: 1px solid #0072C6;
}

/* Links */
a {
    color: #00AEEF;
}

a:hover {
    color: #0072C6;
}

/* Typography */
h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-family: 'TradeGothic LT', sans-serif;
}

span {
    font-family: inherit;
}

p {
    font-family: inherit;
}

.split {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    text-align: left;
    outline: none;
    max-width: 30em;
}

.split h1 {
    margin-bottom: 12px;
    overflow: hidden;
    font-family: 'Slate', sans-serif;
    font-size: 32px;
    line-height: 60px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .5625em;
}

.split h1>span {
    display: inline-block;
    float: left;
    background: #000;
    color: #FFF;
    margin: 0 5px 5px 0;
    padding: 0 2px 0 15px;
}

.spansplittitle {
    margin-right: 2.8em!important;
    text-shadow: 0px 0px 10px rgba(0, 114, 198, 0.8), 0px 0px 20px rgba(125, 0, 255, 0.6);
}

/* Misc */
.no-margin {
    margin: 0;
}