        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            border: 0px solid yellow;
            background-color: #220066;
        }
        @font-face {
            font-family: "Doto";
            src: url("assets/svg/Doto-Black.woff2");
        }
        header {
            max-width: 360px;
            margin: auto;
            padding: 30px;
            display: flex;
            justify-content: space-between;
            z-index: 10;
        }
        .tom {
            max-height: 50px;
        }
        .eu {
            max-height: 50px;
            border: 2px solid #4C00FF;
            border-radius: 50%;           
        }
        body {
        }
        canvas {
            font-family: "Doto", sans-serif;
            border: 4px solid #4C00FF;
            border-radius: 20px;
            background-color: lavender;
            display: block;
            margin: auto;
            max-width: 300px;
            min-height: 200px;
            max-height: 50vh;
        }
        canvas:hover {
        }
        .snake-info {
            max-width: 300px;
            margin: auto;
            margin-bottom: 20px;
            padding: 20px 15px 20px 15px;
            color: lavender;
            font-family: "Doto", sans-serif;
            font-size: 16px;
        }
    @media (max-width: 768px) {
        .snake-info {
            padding: 0px 10px 0px 10px;
            font-size: 15px;
        }
        header {
            margin-top: 0px;
            padding: 15px 30px 20px 30px;
        }
    }
        .controls-container {
            display: none;
        }
    @media (max-width: 1200px) {
        .controls-container {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            user-select: none;
        }
        .button-row {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .arrow-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(145deg, #2a2a4e, #1f1f3a);
            border: 2px solid #4C00FF;
            border-radius: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: lavender;
            transition: all 0.1s ease;
            touch-action: manipulation;
        }
        .arrow-btn:active {
            background: linear-gradient(145deg, #1f1f3a, #2a2a4e);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
            transform: translateY(2px);
        }
        .spacer {
            width: 80px;
            height: 60px;
        }
    }