.btn:focus{
	background-color: #060649;
}

.completed_game{
	color: lime;
}

.uncompleted_game{
	color: red;
}

.total{
	color: yellow;
	text-align: center;
}

.name{
	color: lightblue;
	text-align: center;
}

.hide{
	display: none;
}

.date{
	color: whitesmoke;
}

.income{
	color:rgb(32, 228, 48);
	text-align: center;
}

.discome{
	color: crimson;
	text-align: center;
}

.message{
	color: rgb(32, 228, 48);
}

.noline:hover{
	text-decoration: none;
}

.mark{
	background-color: darkgreen;
}

.message {
	position: absolute;
	display: none;
}

.box { background-color: #3C3C3C; }
.btn {
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 250px;
    cursor: pointer;
    color: #1708e4;
    transition: all 0.5s;
    position: relative;
}
.btn span {
    z-index: 2;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.5s;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.5s;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
}

.tier-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.tier {
    background-color: #000000;
    border-radius: 5px;
    width: 99%;
    height: 150px;
    margin: 1px 0;
    display: flex;
    padding: 10px;
}
.tier-description {
    width: 100px;
    height: 150px;
    margin-right: 10px;
    border-radius: 5px;
    text-align: center;
}
.s { background-color: #4CAF50; }
.a { background-color: #2196F3; }
.b {
    background-color: #FFC107;
    width: 210px;
}
.c { background-color: #FF9800; }
.d { background-color: #F44336; }
.b-tier{ height: 450px;}
.e-tier{ height: 750px;}
.e {
    background-color: #c915cf;
    width: 210px;
}
.album{
    width: 200px;
    height: auto;
}
.tier-content {
    flex-grow: 1;
    margin-top: 10px;
}
.tier {
    margin: 0;

}
.tierlist-img{
    width: 100px;
    height: auto;
}

.quote {
    margin: 5px;
    padding: 5px;
    border-left: 8px solid #3498db;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    line-height: 0.9;
    position: relative;
    clear: both;
    display: flex;
    flex-direction: column;
}
.quote::before {
    content: '\201C';
    font-size: 3em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
    position: absolute;
    top: 25px;
    left: 1px;
    color: #3498db;
}
.quote::after {
    content: '\201D';
    font-size: 3em;
    line-height: 0.1em;
    vertical-align: -0.4em;
    position: absolute;
    bottom: 6px;
    right: 0px;
    color: #3498db;
}
.quote-text{
    font-family: "Caveat", cursive;
    font-size: 30px;
    color:#0a1520;
    margin: 11px 0;
    padding: 0 15px;
    line-height: 1.2;
}
.from {
    font-style: italic;
    color: #27292b;
    text-align: right;
    align-self: flex-end;
    clear: none;
    font-size: 25px;
    padding-right: 20px;
    padding-bottom: 20px;
    text-decoration: none;
    margin-top: 7px;
    line-height: 1.1;
}

.mode-selector {
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
    width: 300px;
    margin: 15px auto;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #00fffc;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 252, 0.3);
}
.mode-selector label {
    display: block;
    color: #00fffc;
    text-shadow: 0 0 5px #00b3ff;
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: 1px;
}
.mode-selector select {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #00fffc;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0, 255, 252, 0.2);
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300fffc'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}
.mode-selector select:hover {
    box-shadow: 0 0 12px rgba(0, 255, 252, 0.4);
}
.mode-selector select:focus {
    box-shadow: 0 0 15px rgba(0, 255, 252, 0.6);
}
.mode-selector option {
    background-color: #111;
    color: #fff;
    padding: 8px;
}
.mode-selector option:hover {
    background-color: #00fffc !important;
    color: #000 !important;
}
@keyframes neon-glow {
    0%, 100% { text-shadow: 0 0 5px #00b3ff, 0 0 10px #00b3ff; }
    50% { text-shadow: 0 0 7px #00fffc, 0 0 15px #00fffc; }
}

.mini-form {
    max-width: 320px;
    margin: 1rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.mini-form__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mini-form__title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    text-align: center;
}
.mini-form__field {
    width: 90%;
}
.mini-form__input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #333;
    background: #fafafa;
}
.mini-form__input:focus {
    outline: none;
    border-color: #999;
    background: #fff;
}
.mini-form__submit {
    width: 100%;
    padding: 0.7rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.mini-form__submit:hover {
    background: #333;
}
.mini-form__submit--danger {
    background: #e53e3e;
}
.mini-form__submit--danger:hover {
    background: #c53030;
}

.main-content {
    padding-bottom: 70px;
    padding-left: 4px;
}