[x-cloak] {
    display: none !important;
}


        .container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .header {
            background-color: #0047AB;
            color: white;
            padding: 1rem;
        }
        .header h1 {
            margin: 0;
            font-size: 1.5rem;
        }
        .content {
            flex-grow: 1;
            background-color: #f0f0f0;
            padding: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .info-box {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            padding: 2rem;
            width: 100%;
            max-width: 800px;
        }
        .info-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .user-icon {
            width: 64px;
            height: 64px;
            background-color: #0047AB;
            border-radius: 50%;
            margin-right: 1.5rem;
        }
		.user-icon img { border-radius: 90px;}
        .info-text h2 {
            margin: 0;
            font-size: 1.5rem;
            color: #0047AB;
        }
        .info-text p {
            margin: 0.5rem 0 0;
            color: #666;
        }
        .instruction {
            text-align: center;
            font-size: 1.2rem;
            color: #0047AB;
            margin: 2rem 0;
            font-weight: bold;
        }
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .category {
            background-color: #FFD700;
            color: #0047AB;
            font-weight: bold;
            padding: 1rem;
            border-radius: 0.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .category:hover {
            background-color: #FFC000;
            transform: translateY(-3px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .category:active {
            transform: translateY(0);
            box-shadow: none;
        }