﻿* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s;
    background-color: #8ED8FF;
    color: #fffdfa;
    margin: 0;
    min-height: 100%;
    font-family: 'grobold' !important;
}

@font-face {
    font-family: 'grobold';
    src: url('/_content/Web.Razor/GROBOLD.ttf');
}

.align {
    align-items: center;
    display: flex;
    flex-direction: row;
}

.discord-widget {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: none;
}

.site_logo {
    margin-bottom: 1rem;
    border-radius: 50%;
    width: 50%;
}

.grid {
    margin: 0 auto;
    max-width: 25rem;
}

h2 {
    font-size: 2.75rem;
    font-weight: 100;
    margin: 0 0 1rem;
    text-transform: uppercase;
    text-shadow: black 0px 0px .5rem;
}

.register {
    box-shadow: 0 0 250px #000;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #577B3D;
}

.navbar + .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.info-container {
    background-color: #577B3D;
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.form-container {
    background-color: #333;
    color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    align-content: center;
    padding-left: 2rem;
    padding-right: 2rem;
    transition: background-color 0.3s ease;
}

.card-text-body {
    color: #333;
}

.signup-card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-radius: 20px;
    margin-top: 2rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .signup-card:hover {
        box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
    }

.site_logo {
    width: 50%;
    height: auto;
    transition: transform 0.3s ease;
}

    .site_logo:hover {
        transform: scale(1.1);
    }

.description {
    font-size: 2rem;
    margin-top: 2rem;
}

.form input[type="submit"] {
    background-image: linear-gradient(160deg, #BB7D4C 0%, #FDB93A 100%);
    border-radius: 20px;
    transition: background-color 0.15s ease-in-out, transform 0.15s ease;
    color: #fff !important;
    padding: 0.75rem 0;
    width: 100%;
    border-radius: 20px;
    cursor: pointer;
}

    .form input[type="submit"]:hover {
        background-image: linear-gradient(160deg, #FDB93A 0%, #e0a800 100%);
        transform: translateY(-2px);
    }

.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="date"],
.form select,
.form input[type="submit"] {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 0.375rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    width: 100%;
}

.form_field label {
    display: block;
    margin-bottom: .5rem;
    color: #fffdfa;
}

.text-danger {
    color: #BA2221;
}

.content {
    flex: 1;
}

.footer {
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.game-title {
    color: #f7b731;
}

.features .card {
    background-color: #343a40;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

    .features .card:hover {
        transform: scale(1.05);
    }

.features .card-title {
    color: #f7b731;
}

.signup-cta .btn {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.custom-home-card {
    background-color: #577B3D;
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .custom-home-card:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 768px) {
    .signup-cta .btn {
        padding: 0.5rem 1rem;
    }
}

.custom-red {
    color: indianred;
}

.custom-blue {
    color: cornflowerblue;
}

.site-header {
    background: #333;
    color: #fff;
    padding: 20px 0 10px;
    border-radius: 10px;
    transition: background 0.5s ease;
    text-align: center;
    font-size: 2.5rem;
}

.site-description {
    font-style: italic;
    font-size: 1rem;
    margin-top: 0.25rem;
    color: #fff;
    margin-bottom: 0;
}

.section-header {
    background-color: #2A6A7C;
    padding: 10px 0;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.command-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

    .command-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.command-card, .parameter-card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .command-card .card-header {
        background-color: #577B3D;
        color: #fff;
    }

.options-toggle {
    color: #577B3D;
    cursor: pointer;
    text-decoration: none;
}

    .options-toggle:hover, .options-toggle:focus {
        text-decoration: underline;
    }

.optional-indicator {
    font-size: 0.8em;
    color: #6c757d;
    margin-left: 10px;
}

.option-item {
    background-color: #f0f8ff;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
}

.options-collapse {
    transition: height 0.5s ease;
}

    .options-collapse.collapsing {
        height: 0;
        overflow: hidden;
    }

    .options-collapse.show {
        height: auto;
    }

@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.bg-custom {
    background-color: #216d9b;
    transition: background-color 0.5s ease;
}

.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
}

    .navbar-dark .nav-link:hover,
    .navbar-dark .nav-link:focus {
        color: #cceeff !important;
    }

.navbar-brand img {
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

.modal-content {
    border-radius: 15px;
    background: linear-gradient(to bottom right, #62823F, #3C5E22);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    color: #fff;
    font-weight: bold;
}

.modal-body {
    color: #fff;
    font-size: 1.1em;
}

.modal-footer {
    border-top: none;
}

.btn-primary {
    background-color: #9EB75B !important;
    border-color: #3E4C00 !important;
    border-radius: 20px;
    padding: 10px 20px;
}

.btn-secondary {
    background-color: #FC9A2B !important;
    border-color: #FEDF49 !important;
    border-radius: 20px;
    padding: 10px 20px;
}

.btn-primary:hover, .btn-secondary:hover {
    opacity: 0.8;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: rgba(0, 150, 136, 0.1);
}
