* {
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
}

:root {
    --app-height: 100vh;
    --tg-safe-top: 0px;
    --tg-safe-right: 0px;
    --tg-safe-bottom: 0px;
    --tg-safe-left: 0px;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #1e223b;
    overscroll-behavior: none;
    touch-action: none;
}

body {
    color: #f8fbff;
}

#rotateNotice {
    display: none;
    pointer-events: none;
}

#loadingScreen {
    position: fixed;
    inset: 0;
    z-index: 20;
    height: var(--app-height);
    overflow: hidden;
    background: #5be08e;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

#loadingScreen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#loadingScreen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.012);
}

.loading-progress {
    position: fixed;
    left: 50%;
    bottom: max(28px, calc(env(safe-area-inset-bottom) + var(--tg-safe-bottom) + 22px));
    width: min(280px, 48vw);
    height: 8px;
    transform: translateX(-50%);
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 8px 28px rgba(14, 135, 68, 0.22), inset 0 1px 2px rgba(255, 255, 255, 0.45);
}

.loading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ffffff, #dfff83, #ffffff);
    transform-origin: left center;
    animation: loadingFill 1.45s cubic-bezier(0.2, 0.78, 0.32, 1) forwards;
}

@keyframes loadingFill {
    0% { transform: scaleX(0.08); }
    58% { transform: scaleX(0.74); }
    100% { transform: scaleX(1); }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 220, 180, 0.18) 0%, transparent 30%),
        linear-gradient(225deg, rgba(255, 75, 125, 0.16) 0%, transparent 32%),
        linear-gradient(180deg, #05070d 0%, #111827 52%, #05070d 100%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.035) 50%, transparent 52%);
    background-size: 42px 42px, 42px 42px, 84px 84px;
    z-index: -1;
}

canvas {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    background: #242842;
}

div {
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

#status {
    position: absolute;
    min-width: 245px;
    padding: 11px 12px 13px;
    background: linear-gradient(180deg, rgba(52, 55, 78, 0.72), rgba(27, 30, 51, 0.52));
    color: #f8fbff;
    font-size: 17px;
    top: 12px;
    right: max(16px, calc(env(safe-area-inset-right) + var(--tg-safe-right)));
    font-weight: 800;
    text-align: left;
    border: 0;
    border-radius: 5px;
    box-shadow: none;
    backdrop-filter: blur(3px);
    line-height: 1.42;
    z-index: 4;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.55);
}

#status .title {
    display: inline-block;
    margin: -1px 0 5px;
    padding: 2px 12px 3px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 800;
}

#status .me {
    color: #3dff49;
    font-size: 18px;
}

.chatbox {
    position: absolute;
    width: 330px;
    height: 330px;
    background: linear-gradient(180deg, rgba(18, 25, 39, 0.84), rgba(5, 8, 16, 0.74));
    bottom: 12px;
    left: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    pointer-events: none;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.chatbox .chat-list {
    padding: 12px;
    margin: 0;
    list-style: none;
    height: 282px;
    overflow: hidden;
}

.chatbox .chat-list li {
    padding: 3px 0;
    margin: 3px 0;
    color: #e6eefc;
    line-height: 1.45;
    word-break: break-word;
}

.chatbox .chat-list li.me b {
    color: #ffd166;
}

.chatbox .chat-list li.friend b {
    color: #5ee787;
}

.chatbox .chat-list li.system {
    color: #9ee8ff;
    font-style: italic;
}

.chatbox .chat-list li.system:before {
    content: "» ";
}

.chatbox .chat-input {
    pointer-events: all;
    width: 100%;
    height: 48px;
    padding: 0 14px;
    color: #f8fbff;
    background: rgba(255, 255, 255, 0.07);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    outline: none;
    border-radius: 0 0 8px 8px;
}

#startMenu {
    position: relative;
    margin: auto;
    margin-top: min(9vh, 72px);
    width: min(860px, calc(100vw - 28px));
    max-height: calc(var(--app-height) - 28px);
    overflow-y: auto;
    padding: 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 242, 252, 0.92));
    color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.86);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 30px;
}

.start-hero,
.start-panel {
    min-width: 0;
}

#startMenu p {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 900;
    color: #07111f;
    text-shadow: 0 1px 0 #ffffff;
}

.menu-subtitle {
    margin: 8px 0 20px;
    color: #526178;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

#playerNameInput {
    width: 100%;
    text-align: center;
    height: 48px;
    padding: 0 14px;
    color: #152033;
    background: linear-gradient(180deg, #ffffff, #f6f9fd);
    border: 1px solid #b8c5d8;
    transition: box-shadow 0.2s, border 0.2s;
    border-radius: 8px;
    margin-bottom: 8px;
    outline: none;
    font-size: 16px;
    font-weight: 600;
}

#playerNameInput:focus, #playerNameInput.focus {
    border: 1px solid #22a6f2;
    box-shadow: 0 0 0 4px rgba(34, 166, 242, 0.18), 0 10px 26px rgba(15, 23, 42, 0.08);
}

#startButton, #spectateButton, #settingsButton {
    position: relative;
    margin: 10px auto 0;
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(135deg, #15c47e 0%, #18a4ff 52%, #7c5cff 100%);
    border: 0;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(24, 164, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

#spectateButton:active, #spectateButton:hover,
#startButton:active, #startButton:hover {
    transform: translateY(1px);
    background: linear-gradient(135deg, #22d48d 0%, #38bdf8 52%, #8b72ff 100%);
    outline: none;
}

#spectateButton,
#settingsButton:active, #settingsButton:hover {
    background: #26354f;
}

#spectateButton,
#settingsButton {
    color: #152033;
    background: linear-gradient(180deg, #f8fbff, #e6edf7);
    box-shadow: none;
    border: 1px solid #d3dce9;
}

#settingsButton:active, #settingsButton:hover {
    transform: translateY(1px);
    color: #ffffff;
    outline: none;
}

#settings, #startMenuWrapper {
    -webkit-transition: max-height 1s;
    -moz-transition: max-height 1s;
    -ms-transition: max-height 1s;
    -o-transition: max-height 1s;
    transition: max-height 1s;
    overflow: hidden;
}

#settings {
    max-height: 0;
}

#startMenu h3 {
    padding: 0;
    margin: 18px 0 8px;
    color: #101728;
    font-size: 17px;
    font-weight: 900;
}

#startMenu ul {
    margin: 0;
    padding: 0;
}

#startMenu .input-error {
    display: block;
    min-height: 18px;
    color: #e5484d;
    opacity: 0;
    font-size: 12px;
    text-align: center;
}

#settings label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 6px 12px 6px 0;
    color: #26354d;
    font-size: 14px;
    font-weight: 600;
}

#settings input {
    width: 16px;
    height: 16px;
    accent-color: #18b66f;
}

#instructions li {
    display: inline-flex;
    margin: 7px 8px 0 0;
    padding: 7px 10px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f4f8fe, #e8eff9);
    color: #40506a;
    line-height: 1.2;
    font-weight: 700;
}

#startMenuWrapper {
    z-index: 2;
    position: fixed;
    inset: 0;
    height: var(--app-height);
    background: rgba(2, 3, 10, 0.38);
    backdrop-filter: blur(5px);
}

#startMenuWrapper.is-booting {
    opacity: 0;
    pointer-events: none;
}

#startMenuWrapper.is-hidden {
    display: none;
}

#gameAreaWrapper {
    position: fixed !important;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    height: var(--app-height);
    overflow: hidden;
    background:
        radial-gradient(circle at 46% 42%, rgba(78, 92, 128, 0.18), transparent 48%),
        linear-gradient(180deg, #171b2f 0%, #111522 52%, #090c14 100%);
}

#gameAreaWrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 88%, rgba(3, 5, 13, 0.42) 0 0, rgba(3, 5, 13, 0.42) 8%, transparent 18%),
        radial-gradient(circle at 87% 88%, rgba(3, 5, 13, 0.4) 0 0, rgba(3, 5, 13, 0.4) 9%, transparent 20%),
        linear-gradient(90deg, rgba(4, 7, 14, 0.38), transparent 7%, transparent 93%, rgba(4, 7, 14, 0.38)),
        linear-gradient(180deg, rgba(4, 7, 14, 0.28), transparent 9%, transparent 91%, rgba(4, 7, 14, 0.42));
    z-index: 2;
}

#scoreHud,
#topHud {
    position: fixed;
    display: none;
    z-index: 4;
    pointer-events: none;
}

#scoreHud {
    left: max(16px, calc(env(safe-area-inset-left) + var(--tg-safe-left)));
    top: max(8px, calc(env(safe-area-inset-top) + var(--tg-safe-top) + 2px));
    min-width: 110px;
    height: 28px;
    padding: 2px 12px;
    color: #ffffff;
    background: rgba(6, 10, 20, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    line-height: 22px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
}

#topHud {
    top: max(7px, calc(env(safe-area-inset-top) + var(--tg-safe-top) + 1px));
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.56);
}

#timerHud,
#fpsHud,
#pingHud {
    font-size: 14px;
}

#pingHud {
    color: #ff2727;
}

#gameAreaWrapper[style*="opacity: 1"] #scoreHud,
#gameAreaWrapper[style*="opacity: 1"] #topHud {
    display: flex;
}

.hud-round {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(24, 28, 45, 0.58);
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.25);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hud-round.small {
    width: 44px;
    height: 44px;
    font-size: 15px;
}

.hud-round.muted {
    color: #ff5d5d;
}

.hud-round:active {
    transform: scale(0.95);
}

.hud-round.icon-sound,
.hud-round.icon-mute {
    font-size: 0;
}

.hud-round.icon-sound span,
.hud-round.icon-mute span {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    margin: 0 auto;
}

.hud-round.icon-sound span::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 5px;
    width: 7px;
    height: 8px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 5px -3px 0 -3px currentColor, 5px 3px 0 -3px currentColor;
}

.hud-round.icon-sound span::after {
    content: "";
    position: absolute;
    right: 1px;
    top: 3px;
    width: 9px;
    height: 12px;
    border: 2px solid currentColor;
    border-left: 0;
    border-radius: 0 12px 12px 0;
    opacity: 0.9;
}

.hud-round.icon-mute span::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 8px;
}

.hud-round.icon-mute span::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 12px;
    width: 2px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: -4px 5px 0 0 currentColor, 4px 5px 0 0 currentColor;
}

@media only screen  and (min-width : 1224px) {
#mobile {
display: none;
	}
}

body.is-mobile-play #mobile {
    position: fixed;
    inset: 0;
    height: var(--app-height);
    z-index: 5;
    display: none;
    pointer-events: none;
}

body.is-mobile-play #gameAreaWrapper[style*="opacity: 1"] #mobile {
    display: block;
}

body.is-mobile-play #chatbox {
    display: none;
}

body.is-mobile-play .hud-round {
    width: 38px;
    height: 38px;
}

body.is-mobile-play .hud-round.small {
    width: 36px;
    height: 36px;
    font-size: 13px;
}

body.is-mobile-play #joystick {
    position: absolute;
    left: max(58px, calc(env(safe-area-inset-left) + var(--tg-safe-left) + 56px));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + var(--tg-safe-bottom) + 8px));
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0 34%, rgba(8, 10, 22, 0.28) 35% 100%);
    box-shadow: 0 0 0 34px rgba(2, 5, 14, 0.24), inset 0 0 14px rgba(255, 255, 255, 0.025);
    pointer-events: auto;
    touch-action: none;
}

body.is-mobile-play #joystickKnob {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    margin-left: -21px;
    margin-top: -21px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff, #dfe7f8);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28), inset 0 2px 7px rgba(255, 255, 255, 0.68);
    transition: transform 0.04s linear;
}

body.is-mobile-play #mobileActions {
    position: absolute;
    right: max(58px, calc(env(safe-area-inset-right) + var(--tg-safe-right) + 54px));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + var(--tg-safe-bottom) + 8px));
    display: flex;
    align-items: flex-end;
    gap: 12px;
    pointer-events: auto;
}

body.is-mobile-play .mobile-action {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #f8fbff;
    background: linear-gradient(180deg, rgba(34, 41, 63, 0.56), rgba(12, 15, 29, 0.44));
    box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.08), 0 3px 10px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

body.is-mobile-play .mobile-action.primary {
    width: 68px;
    height: 68px;
}

body.is-mobile-play .mobile-action .action-mark {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    color: #f4f5ff;
    font-size: 32px;
    line-height: 26px;
    font-weight: 900;
    text-align: center;
}

body.is-mobile-play .feed-action .action-mark {
    height: 7px;
    width: 35px;
    border-radius: 999px;
    background: #eef0f8;
}

body.is-mobile-play .mobile-action small {
    margin-top: 3px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

@media only screen  and (max-width : 1224px) {
#chatbox {
display: none;
        }

    body::before {
        display: none;
    }

    #startMenu {
        width: min(900px, calc(100vw - 24px));
        max-height: calc(var(--app-height) - 18px);
        margin-top: 0;
        padding: 18px;
        grid-template-columns: minmax(250px, 1fr) minmax(260px, 340px);
        gap: 18px;
        overflow: hidden;
    }

    #startMenuWrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: max(9px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(9px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    }

    #startMenu p {
        font-size: 34px;
    }

    .menu-subtitle {
        margin-bottom: 12px;
    }

    #startButton, #spectateButton, #settingsButton {
        height: 44px;
        margin-top: 8px;
    }

    #playerNameInput {
        height: 44px;
        margin-bottom: 4px;
    }

    #startMenu h3 {
        margin: 10px 0 7px;
        font-size: 15px;
    }

    #instructions li {
        margin: 6px 7px 0 0;
        padding: 7px 9px;
    }

    #mobile {
        position: fixed;
        inset: 0;
        height: var(--app-height);
        z-index: 5;
        display: none;
        pointer-events: none;
    }

    #gameAreaWrapper[style*="opacity: 1"] #mobile {
        display: block;
    }

    #joystick {
        position: absolute;
        left: max(58px, calc(env(safe-area-inset-left) + var(--tg-safe-left) + 56px));
        bottom: max(14px, calc(env(safe-area-inset-bottom) + var(--tg-safe-bottom) + 8px));
        width: 76px;
        height: 76px;
        border-radius: 50%;
        border: 0;
        background:
            radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0 34%, rgba(8, 10, 22, 0.28) 35% 100%);
        box-shadow: 0 0 0 34px rgba(2, 5, 14, 0.24), inset 0 0 14px rgba(255, 255, 255, 0.025);
        pointer-events: auto;
        touch-action: none;
    }

    #joystick::before,
    #joystick::after {
        content: "";
        position: absolute;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 999px;
    }

    #joystick::before {
        left: 10px;
        right: 10px;
        top: 37px;
        height: 2px;
    }

    #joystick::after {
        top: 10px;
        bottom: 10px;
        left: 37px;
        width: 2px;
    }

    #joystickKnob {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 42px;
        height: 42px;
        margin-left: -21px;
        margin-top: -21px;
        border-radius: 50%;
        background: linear-gradient(180deg, #ffffff, #dfe7f8);
        border: 1px solid rgba(255, 255, 255, 0.76);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28), inset 0 2px 7px rgba(255, 255, 255, 0.68);
        transition: transform 0.04s linear;
    }

    #mobileActions {
        position: absolute;
        right: max(58px, calc(env(safe-area-inset-right) + var(--tg-safe-right) + 54px));
        bottom: max(14px, calc(env(safe-area-inset-bottom) + var(--tg-safe-bottom) + 8px));
        display: flex;
        align-items: flex-end;
        gap: 12px;
        pointer-events: auto;
    }

    .mobile-action {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: #f8fbff;
        background: linear-gradient(180deg, rgba(34, 41, 63, 0.56), rgba(12, 15, 29, 0.44));
        box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.08), 0 3px 10px rgba(0, 0, 0, 0.22);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-action.primary {
        width: 68px;
        height: 68px;
        background: linear-gradient(180deg, rgba(34, 41, 63, 0.56), rgba(12, 15, 29, 0.44));
        box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.08), 0 3px 10px rgba(0, 0, 0, 0.22);
    }

    .mobile-action:active {
        transform: scale(0.94);
    }

    .mobile-action .action-mark {
        position: relative;
        display: block;
        width: 26px;
        height: 26px;
        color: #f4f5ff;
        font-size: 32px;
        line-height: 26px;
        font-weight: 900;
        text-align: center;
    }

    .feed-action .action-mark {
        height: 7px;
        width: 35px;
        border-radius: 999px;
        background: #eef0f8;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
    }

    .mobile-action small {
        margin-top: 3px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.72);
        font-weight: 800;
    }

    #status {
        top: max(9px, calc(env(safe-area-inset-top) + var(--tg-safe-top) + 2px));
        right: max(12px, calc(env(safe-area-inset-right) + var(--tg-safe-right)));
        min-width: 178px;
        padding: 7px 9px 8px;
        font-size: 13px;
        line-height: 1.28;
    }

    #status .title {
        font-size: 14px;
        margin-bottom: 3px;
    }
}

@media only screen and (max-width: 1224px) and (orientation: portrait) {
    #startMenu {
        width: min(420px, calc(100vw - 26px));
        height: auto;
        max-height: none;
        transform: none;
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    #startMenu p,
    .menu-subtitle {
        text-align: center;
    }

    #instructions {
        text-align: center;
    }
}

@media only screen and (max-width: 720px) and (orientation: landscape) {
    #startMenu {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    #startMenu p {
        font-size: 28px;
        text-align: center;
    }

    .menu-subtitle {
        text-align: center;
    }
}

@media only screen and (max-width: 520px) {
    #status {
        min-width: 156px;
        padding: 10px 12px;
        right: 8px;
        top: 8px;
    }
}

input [type="image"]:focus{
 border:none;
 outline: 1px solid transparent;
 border-style: none;
}

*:focus {
 outline: 1px solid transparent;
 border-style: none;
}
